* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    scroll-behavior: auto;

    /* Hide scrollbars but keep scrolling */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

html {
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* Sections */
section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    height: 100vh;
}

.hero,
.garment-designs {
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* ─── Fade-in hero animation ─── */
@keyframes heroFade {

    /* darker & semi-transparent at start */
    0% {
        opacity: .35;
        filter: brightness(.85);
    }

    100% {
        opacity: 1;
        filter: brightness(1);
    }
}

.hero.fade {
    /* utility class applied via JS */
    animation: heroFade .6s ease-out;
}


/* Top-left logo - no shadow */
.top-left .logo-main {
    font-size: 28px;
    text-shadow: none;
    font-weight: bold;
}

.top-left .logo-sub {
    font-size: 8px;
    margin-top: -2px;
    letter-spacing: 4px;
    text-shadow: none;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    scroll-snap-align: start;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('pic/201.png');
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

/* Logo Container */
.logo-container {
    text-align: center;
    color: rgb(0, 0, 0);
}

/* Animated Logo */
.animated-logo .logo-main {
    font-size: 90px;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: none;
    opacity: 0;
    animation: slideInRight 1.8s ease-out forwards;
    animation-delay: 0.4s;
}

.animated-logo .logo-sub {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 6px;
    margin-top: -20px;
    text-shadow: none;
    opacity: 0;
    animation: slideInLeft 1.8s ease-out forwards;
    animation-delay: 0.8s;
    display: block;
}

/* Fixed Top Left and Top Right */
.top-left,
.top-right {
    top: 20px;
    font-size: 20px;
}

.top-left {
    position: fixed;
    left: 15%;
    font-weight: bold;
    z-index: 999;
}

.top-right {
    position: fixed;
    right: 15%;
    z-index: 999;
}

/* Fixed nav on top right */
.fixed-nav {
    position: fixed;
    top: 20px;
    right: 15%;
    z-index: 999;
}

/* Login Button */
.login-button {
    padding: 10px 24px;
    border: 2px solid #ffa600;
    border-radius: 30px;
    background: transparent;
    color: #000000;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-button:hover {
    background-color: #ffa600;
    color: white;
}

/* ───── Modal overlay & dialog ───── */
.login-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 12000;
}

.login-dialog {
    background: #fff;
    width: min(92%, 1000px);
    max-height: 92vh;
    overflow-y: auto;
    padding: 2.5rem 2rem 3rem;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.75rem;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
}

.login-grid {
    display: flex;
    gap: 2.5rem;
}

.login-col {
    flex: 1;
    min-width: 280px;
}

.login-col.border-left {
    border-left: 1px solid #ccc;
    padding-left: 2.5rem;
}

.login-col h2 {
    font-size: 1.75rem;
    letter-spacing: .03em;
    margin-bottom: .75rem;
}

.subtxt {
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

.field-group {
    margin-bottom: 20px;
}

.field-group label {
    display: block;
    font-size: .75rem;
    font-weight: 700;
    margin: .9rem 0 .35rem;
}

/* Lagyan ng pareho para kahit mag-toggle di na magbabago */
/* Pantay lahat ng inputs sa login form */
.login-input {
    width: 100%;
    height: 48px;
    padding: 0 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    background: #fafafa;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
    border-radius: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Kapag naka-focus */
.login-input:focus {
    border-color: #0078d4;
    box-shadow: 0 0 5px rgba(0, 120, 212, 0.5);
}




.row {
    display: flex;
    align-items: center;   /* Pantayin vertical */
    gap: 6px;              /* Gawing medyo dikit pero may konting space */
    margin: .9rem 0 1.1rem;
    font-size: 0.9rem;
}

/* Optional: para same font weight ng label */
.row label {
    margin: 0;
    cursor: pointer;
}
.btn-solid {
    background: #111;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: .9rem 2rem;
    font-weight: 700;
    letter-spacing: .03em;
}

.btn-solid.alt {
    margin-top: 1.2rem;
}

.w-100 {
    width: 100%;
}

.link-sm {
    display: inline-block;
    font-size: .7rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin: .4rem 0;
    color: #111;
}
/* RESPONSIVE */
@media(max-width:680px) {
    .login-grid {
        flex-direction: column
    }

    .login-col.border-left {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #ddd;
        margin-top: 2rem;
        padding-top: 2rem
    }
}


/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ───────── YOU MAY ALSO LIKE STRIP ───────── */
.ymyl {
    background: #6d6d6d;
    color: #e8e8e5;
    padding: clamp(2rem, 8vw, 4rem) clamp(1.25rem, 6vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 6vw, 3rem);
    padding-bottom: clamp(3rem, 8vh, 5rem);
}

.ymyl-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ymyl-top h2 {
    font-size: clamp(1.25rem, 4.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.1;
}

.ymyl-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    color: #fff;
}

.ymyl-cta svg {
    width: 48px;
    height: 48px;
    background: #e8e8e5;
    border-radius: 50%;
    padding: 12px;
    stroke: #1e1e1c;
    stroke-width: 2;
    transition: .3s;
}

.ymyl-cta:hover svg {
    transform: scale(1.1)
}

.ymyl-cta small {
    font-size: .55rem;
    letter-spacing: .05em;
    text-align: center;
    line-height: 1.1;
    font-size: .45rem;
}

/* grid of looks */
.ymyl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(.75rem, 2vw, 1.25rem);
    max-height: 85vh;
    /* adjust kung gusto mo mas mataas/mababa */
    overflow: hidden;
}

.ymyl-top {
    /* lagyan ng konting pagitan mula sa tuktok ng section */
    margin-top: clamp(1.25rem, 5vh, 2.5rem);
}

.ymyl-cta {
    /* panatilihing nakaline-up ang bilog at label */
    margin-top: clamp(.5rem, 3vh, 1.25rem);
}

.ymyl-grid figure {
    position: relative;
    margin: 0;
    border: 1px solid #444;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0; /* optional, to fill the background */
}

.ymyl-grid img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.ymyl-grid figcaption {
    position: absolute;
    top: .75rem;
    right: .75rem;
    font-size: .7rem;
    letter-spacing: .05em;
    color: #e8e8e5;
    background: rgba(30, 30, 28, .65);
    padding: .25rem .5rem;
}

@media(max-width:480px) {
    .ymyl-top h2 {
        font-size: 1.15rem
    }

    .ymyl-cta svg {
        width: 40px;
        height: 40px;
        padding: 10px
    }
}


/* Heart Icon */
.heart {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    color: #888;
    cursor: pointer;
}

/* Top Icons */
.icon-button {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}

.icon-button svg {
    width: 26px;
    height: 26px;
    stroke: black;
    transition: transform 0.2s ease, stroke 0.2s ease;
}

.icon-button:hover svg {
    transform: scale(1.1);
    stroke: #ffa600;
}

.scroll-indicator {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1000;
}

.scroll-indicator .dot {
    width: 2px;
    /* MAS NIPIS */
    height: 10px;
    background-color: rgba(150, 150, 150, 0.5);
    border-radius: 1px;
    /* Halos rectangle look */
    transition: all 0.3s ease;
}

.scroll-indicator .dot.active {
    height: 24px;
    background-color: #111;
    width: 2px;
    border-radius: 1px;
}

.scroll-indicator {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.scroll-indicator .dot {
    width: 6px;
    height: 6px;
    background-color: #aaa;
    border-radius: 50%;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.scroll-indicator .dot.active {
    width: 8px;
    height: 24px;
    background-color: #111;
    opacity: 1;
    border-radius: 10px;
}

/* ==== Bottom Fixed Navigation ==== */
.bottom-nav {
    position: fixed;
    bottom: 24px;
    /* distance from bottom edge   */
    left: 50%;
    transform: translateX(-50%);
    /* keep perfectly centred      */
    display: flex;
    gap: 150px;
    /* space between the 3 buttons */
    z-index: 1001;
}

/* generic button */
.bn-btn {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .12);
    transition: transform .25s ease, box-shadow .25s ease;
}

/* SVG icon inside */
.bn-btn .feather {
    width: 28px;
    height: 28px;
    stroke: #000;
    stroke-width: 2;
    fill: none;
}

/* lift & glow on hover */
.bn-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 16px rgba(0, 0, 0, .18);
}

/* centre (second) button pops up a bit by default */
.bottom-nav .bn-btn:nth-child(2) {
    transform: translateY(-14px);
}

.bottom-nav .bn-btn:nth-child(2):hover {
    transform: translateY(-18px) scale(1.05);
}

/* small variant (used for Home & Account) */
.bn-btn.sm {
    width: 48px;
    height: 48px;
}

.bn-btn.sm .feather {
    width: 22px;
    height: 22px;
}


/* ↓ smaller screens – shrink everything proportionally */
@media (max-width:768px) {
    .bn-btn {
        width: 48px;
        height: 48px;
    }

    .bn-btn .feather {
        width: 24px;
        height: 24px;
    }
}

/* ───────── SUMMER COLLECTION SPLIT ───────── */
.summer-collection {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 100vh;
    /* full-screen panel */
    overflow: hidden;
}

.sc-col {
    position: relative
}

.sc-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(105%) brightness(98%);
}

/* vertical menu on each side */
.sc-menu {
    position: absolute;
    top: 6%;
    left: 6%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .65rem;
    font-size: clamp(.65rem, 2vw, .9rem);
    letter-spacing: .05em;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
}

.sc-col.right .sc-menu {
    left: auto;
    right: 6%
}

.sc-title {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
}

.sc-title h2 {
    font-size: clamp(1.4rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #000000;
    letter-spacing: .08em;
}

.sc-title .year {
    margin-top: .4rem;
    font-size: clamp(.75rem, 2vw, 1rem);
    color: #000000;
    font-weight: 600;
    opacity: .9;
}

.sc-title {
    grid-column: 1 / -1;
    /* i-span ang buong grid width  */
    z-index: 20;
    /* mas mataas kaysa sa mga larawan */
    transform: translateY(-5vh);
}

/* optional: bawasan nang kaunti ang letter-spacing para di umabot sa guhit */
.sc-title h2 {
    letter-spacing: .04em;
}

/* ─ mobile stack ─ */
@media(max-width:768px) {
    .summer-collection {
        grid-template-columns: 1fr;
        min-height: 120vh;
        /* extra height for stacked visuals */
    }

    .sc-col.right .sc-menu {
        right: 6%
    }

    /* keep right list visible */
    .sc-title {
        padding: 3rem 1rem
    }
}

/* reduce title offset for very narrow phones */
@media(max-width:480px) {
    .sc-title h2 {
        font-size: clamp(1.2rem, 5vw, 1.6rem)
    }
}

/* ───────── PRODUCT COLLAGE ───────── */
.product-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 50vh);
    /* full height collage */
    min-height: 100vh;
}

.pc-item {
    position: relative;
    overflow: hidden;
}

.pc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* gawing 2-row span ang left image */
.pc-item.tall {
    grid-row: 1 / span 2;
}

/* overlay details sa tall image */
.pc-info {
    position: absolute;
    left: clamp(1rem, 4vw, 2rem);
    bottom: clamp(1.5rem, 6vh, 3rem);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

.badge {
    display: inline-block;
    background: #0d8c9f;
    padding: .2rem .5rem;
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .05em;
    border-radius: 2px;
}

.pc-info h3 {
    font-size: clamp(1.1rem, 2.6vw, 1.6rem);
    font-weight: 700;
    margin: .4rem 0 .2rem;
}

.pc-info .sub {
    font-size: .8rem;
    opacity: .9;
    margin-bottom: .6rem;
}

.pc-item.tall img {
    object-fit: cover;
    /* punô pa rin ang column            */
    object-position: center 2%;
}

.pc-info .price {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
}

/* ② Collar-only focus sa flat-lay (picture 3) ──────── */
.focus-collar img {
    object-position: top center;
    /* itulak pataas para collar ang nasa frame */
}

/* ─── responsiveness ─── */
@media(max-width:768px) {
    .product-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .pc-item.tall {
        grid-row: auto;
    }

    .product-collage .pc-item:not(.tall) {
        height: 60vh;
        /* give reasonable height */
    }
}

/* ── Cart overlay & sidebar ── */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1500;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 500px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 12px rgba(0, 0, 0, .1);
    transform: translateX(100%);
    /* offscreen */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    /* upgraded! */
    z-index: 1600;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
}

.cart-sidebar.open {
    transform: translateX(0);
    /* onscreen */
}

.close-cart {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-title {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin: 1rem 0;
}

.cart-footer {
    border-top: 1px solid #e1e1e1;
    padding-top: 1rem;
    text-align: center;
}

.review-cart-btn {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    background: #111;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 8px;
    width: 100%;
    transition: background 0.3s ease, transform 0.3s ease;
}

.review-cart-btn:hover {
    background: #ffa600;
    transform: translateY(-2px);
}

.cart-header-text {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cart-header-text .logo-main {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1px;
    /* Saktong lapit, hindi sobrang lawak */
    color: #111;
}

.cart-header-text .logo-sub {
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    /* Konti lang din letter-spacing */
    margin-top: 0px;
    color: #000000;
}

#pageContent.blur {
    filter: blur(8px);
    transition: filter 0.3s ease;
}

/* replace the dark overlay with a white one */
.cart-overlay {
    background: rgba(255, 255, 255, 0.6) !important;
}

/* remove any leftover shadows on the sidebar edge */
.cart-sidebar {
    box-shadow: none !important;
    border-left: none !important;
}

.search-slide {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1.23rem 1.55rem 7rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 999;
    /* behind bottom-nav (z-index: 1001) */
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.search-slide.active {
    transform: translateY(0);
}

.search-panel-inner {
    width: 100%;
    display: flex;
    justify-content: center;
}

.search-input {
    width: 80%;
    max-width: 1000px;
    padding: 0.80rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1px solid #ccc;
    outline: none;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    display: block;
    margin: 0 auto;
}

/* Search Button Active Style */
#searchToggleBtn.active {
    background: #111 !important;
}

#searchToggleBtn.active svg {
    display: none;
}

#searchToggleBtn.active::before {
    content: "×";
    color: white;
    font-size: 24px;
    font-weight: bold;
}
/* make the list scrollable if tall */
#cartSidebar .cart-items {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    padding: 0 16px;
  }
  
  /* each item as flex row */
  .cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }
  
  /* 1) image column */
  .cart-item .cart-thumb {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  /* 2) details column */
  .cart-item .item-info {
    flex: 1;
    font-size: 14px;
    line-height: 1.3;
  }
  .cart-item .item-title {
    font-weight: 500;
    margin-bottom: 4px;
  }
  .cart-item .item-variant {
    color: #555;
    font-size: 12px;
    margin-bottom: 6px;
  }
  .cart-item .remove-link {
    font-size: 12px;
    color: #888;
    text-decoration: none;
    margin-bottom: 4px;
    display: inline-block;
  }
  
  /* 3) controls + price column */
  .cart-item .controls {
    flex: 0 0 100px;
    text-align: right;
  }
  .qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
  }
  .qty-selector button {
    background: #fff;
    border: none;
    width: 24px;
    height: 24px;
    line-height: 24px;
    cursor: pointer;
    font-size: 16px;
  }
  .qty-selector input {
    width: 28px;
    text-align: center;
    border: none;
    font-size: 14px;
  }
  .price-wrapper .old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 12px;
  }
  .price-wrapper .new-price {
    display: block;
    color: #ee4d2d;
    font-weight: 600;
    margin-top: 4px;
    font-size: 14px;
  }
  
  /* summary block underneath */
  .cart-summary {
    padding: 16px;
    border-top: 1px solid #ddd;
  }
  .cart-summary .line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
  }
  .cart-summary .line.total span:first-child {
    font-weight: 600;
    text-transform: uppercase;
  }
  .cart-summary .line.save span:first-child {
    color: #555;
  }
  .cart-summary .line.save span:last-child {
    color: #ee4d2d;
  }
  
  /* Review Cart button stays as is, Shopee-orange if you like */
  .review-cart-btn {
    background: #ee4d2d !important;
    color: #fff !important;
    margin: 0 16px 16px;
    border-radius: 6px;
  }
