/* ==========================================
   SHARED SECTION INTRO
========================================== */

.section-intro {
    text-align: center;

    padding: 0 20px 55px;
}

.section-intro p {
    margin: 0 0 12px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #555555;
}

.section-intro h2 {
    margin: 0;

    font-size: 38px;

    font-weight: 500;

    line-height: 1.15;

    color: #111111;
}

.section-intro span {
    display: block;

    margin-top: 14px;

    font-size: 15px;

    color: #777777;
}

.section-link {
    display: inline-block;

    margin-top: 18px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #111111;

    border-bottom: 1px solid #111111;

    padding-bottom: 3px;

    transition: opacity 0.2s ease;
}

.section-link:hover {
    opacity: 0.6;
}


/* ==========================================
   BUTTONS (shared hero / cta)
========================================== */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 16px 30px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1.5px;

    border: 1px solid #111111;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease;

    white-space: nowrap;
}

.btn-dark {
    background: #111111;

    color: #ffffff;
}

.btn-dark:hover {
    opacity: 0.82;
}

.btn-outline {
    background: transparent;

    color: #111111;
}

.btn-outline:hover {
    background: #111111;

    color: #ffffff;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero {
    width: 100%;
    min-height: 620px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: stretch;

    overflow: hidden;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* ==========================================
   HERO CONTENT
   ========================================== */

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 8%;

    box-sizing: border-box;

    min-width: 0;
}


.hero-eyebrow {
    margin: 0 0 20px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;
}


.hero-title {
    margin: 0;

    max-width: 700px;

    font-size: clamp(42px, 5vw, 76px);
    line-height: 0.98;

    font-weight: 800;
    letter-spacing: -3px;

    overflow-wrap: break-word;
}


.hero-title span {
    display: block;
}


.hero-text {
    max-width: 560px;

    margin: 28px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: #555;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 34px;
}


.hero-actions .btn {
    min-width: 150px;

    text-align: center;

    box-sizing: border-box;
}


/* ==========================================
   HERO VISUAL
   ========================================== */

.hero-visual {
    position: relative;

    min-height: 620px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #111111,
            #2b2b2b
        );

    box-sizing: border-box;
}


.hero-visual-word {
    position: relative;

    width: 100%;

    padding: 30px;

    box-sizing: border-box;

    text-align: center;

    font-size: clamp(42px, 6vw, 90px);
    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -4px;

    color: #ffffff;

    overflow-wrap: anywhere;
}


.hero-visual-word span {
    display: block;

    margin-top: 20px;

    font-size: clamp(11px, 1vw, 14px);

    font-weight: 500;

    letter-spacing: 4px;
}


/* ==========================================
   LAPTOP / TABLET
   ========================================== */

@media (max-width: 900px) {

    .hero {
        min-height: 560px;

        grid-template-columns: 1fr 0.9fr;
    }


    .hero-content {
        padding: 60px 6%;
    }


    .hero-title {
        font-size: clamp(38px, 6vw, 60px);

        letter-spacing: -2.5px;
    }


    .hero-text {
        font-size: 16px;

        line-height: 1.6;
    }


    .hero-visual {
        min-height: 560px;
    }


    .hero-visual-word {
        font-size: clamp(36px, 6vw, 65px);

        letter-spacing: -3px;
    }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 700px) {

    .hero {

        display: flex;

        flex-direction: column;

        min-height: auto;

        width: 100%;
    }


    .hero-content {

        width: 100%;

        padding: 55px 22px 45px;

        box-sizing: border-box;

        order: 1;
    }


    .hero-eyebrow {

        margin-bottom: 16px;

        font-size: 11px;

        letter-spacing: 2.5px;
    }


    .hero-title {

        max-width: 100%;

        font-size: clamp(
            38px,
            11vw,
            54px
        );

        line-height: 1;

        letter-spacing: -2px;
    }


    .hero-text {

        max-width: 100%;

        margin-top: 22px;

        font-size: 15px;

        line-height: 1.65;
    }


    .hero-actions {

        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 12px;

        margin-top: 28px;
    }


    .hero-actions .btn {

        width: 100%;

        min-width: 0;

        padding: 15px 20px;

        box-sizing: border-box;
    }


    .hero-visual {

        width: 100%;

        min-height: 300px;

        height: 300px;

        order: 2;
    }


    .hero-visual-word {

        width: 100%;

        padding: 20px;

        font-size: clamp(
            38px,
            12vw,
            60px
        );

        letter-spacing: -3px;
    }


    .hero-visual-word span {

        margin-top: 14px;

        font-size: 10px;

        letter-spacing: 3px;
    }

}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 400px) {

    .hero-content {

        padding: 45px 18px 38px;
    }


    .hero-title {

        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .hero-text {

        font-size: 14px;

        line-height: 1.6;
    }


    .hero-visual {

        min-height: 250px;

        height: 250px;
    }


    .hero-visual-word {

        font-size: 38px;

        letter-spacing: -2px;
    }

}

/* ==========================================
   COLLECTIONS
========================================== */

.collections {
    padding: 90px 5% 100px;
}

.collections-intro {
    padding-bottom: 55px;
}

.collections-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.collection-card {
    position: relative;

    display: flex;

    align-items: flex-end;

    min-height: 300px;

    padding: 26px;

    overflow: hidden;

    background: #f4f4f4;

    color: #ffffff;

    transition: transform 0.25s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
}

.collection-card::before {
    content: "";

    position: absolute;

    inset: 0;

    background: var(--tile-bg, #1a1a1a);

    opacity: 0.92;

    transition: opacity 0.25s ease;
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-card-body {
    position: relative;

    z-index: 1;
}

.collection-card-body h3 {
    margin: 0 0 6px;

    font-size: 21px;

    font-weight: 500;

    text-transform: capitalize;
}

.collection-card-body span {
    font-size: 12px;

    letter-spacing: 1px;

    color: rgba(255, 255, 255, 0.75);
}

.collections-empty {
    padding: 50px 20px;

    text-align: center;

    color: #777777;

    font-size: 15px;

    border: 1px dashed #dddddd;
}


/* ==========================================
   NEW ARRIVALS / FEATURED (section wrapper)
   Product grid + cards reuse css/shop.css
========================================== */

.home-products-section {
    padding: 0 5% 100px;
}

.home-products-section .products-grid {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

.home-products-section + .home-products-section {
    padding-top: 0;
}


/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us {
    padding: 90px 5% 100px;

    background: #fafafa;

    border-top: 1px solid #eeeeee;

    border-bottom: 1px solid #eeeeee;
}

.why-us-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 32px;
}

.why-us-card {
    text-align: center;

    padding: 10px;
}

.why-us-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    font-size: 22px;
}

.why-us-card h3 {
    margin: 0 0 10px;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.5px;

    color: #111111;
}

.why-us-card p {
    margin: 0;

    font-size: 13.5px;

    line-height: 1.6;

    color: #777777;
}


/* ==========================================
   CTA
========================================== */

.cta {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 110px 20px;

    background: #111111;

    color: #ffffff;
}

.cta p {
    margin: 0 0 14px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.6);
}

.cta h2 {
    margin: 0 0 34px;

    font-size: clamp(30px, 4.5vw, 46px);

    font-weight: 500;

    max-width: 640px;

    line-height: 1.2;
}

.cta .btn-outline {
    border-color: #ffffff;

    color: #ffffff;
}

.cta .btn-outline:hover {
    background: #ffffff;

    color: #111111;
}


/* ==========================================
   FOOTER LINKS (homepage footer nav)
========================================== */

.shop-navbar-footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 30px;
}

.shop-navbar-footer-links a {
    font-size: 13px;

    font-weight: 500;

    color: #444444;

    transition: opacity 0.2s ease;
}

.shop-navbar-footer-links a:hover {
    opacity: 0.6;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

    .hero {
        grid-template-columns: 1fr;

        min-height: unset;
    }

    .hero-visual {
        min-height: 320px;

        order: -1;
    }

    .hero-content {
        padding: 55px 6%;
    }

    .collections-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .home-products-section .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .why-us-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 36px 24px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 650px) {

    .hero-content {
        padding: 45px 6%;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-actions .btn {
        flex: 1;

        padding: 15px 18px;
    }

    .collections {
        padding: 65px 5% 70px;
    }

    .collections-grid {
        grid-template-columns: 1fr 1fr;

        gap: 14px;
    }

    .collection-card {
        min-height: 190px;

        padding: 18px;
    }

    .home-products-section {
        padding: 0 5% 70px;
    }

    .home-products-section .products-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .why-us {
        padding: 65px 5% 70px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;

        gap: 34px;
    }

    .cta {
        padding: 75px 20px;
    }

    .section-intro h2 {
        font-size: 30px;
    }

}


/* ==========================================
   PREMIUM EDITORIAL HOME OVERRIDES
   Visual-only styling. Existing JS/API hooks
   and page functionality are intentionally kept.
========================================== */

.hero {
    min-height: min(760px, calc(100vh - 84px));
    grid-template-columns: 43% 57%;
    background: #f7f6f3;
}

.hero-content {
    padding: clamp(55px, 7vw, 105px) clamp(28px, 7vw, 100px);
    background: #f7f6f3;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 3.2px;
    color: #666;
}

.hero-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: .94;
    font-weight: 400;
    letter-spacing: -4px;
}

.hero-title span:last-child {
    font-style: italic;
    font-weight: 400;
}

.hero-text {
    max-width: 470px;
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.hero-actions {
    margin-top: 35px;
    gap: 10px;
}

.btn {
    min-height: 48px;
    padding: 14px 25px;
    font-size: 10px;
    letter-spacing: 2px;
    border-radius: 0;
}

.hero-visual {
    min-height: 100%;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-color: #ded9d2;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.22));
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.08), transparent 45%, rgba(0,0,0,.12));
}

.hero-visual-word {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 34px;
    padding: 20px 30px;
    text-align: center;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 64px);
    line-height: .9;
    font-weight: 400;
    letter-spacing: -2px;
    text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero-visual-word span {
    margin-top: 13px;
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
}

.collections {
    padding: 105px 5% 110px;
    background: #fff;
}

.section-intro p {
    font-size: 9px;
    letter-spacing: 3px;
    color: #777;
}

.section-intro h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 400;
    letter-spacing: -1px;
}

.section-intro span {
    font-size: 13px;
    color: #888;
}

.collections-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.collection-card {
    min-height: 410px;
    padding: 28px;
    border-radius: 0;
}

.collection-card::before {
    opacity: .45;
}

.collection-card:hover::before {
    opacity: .32;
}

.collection-card-body h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.collection-card-body span {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-products-section {
    padding: 95px 5% 110px;
    background: #f7f6f3;
}

.home-products-section + .home-products-section {
    padding-top: 0;
}

.home-products-section .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.why-us {
    padding: 70px 5%;
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.why-us-grid {
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: repeat(4, 1fr);
}

.why-us-card {
    padding: 15px 30px;
    border-right: 1px solid #e8e8e8;
}

.why-us-card:last-child {
    border-right: 0;
}

.why-us-icon {
    font-size: 20px;
    margin-bottom: 12px;
}

.why-us-card h3 {
    font-size: 10px;
    letter-spacing: 1.8px;
}

.why-us-card p {
    font-size: 12px;
    color: #777;
}

.cta {
    padding: 105px 20px;
    background: #171717;
    color: #fff;
    text-align: center;
}

.cta p {
    font-size: 9px;
    letter-spacing: 3px;
    color: #aaa;
}

.cta h2 {
    max-width: 650px;
    margin: 15px auto 30px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 400;
}

.cta .btn-outline {
    border-color: #fff;
    color: #fff;
}

.cta .btn-outline:hover {
    background: #fff;
    color: #111;
}

@media (max-width: 900px) {
    .hero {
        min-height: 620px;
        grid-template-columns: 1fr 1fr;
    }

    .collections-grid,
    .home-products-section .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 35px;
    }

    .why-us-card:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 700px) {
    .hero {
        display: flex;
        min-height: auto;
    }

    .hero-content {
        padding: 62px 24px 48px;
    }

    .hero-visual {
        min-height: 520px;
        height: 520px;
    }

    .hero-title {
        font-size: clamp(45px, 13vw, 64px);
    }

    .hero-actions {
        flex-direction: row;
    }

    .hero-actions .btn {
        width: auto;
        flex: 1;
    }

    .collections-grid,
    .home-products-section .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .collection-card {
        min-height: 300px;
        padding: 20px;
    }

    .collection-card-body h3 {
        font-size: 22px;
    }

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-us-card {
        padding: 12px 18px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 440px;
        height: 440px;
    }

    .collections,
    .home-products-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .collections-grid,
    .home-products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .why-us {
        padding-left: 18px;
        padding-right: 18px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-card,
    .why-us-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid #eee;
        padding: 20px 0;
    }

    .why-us-card:last-child {
        border-bottom: 0;
    }
}


/* =========================================================
   ANAHEE-STYLE MOBILE HERO
   ========================================================= */
@media (max-width:750px){
  .hero{
    position:relative!important;display:block!important;height:min(78vh,690px)!important;min-height:560px!important;
    overflow:hidden!important;background:#201c19!important;
  }
  .hero-visual{
    position:absolute!important;inset:0!important;width:100%!important;height:100%!important;min-height:0!important;
    background-image:var(--hero-image),linear-gradient(135deg,#2b2622,#111)!important;
    background-size:cover!important;background-position:center!important;
  }
  .hero-visual::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.06) 25%,rgba(0,0,0,.62) 100%);z-index:1}
  .hero-visual-overlay{display:none!important}
  .hero-visual-word{display:none!important}
  .hero-content{
    position:absolute!important;left:0;right:0;bottom:0;z-index:3;
    padding:28px 20px 30px!important;color:#fff!important;
  }
  .hero-eyebrow{font-size:9px!important;letter-spacing:.28em!important;margin-bottom:10px!important;color:#fff!important}
  .hero-title{font-size:clamp(38px,12vw,62px)!important;line-height:.92!important;letter-spacing:-2px!important;color:#fff!important}
  .hero-text{font-size:12px!important;line-height:1.55!important;max-width:310px!important;margin:16px 0 0!important;color:rgba(255,255,255,.88)!important}
  .hero-actions{margin-top:20px!important;gap:8px!important;flex-direction:row!important}
  .hero-actions .btn{flex:1!important;width:auto!important;min-width:0!important;padding:12px 8px!important;font-size:9px!important;letter-spacing:.12em!important;border-color:#fff!important}
  .hero-actions .btn-dark{background:#fff!important;color:#171411!important}
  .hero-actions .btn-outline{background:transparent!important;color:#fff!important}
  .section-intro{padding:0 14px 30px!important}
  .section-intro h2{font-size:31px!important}
  .section-intro span{font-size:12px!important;margin-top:9px!important}
  .collections,.home-products-section{padding-top:54px!important;padding-bottom:54px!important}
}
@media (max-width:380px){
  .hero{min-height:520px!important;height:74vh!important}
  .hero-content{padding:24px 16px 22px!important}
  .hero-text{font-size:11px!important}
  .hero-actions .btn{font-size:8px!important}
}

/* =========================================================
   FINAL MOBILE HOME HERO — Anahee-inspired visual treatment
   ========================================================= */
@media (max-width: 750px) {
    .hero {
        min-height: 0 !important;
        height: calc(100svh - 64px) !important;
        max-height: 760px !important;
        display: block !important;
        position: relative !important;
        isolation: isolate !important;
        background: #211d1a !important;
    }

    .hero-visual {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        background-image: var(--hero-image) !important;
        background-color: #211d1a !important;
        background-size: cover !important;
        background-position: center center !important;
        z-index: 0 !important;
    }

    .hero-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            180deg,
            rgba(0,0,0,.03) 0%,
            rgba(0,0,0,.08) 35%,
            rgba(0,0,0,.72) 100%
        );
        z-index: 1;
        pointer-events: none;
    }

    .hero-content {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 5 !important;
        padding: 28px 18px 22px !important;
        color: #fff !important;
        pointer-events: none;
    }

    .hero-content > * {
        pointer-events: auto;
    }

    .hero-eyebrow {
        margin-bottom: 9px !important;
        color: rgba(255,255,255,.94) !important;
        font-size: 9px !important;
        letter-spacing: .28em !important;
    }

    .hero-title {
        max-width: 360px !important;
        color: #fff !important;
        font-family: Georgia, "Times New Roman", serif !important;
        font-size: clamp(42px, 13vw, 68px) !important;
        font-weight: 400 !important;
        line-height: .88 !important;
        letter-spacing: -.045em !important;
    }

    .hero-text {
        max-width: 320px !important;
        margin-top: 15px !important;
        color: rgba(255,255,255,.9) !important;
        font-size: 11.5px !important;
        line-height: 1.55 !important;
    }

    .hero-actions {
        position: relative !important;
        z-index: 10 !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important;
        margin-top: 18px !important;
    }

    .hero-actions .btn {
        position: relative !important;
        z-index: 11 !important;
        min-height: 44px !important;
        width: 100% !important;
        padding: 12px 8px !important;
        border: 1px solid rgba(255,255,255,.9) !important;
        font-size: 8.5px !important;
        letter-spacing: .13em !important;
        cursor: pointer !important;
        pointer-events: auto !important;
    }

    .hero-actions .btn-dark {
        background: #fff !important;
        color: #1d1b19 !important;
    }

    .hero-actions .btn-outline {
        background: rgba(255,255,255,.06) !important;
        color: #fff !important;
        backdrop-filter: blur(5px);
    }

    .hero-actions .btn:active {
        transform: scale(.98) !important;
    }
}

@media (max-width: 380px) {
    .hero {
        height: calc(100svh - 60px) !important;
    }

    .hero-content {
        padding: 22px 15px 17px !important;
    }

    .hero-text {
        max-width: 285px !important;
        font-size: 10.5px !important;
    }

    .hero-actions .btn {
        min-height: 42px !important;
        font-size: 8px !important;
    }
}

/* ==========================================
   PREMIUM MULTI-CATEGORY COLLECTIONS
========================================== */
.collections {
    background: #fbfaf8;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.collection-showcase {
    min-width: 0;
    background: #fff;
    border: 1px solid #e8e4df;
    box-shadow: 0 18px 50px rgba(24, 20, 16, 0.06);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.collection-showcase:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(24, 20, 16, 0.11);
}

.collection-showcase-main {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    padding: 38px;
    color: #fff;
    background-image: var(--collection-image);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.collection-showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.04) 18%, rgba(0,0,0,.72) 100%);
}

.collection-showcase-copy {
    position: relative;
    z-index: 1;
}

.collection-kicker {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: .22em;
    font-weight: 700;
}

.collection-showcase-copy h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 4vw, 62px);
    font-weight: 400;
    line-height: .95;
}

.collection-showcase-copy p {
    max-width: 310px;
    margin: 14px 0 22px;
    color: rgba(255,255,255,.86);
    font-size: 14px;
    line-height: 1.6;
}

.collection-main-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.7);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
}

.collection-main-link span {
    font-size: 17px;
    line-height: 10px;
    transition: transform .25s ease;
}

.collection-main-link:hover span {
    transform: translateX(4px);
}

.collection-subgrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: #e8e4df;
}

.collection-subcard {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 150px;
    padding: 18px;
    color: #171513;
    background: #fff;
    overflow: hidden;
}

.collection-subcard-image {
    position: absolute;
    inset: 0;
    background-image: var(--subcategory-image);
    background-size: cover;
    background-position: center;
    opacity: .9;
    transition: transform .45s ease;
}

.collection-subcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,.68) 100%);
}

.collection-subcard:hover .collection-subcard-image {
    transform: scale(1.06);
}

.collection-subcard-content,
.collection-subcard-arrow {
    position: relative;
    z-index: 1;
    color: #fff;
}

.collection-subcard-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.collection-subcard-content strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
}

.collection-subcard-content span {
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: .82;
}

.collection-subcard-arrow {
    position: absolute;
    right: 16px;
    top: 15px;
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.6);
    border-radius: 50%;
    font-size: 15px;
    transition: background .25s ease, transform .25s ease;
}

.collection-subcard:hover .collection-subcard-arrow {
    background: rgba(255,255,255,.18);
    transform: rotate(8deg);
}

@media (max-width: 900px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .collection-showcase-main {
        min-height: 330px;
    }
}

@media (max-width: 600px) {
    .collections {
        padding: 64px 16px 70px;
    }

    .collections-intro {
        padding-bottom: 30px;
    }

    .collections-grid {
        gap: 18px;
    }

    .collection-showcase-main {
        min-height: 330px;
        padding: 25px 22px;
    }

    .collection-showcase-copy h3 {
        font-size: 44px;
    }

    .collection-showcase-copy p {
        margin: 10px 0 18px;
        font-size: 12px;
    }

    .collection-subgrid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-subcard {
        min-height: 145px;
        padding: 14px;
    }

    .collection-subcard-content strong {
        font-size: 19px;
    }

    .collection-subcard-arrow {
        right: 12px;
        top: 12px;
        width: 26px;
        height: 26px;
    }
}
