
/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* BACKGROUNDS */
    --cream: #F9F6F0;          /* Slightly cleaner, airier luxury cream */
    --warm-white: #FFFFFF;     /* Crisp white for cards and contrast */

    /* DARK COLORS */
    --black: #1A1714;          /* Deep rich charcoal-black */
    --espresso: #26201C;       /* Deep warm brown for footer/dark sections */

    /* LUXURY ACCENTS */
    --gold: #C5A059;           /* Rich, premium antique gold (replaces 'rose' for a better ethnic footwear look) */
    --blush-rose: #D9C3B0;     /* Soft warm champagne-pink tint (subtle, elegant) */

    /* NEUTRALS */
    --taupe: #96887D;          /* Sophisticated medium taupe for secondary elements */
    --sand: #E5DFD5;           /* Light sand for neutral fills */

    /* BORDERS */
    --border: #DED6CB;         /* Crisp yet soft border tone */

    /* TEXT */
    --text: #26201C;           /* Unified dark brown-black for high legibility */
    --muted: #7A7067;          /* Muted grey-brown for captions and secondary text */

    /* TYPOGRAPHY */
    --heading: "Cormorant Garamond", serif;
    --body: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);        /* Points to your main text variable for consistency */
    font-family: var(--body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 20px;
}


/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement {
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;

    background: var(--espresso);
    color: var(--cream);

    font-size: 9px;
    letter-spacing: 2px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar {
    width: 100%;
    height: 82px;

    position: sticky;
    top: 0;
    z-index: 9999;

     background: rgba(245, 240, 232, 0.96);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    transition:
        height 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
}


/* =========================================
   TOP NAVIGATION
========================================= */

.top-nav {
    width: 100%;
    height: 100%;

    display: grid;
    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    padding: 0 5%;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.45s ease;
}


/* Left menu */

.top-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-links a {
    font-size: 10px;
    letter-spacing: 2px;

    transition: opacity 0.3s ease;
}

.top-links a:hover {
    opacity: 0.45;
}


/* Main logo */

.logo {
    font-family: var(--heading);

    font-size: 29px;
    font-weight: 600;

    letter-spacing: 4px;

    white-space: nowrap;
}


/* Icons */

.nav-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 20px;
}

.nav-icons a {
    font-size: 13px;

    transition: transform 0.3s ease;
}

.nav-icons a:hover {
    transform: translateY(-2px);
}


/* =========================================
   SCROLL NAVIGATION
========================================= */

.scroll-nav {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    padding: 0 5%;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition:
        opacity 0.4s ease,
        visibility 0.4s ease,
        transform 0.4s ease;
}


/* Left logo */

.scroll-logo {
    font-family: var(--heading);

    font-size: 21px;
    font-weight: 600;

    letter-spacing: 3px;

    white-space: nowrap;
}


/* Center navigation */

.scroll-links {
    display: flex;

    align-items: center;

    gap: 28px;

    margin-left: 60px;
}

.scroll-links a {
    font-size: 10px;

    letter-spacing: 2px;

    transition: opacity 0.3s ease;
}

.scroll-links a:hover {
    opacity: 0.45;
}


/* Right icons */

.scroll-icons {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 20px;
}

.scroll-icons a {
    font-size: 13px;
}


/* =========================================
   WHEN USER SCROLLS
========================================= */

.navbar.scrolled {
    height: 62px;

    background: rgba(251, 249, 245, 0.98);

    box-shadow:
        0 5px 25px rgba(0, 0, 0, 0.05);
}


/* Hide original navigation */

.navbar.scrolled .top-nav {
    opacity: 0;

    visibility: hidden;

    transform: translateY(-15px);
}


/* Show new navigation */

.navbar.scrolled .scroll-nav {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}



/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    height: calc(100vh - 116px);
    min-height: 650px;

    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }

}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.12),
            rgba(0, 0, 0, 0.05)
        );
}

.hero-content {
    position: absolute;
    left: 8%;
    top: 50%;

    transform: translateY(-50%);

    color: white;
    max-width: 600px;
}

.hero-content h1 {
    font-family: var(--heading);
    font-size: clamp(60px, 7vw, 110px);
    line-height: 0.85;
    font-weight: 400;

    margin-bottom: 30px;
}

.hero-content > p:not(.eyebrow) {
    max-width: 430px;

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    border: 1px solid white;

    padding: 15px 24px;

    font-size: 10px;
    letter-spacing: 2px;

    transition: 0.35s ease;
}

.hero-btn span {
    font-size: 17px;
}

.hero-btn:hover {
    background: var(--rose);
    border-color: var(--rose);
    color: white;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    padding: 140px 20px;
    background: var(--warm-white);
}

.intro-inner {
    max-width: 720px;
    margin: auto;
    text-align: center;
}

.intro h2 {
    font-family: var(--heading);
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 400;
    line-height: 0.95;

    margin-bottom: 35px;
}

.intro-text {
    max-width: 590px;
    margin: auto;

    color: #6e665f;

    font-size: 13px;
    line-height: 2;
}

.underline-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    margin-top: 35px;

    font-size: 10px;
    letter-spacing: 2px;

    border-bottom: 1px solid var(--black);
    padding-bottom: 7px;

    transition: 0.3s ease;
}

.underline-link span {
    font-size: 16px;
}

.underline-link:hover {
    gap: 22px;
}


/* =========================================================
   PRODUCT SECTION
========================================================= */

.products {
    padding: 120px 5%;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 50px;
}

.section-top h2,
.section-heading h2 {
    font-family: var(--heading);
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 400;
    line-height: 0.95;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;
    overflow: hidden;

    background: #eee9e1;
}

.product-image img {
    aspect-ratio: 0.78;
    object-fit: cover;

    transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;

    z-index: 2;

    background: white;
    padding: 7px 10px;

    font-size: 8px;
    letter-spacing: 1px;
}

.heart {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: 0;
    background: rgba(255, 255, 255, 0.9);

    border-radius: 50%;

    font-size: 20px;

    z-index: 2;

    transition: 0.3s ease;
}

.heart:hover {
    background: var(--black);
    color: white;
}

.quick-view {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    background: rgba(255, 255, 255, 0.95);

    padding: 14px;

    text-align: center;

    font-size: 9px;
    letter-spacing: 2px;

    transform: translateY(100%);

    transition: 0.4s ease;
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-info {
    padding: 18px 3px;
}

.product-info h3 {
    font-family: var(--heading);
    font-size: 22px;
    font-weight: 600;

    margin-bottom: 3px;
}

.product-info p {
    color: #81766d;

    font-size: 10px;
    letter-spacing: 0.5px;

    margin-bottom: 8px;
}

.product-info strong {
    font-size: 12px;
    font-weight: 500;
}


/* =========================================================
   CRAFT SECTION
========================================================= */

.craft {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    background: var(--sand);
}

.craft-image {
    height: 700px;
    overflow: hidden;
}

.craft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 1s ease;
}

.craft:hover .craft-image img {
    transform: scale(1.03);
}

.craft-content {
    padding: 80px 10%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.craft-content h2 {
    font-family: var(--heading);

    font-size: clamp(55px, 6vw, 90px);

    font-weight: 400;
    line-height: 0.9;

    margin-bottom: 35px;
}

.craft-content > p:not(.eyebrow) {
    max-width: 450px;

    color: #675f58;

    font-size: 13px;
    line-height: 2;

    margin-bottom: 35px;
}

.dark-btn {
    align-self: flex-start;

    display: inline-flex;
    gap: 25px;
    align-items: center;

   background: var(--espresso);
    color: white;

    padding: 15px 24px;

    font-size: 9px;
    letter-spacing: 2px;

    transition: 0.3s ease;
}

.dark-btn span {
    font-size: 16px;
}

.dark-btn:hover {
    background: var(--rose);
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories {
    padding: 130px 5%;
    background: var(--cream);
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading h2 {
    font-family: var(--heading);
    font-size: clamp(45px, 5vw, 68px);
    font-weight: 400;
    line-height: 0.95;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.category-card {
    position: relative;

    height: 620px;

    overflow: hidden;

    display: block;

    color: white;

    background: #222;
}


/* =========================================================
   VIDEO
========================================================= */

.category-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;

    transform: scale(1.02);

    transition:
        transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1),
        filter 0.8s ease;
}


/* =========================================================
   HOVER IMAGE
========================================================= */

.category-hover-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 2;

    opacity: 0;

    transform: scale(1.06);

    transition:
        opacity 0.8s ease,
        transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.category-overlay {
    position: absolute;

    inset: 0;

    z-index: 3;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.05) 65%
        );

    pointer-events: none;

    transition:
        background 0.6s ease;
}


/* =========================================================
   CATEGORY CONTENT
========================================================= */

.category-content {
    position: absolute;

    left: 35px;
    bottom: 35px;

    z-index: 4;

    color: white;
}

.category-content h3 {
    font-family: var(--heading);

    font-size: 44px;

    font-weight: 500;

    line-height: 1;

    margin-bottom: 8px;
}

.category-content span {
    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================================
   HOVER EFFECT
========================================================= */

.category-card:hover .category-hover-image {
    opacity: 1;

    transform: scale(1);
}

.category-card:hover .category-video {
    transform: scale(1.06);
}

.category-card:hover .category-overlay {
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.75),
            rgba(0, 0, 0, 0.10) 65%
        );
}

.category-card:hover .category-content {
    transform: translateY(-5px);
}

.category-content {
    transition: transform 0.5s ease;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .categories {
        padding: 110px 5%;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }

    .category-card {
        height: 520px;
    }

    .category-content {
        left: 25px;
        bottom: 25px;
    }

    .category-content h3 {
        font-size: 38px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .categories {
        padding: 90px 20px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 48px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }

    .category-card {
        height: 400px;
    }

    .category-content {
        left: 18px;
        bottom: 20px;
    }

    .category-content h3 {
        font-size: 30px;
    }

    .category-content span {
        font-size: 7px;

        letter-spacing: 1.5px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .category-grid {
        gap: 8px;
    }

    .category-card {
        height: 330px;
    }

    .category-content {
        left: 15px;
        bottom: 15px;
    }

    .category-content h3 {
        font-size: 26px;
    }

}


/* =========================================================
   STORY
========================================================= */

.story {
    height: 700px;

    position: relative;
    overflow: hidden;

    color: white;
}

.story > img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 8s ease;
}

.story:hover > img {
    transform: scale(1.04);
}

.story-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.35);
}

.story-content {
    position: absolute;

    left: 8%;
    top: 50%;

    transform: translateY(-50%);
}

.story-content h2 {
    font-family: var(--heading);

    font-size: clamp(60px, 7vw, 100px);

    font-weight: 400;
    line-height: 0.85;

    margin-bottom: 35px;
}

.outline-btn {
    display: inline-block;

    border: 1px solid white;

    padding: 14px 25px;

    font-size: 9px;
    letter-spacing: 2px;

    transition: 0.3s ease;
}

.outline-btn:hover {
    background: white;
    color: var(--black);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter {
    padding: 130px 20px;

     background: var(--dusty-rose);
    color: var(--espresso);

    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: auto;
}

.newsletter h2 {
    font-family: var(--heading);

    font-size: clamp(50px, 6vw, 75px);

    font-weight: 400;

    line-height: 1;

    margin-bottom: 20px;
}

.newsletter p:not(.eyebrow) {
    color: #766d65;

    font-size: 12px;

    margin-bottom: 35px;
}

.newsletter form {
    display: flex;

    border-bottom: 1px solid var(--black);

    max-width: 500px;
    margin: auto;
}

.newsletter input {
    flex: 1;

    border: 0;
    outline: none;

    background: transparent;

    padding: 15px 0;

    font-size: 10px;
    letter-spacing: 1.5px;
}

.newsletter button {
    border: 0;

    background: transparent;
    color: var(--espresso);

    font-size: 9px;
    letter-spacing: 2px;

    padding-left: 20px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
     background: var(--espresso);
    color: var(--cream);

    padding: 80px 5% 25px;
}

.footer-main {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 70px;
}

.footer-logo {
    font-family: var(--heading);

    font-size: 28px;

    letter-spacing: 4px;
}

.footer-brand p {
    color: #aaa;

    font-size: 11px;

    line-height: 2;

    margin-top: 20px;
}

.socials {
    display: flex;
    gap: 18px;

    margin-top: 25px;
}

.socials a {
    font-size: 14px;

    transition: 0.3s ease;
}

.socials a:hover {
    opacity: 0.5;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 9px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.footer-column a {
   color: rgba(245, 240, 232, 0.65);

    font-size: 10px;

    transition: 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #f8f9fc;

    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    color: #777;

    font-size: 8px;

    letter-spacing: 1px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-left {
        gap: 18px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card {
        height: 500px;
    }

    .craft {
        grid-template-columns: 1fr;
    }

    .craft-image {
        height: 600px;
    }

    .craft-content {
        padding: 80px 8%;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .announcement {
        height: 30px;

        font-size: 7px;

        letter-spacing: 1.3px;

        text-align: center;
    }


    /* Navbar */

    .navbar {
        height: 70px;

        display: flex;
        justify-content: space-between;

        padding: 0 20px;
    }

    .nav-left {
        display: none;
    }

    .logo {
        font-size: 21px;
        letter-spacing: 2px;
    }

    .nav-right {
        gap: 15px;
    }

    .nav-right a {
        font-size: 13px;
    }


    /* Hero */

    .hero {
        height: calc(100vh - 100px);
        min-height: 570px;
    }

    .hero-content {
        left: 25px;
        right: 25px;
    }

    .hero-content h1 {
        font-size: 65px;

        line-height: 0.88;
    }

    .hero-content > p:not(.eyebrow) {
        font-size: 12px;

        max-width: 320px;
    }

    .eyebrow {
        font-size: 8px;

        letter-spacing: 2px;

        margin-bottom: 15px;
    }


    /* Intro */

    .intro {
        padding: 90px 25px;
    }

    .intro h2 {
        font-size: 48px;
    }

    .intro-text {
        font-size: 12px;
    }


    /* Products */

    .products {
        padding: 80px 20px;
    }

    .section-top {
        align-items: flex-start;
        gap: 20px;
    }

    .section-top h2,
    .section-heading h2 {
        font-size: 48px;
    }

    .section-top .underline-link {
        margin-top: 0;

        font-size: 8px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 35px 10px;
    }

    .product-info h3 {
        font-size: 19px;
    }

    .product-info p {
        font-size: 8px;
    }

    .product-info strong {
        font-size: 10px;
    }

    .quick-view {
        display: none;
    }

    .heart {
        width: 30px;
        height: 30px;

        font-size: 17px;
    }


    /* Craft */

    .craft-image {
        height: 450px;
    }

    .craft-content {
        padding: 70px 25px;
    }

    .craft-content h2 {
        font-size: 58px;
    }

    .craft-content > p:not(.eyebrow) {
        font-size: 12px;
    }


    /* Categories */

    .categories {
        padding: 90px 20px;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;

        gap: 8px;
    }

    .category-card {
        height: 380px;
    }

    .category-card > div {
        left: 18px;
        bottom: 20px;
    }

    .category-card h3 {
        font-size: 30px;
    }

    .category-card span {
        font-size: 7px;
    }


    /* Story */

    .story {
        height: 600px;
    }

    .story-content {
        left: 25px;
        right: 25px;
    }

    .story-content h2 {
        font-size: 65px;
    }


    /* Newsletter */

    .newsletter {
        padding: 90px 25px;
    }

    .newsletter h2 {
        font-size: 52px;
    }

    .newsletter p:not(.eyebrow) {
        font-size: 11px;
    }


    /* Footer */

    .footer {
        padding: 60px 25px 25px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px 25px;

        padding-bottom: 50px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 15px;
    }

    .footer-bottom div {
        gap: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hero-content h1 {
        font-size: 55px;
    }

    .product-grid {
        gap: 25px 8px;
    }

    .category-card {
        height: 320px;
    }

    .category-card h3 {
        font-size: 26px;
    }

    .craft-content h2 {
        font-size: 52px;
    }

}

/* =========================================================
   PRODUCT PAGE
   OLD ROSE + ESPRESSO + IVORY
========================================================= */

/* PRODUCT HERO */

.product-hero {
    min-height: 620px;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        linear-gradient(
            rgba(43, 33, 29, 0.72),
            rgba(43, 33, 29, 0.72)
        ),
        url("../images/product-hero.jpg");

    background-size: cover;
    background-position: center;
}

.product-hero-content {
    max-width: 760px;
    padding: 100px 25px;
    color: var(--cream);
}

.product-hero-content .eyebrow {
    color: var(--dusty-rose);
}

.product-hero-content h1 {
    font-family: var(--heading);

    font-size: clamp(65px, 8vw, 115px);
    font-weight: 400;
    line-height: 0.82;

    margin-bottom: 35px;
}

.product-hero-content > p:not(.eyebrow) {
    max-width: 470px;
    margin: auto;

    color: rgba(245, 240, 232, 0.78);

    font-size: 13px;
    line-height: 2;
}


/* =========================================================
   COLLECTION INTRO
========================================================= */

.collection-intro {
    padding: 130px 25px;

    background: var(--warm-white);

    text-align: center;
}

.collection-intro-inner {
    max-width: 720px;
    margin: auto;
}

.collection-intro .eyebrow {
    color: var(--rose);
}

.collection-intro h2 {
    font-family: var(--heading);

    font-size: clamp(55px, 6vw, 82px);
    font-weight: 400;
    line-height: 0.9;

    margin-bottom: 30px;
}

.collection-intro-inner > p:not(.eyebrow) {
    max-width: 550px;
    margin: auto;

    color: var(--muted);

    font-size: 13px;
    line-height: 2;
}


/* =========================================================
   SHOP SECTION
========================================================= */

.shop-section {
    padding: 120px 5% 140px;
    background: var(--cream);
}

.shop-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 45px;
}

.shop-header h2 {
    font-family: var(--heading);

    font-size: clamp(50px, 6vw, 78px);
    font-weight: 400;
    line-height: 0.9;
}

.shop-header .eyebrow {
    margin-bottom: 18px;
    color: var(--rose);
}

.shop-tools {
    display: flex;
    align-items: center;
    gap: 30px;

    color: var(--muted);

    font-size: 9px;
    letter-spacing: 1.5px;
}

.sort-btn {
    border: 1px solid var(--border);

    background: var(--warm-white);
    color: var(--text);

    padding: 13px 17px;

    font-size: 9px;
    letter-spacing: 1.5px;

    transition: 0.3s ease;
}

.sort-btn i {
    margin-left: 12px;
    font-size: 8px;
}

.sort-btn:hover {
    background: var(--espresso);
    color: var(--cream);
    border-color: var(--espresso);
}


/* =========================================================
   CATEGORY FILTER
========================================================= */

.category-filter {
    display: flex;
    align-items: center;
    gap: 35px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    padding: 18px 0;
    margin-bottom: 50px;

    overflow-x: auto;

    scrollbar-width: none;
}

.category-filter::-webkit-scrollbar {
    display: none;
}

.category-filter a {
    position: relative;

    flex-shrink: 0;

    color: var(--muted);

    font-size: 9px;
    letter-spacing: 2px;

    transition: 0.3s ease;
}

.category-filter a:hover {
    color: var(--rose);
}

.category-filter .filter-active {
    color: var(--espresso);
}

.category-filter .filter-active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: -19px;

    height: 2px;

    background: var(--rose);
}


/* =========================================================
   SHOP GRID
========================================================= */

.shop-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 60px 20px;
}

.shop-product {
    min-width: 0;
}

.shop-product-image {
    position: relative;
    overflow: hidden;

    background: var(--sand);
}

.shop-product-image img {
    width: 100%;

    aspect-ratio: 0.78;

    object-fit: cover;

    transition:
        transform 0.9s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.shop-product:hover .shop-product-image img {
    transform: scale(1.055);
}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 5;

    background: var(--cream);
    color: var(--espresso);

    padding: 7px 10px;

    font-size: 8px;
    letter-spacing: 1.2px;
}


/* =========================================================
   HEART
========================================================= */

.product-heart {
    position: absolute;

    top: 15px;
    right: 15px;

    z-index: 5;

    width: 36px;
    height: 36px;

    border: 0;
    border-radius: 50%;

    background: rgba(251, 249, 245, 0.94);

    color: var(--espresso);

    font-size: 20px;

    transition: 0.3s ease;
}

.product-heart:hover {
    background: var(--rose);
    color: white;

    transform: scale(1.06);
}


/* =========================================================
   QUICK VIEW
========================================================= */

.shop-quick-view {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 15px;

    background: rgba(251, 249, 245, 0.96);

    color: var(--espresso);

    text-align: center;

    font-size: 9px;
    letter-spacing: 2px;

    transform: translateY(100%);

    transition: 0.4s ease;
}

.shop-product:hover .shop-quick-view {
    transform: translateY(0);
}

.shop-quick-view:hover {
    background: var(--rose);
    color: white;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.shop-product-info {
    padding: 19px 3px 0;
}

.shop-product-info .product-category {
    color: var(--rose);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 2px;

    margin-bottom: 5px;
}

.shop-product-info h3 {
    font-family: var(--heading);

    color: var(--text);

    font-size: 24px;
    font-weight: 600;

    line-height: 1.1;

    margin-bottom: 5px;
}

.shop-product-info .product-description {
    color: var(--muted);

    font-size: 10px;

    line-height: 1.5;

    margin-bottom: 9px;
}

.shop-product-info strong {
    color: var(--espresso);

    font-size: 12px;
    font-weight: 500;
}


/* =========================================================
   COLLECTION STATEMENT
========================================================= */

.collection-statement {
    min-height: 550px;

    padding: 100px 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: var(--dusty-rose);

    color: var(--espresso);
}

.collection-statement > div {
    max-width: 700px;
}

.collection-statement .eyebrow {
    color: var(--espresso);
    opacity: 0.75;
}

.collection-statement h2 {
    font-family: var(--heading);

    font-size: clamp(58px, 7vw, 95px);

    font-weight: 400;

    line-height: 0.85;

    margin-bottom: 30px;
}

.collection-statement p:not(.eyebrow) {
    max-width: 500px;

    margin: auto;

    color: rgba(43, 33, 29, 0.72);

    font-size: 12px;

    line-height: 2;
}


/* =========================================================
   PRODUCT PAGE TABLET
========================================================= */

@media (max-width: 1100px) {

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 18px;
    }

}


@media (max-width: 850px) {

    .product-hero {
        min-height: 550px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 15px;
    }

    .shop-header {
        align-items: flex-start;
        gap: 30px;
    }

    .shop-tools {
        flex-direction: column;
        align-items: flex-end;
        gap: 15px;
    }

}


/* =========================================================
   PRODUCT PAGE MOBILE
========================================================= */

@media (max-width: 700px) {

    .product-hero {
        min-height: 520px;
    }

    .product-hero-content {
        padding: 80px 25px;
    }

    .product-hero-content h1 {
        font-size: 62px;
        line-height: 0.86;
    }

    .product-hero-content > p:not(.eyebrow) {
        font-size: 11px;
        line-height: 1.8;
    }


    /* Collection Intro */

    .collection-intro {
        padding: 90px 25px;
    }

    .collection-intro h2 {
        font-size: 52px;
    }

    .collection-intro-inner > p:not(.eyebrow) {
        font-size: 11px;
    }


    /* Shop */

    .shop-section {
        padding: 80px 20px 100px;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;

        margin-bottom: 35px;
    }

    .shop-header h2 {
        font-size: 52px;
    }

    .shop-tools {
        width: 100%;

        flex-direction: row;

        justify-content: space-between;

        align-items: center;
    }

    .category-filter {
        gap: 25px;
        margin-bottom: 35px;
    }

    .category-filter a {
        font-size: 8px;
    }


    /* Product grid */

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 40px 10px;
    }

    .shop-product-info {
        padding-top: 14px;
    }

    .shop-product-info h3 {
        font-size: 19px;
    }

    .shop-product-info .product-category {
        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .shop-product-info .product-description {
        font-size: 8px;
    }

    .shop-product-info strong {
        font-size: 10px;
    }


    /* Hide quick view on mobile */

    .shop-quick-view {
        display: none;
    }


    /* Heart */

    .product-heart {
        width: 30px;
        height: 30px;

        top: 10px;
        right: 10px;

        font-size: 17px;
    }


    /* Badge */

    .product-badge {
        top: 10px;
        left: 10px;

        padding: 6px 8px;

        font-size: 7px;
    }


    /* Statement */

    .collection-statement {
        min-height: 450px;

        padding: 80px 25px;
    }

    .collection-statement h2 {
        font-size: 58px;
    }

    .collection-statement p:not(.eyebrow) {
        font-size: 11px;
    }

}


/* =========================================================
   PRODUCT PAGE SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .product-hero-content h1 {
        font-size: 53px;
    }

    .collection-intro h2 {
        font-size: 47px;
    }

    .shop-header h2 {
        font-size: 47px;
    }

    .shop-grid {
        gap: 35px 8px;
    }

    .shop-product-info h3 {
        font-size: 17px;
    }

    .collection-statement h2 {
        font-size: 51px;
    }

}

/* =========================================================
   FINAL MOBILE RESPONSIVE FIX
   INDEX / HOME PAGE
========================================================= */

@media (max-width: 700px) {

    /* ---------- GLOBAL ---------- */

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    * {
        max-width: 100%;
    }


    /* ---------- ANNOUNCEMENT ---------- */

    .announcement {
        height: 30px;
        padding: 0 12px;
        font-size: 7px;
        letter-spacing: 1px;
        white-space: nowrap;
        overflow: hidden;
    }


    /* ---------- NAVBAR ---------- */

    .navbar {
        height: 65px;
        width: 100%;
        padding: 10px 18px;
        position: fixed;
        /* background-color: red; */
    }

    .top-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        width: 100%;
    }

    .top-links {
        display: none;
    }

    .logo {
        font-size: 20px;
        letter-spacing: 2px;
        margin: 0;
    }

    .nav-icons {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 14px;
    }

    .nav-icons a {
        font-size: 14px;
    }

    /* Hide scroll navbar on mobile */
    .scroll-nav {
        display: none !important;
    }

    .navbar.scrolled {
        /* height: 55px; */
        display: block;
    }

    .navbar.scrolled .top-nav {
        display: flex;
        opacity: 1;
        visibility: visible;
        transform: none;
    }


    /* ---------- HERO ---------- */

    .hero {
        width: 100%;
        height: calc(100svh - 95px);
        min-height: 520px;
        max-height: 750px;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-content {
        left: 20px;
        right: 20px;
        top: 50%;
        max-width: none;
        transform: translateY(-50%);
    }

    .hero-content h1 {
        font-size: clamp(48px, 15vw, 68px);
        line-height: 0.88;
        margin-bottom: 22px;
    }

    .hero-content > p:not(.eyebrow) {
        max-width: 290px;
        font-size: 11px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .hero-btn {
        padding: 12px 18px;
        gap: 18px;
        font-size: 8px;
    }


    /* ---------- INTRO ---------- */

    .intro {
        padding: 75px 22px;
    }

    .intro-inner {
        width: 100%;
    }

    .intro h2 {
        font-size: clamp(40px, 12vw, 52px);
        line-height: 0.95;
        margin-bottom: 25px;
    }

    .intro-text {
        font-size: 11px;
        line-height: 1.9;
    }


    /* ---------- PRODUCTS ---------- */

    .products {
        padding: 70px 16px;
    }

    .section-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .section-top h2,
    .section-heading h2 {
        font-size: clamp(40px, 12vw, 52px);
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 10px;
    }

    .product-image {
        width: 100%;
    }

    .product-image img {
        width: 100%;
        aspect-ratio: 0.72;
        object-fit: cover;
    }

    .product-info {
        padding: 12px 2px;
    }

    .product-info h3 {
        font-size: 18px;
        line-height: 1.1;
    }

    .product-info p {
        font-size: 8px;
        line-height: 1.5;
    }

    .product-info strong {
        font-size: 10px;
    }

    .quick-view {
        display: none;
    }

    .heart {
        width: 29px;
        height: 29px;
        top: 9px;
        right: 9px;
        font-size: 16px;
    }

    .badge {
        top: 9px;
        left: 9px;
        padding: 5px 7px;
        font-size: 7px;
    }


    /* ---------- CRAFT ---------- */

    .craft {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .craft-image {
        width: 100%;
        height: 420px;
    }

    .craft-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .craft-content {
        width: 100%;
        padding: 65px 22px;
    }

    .craft-content h2 {
        font-size: clamp(48px, 14vw, 62px);
        line-height: 0.9;
        margin-bottom: 25px;
    }

    .craft-content > p:not(.eyebrow) {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .dark-btn {
        padding: 13px 18px;
        font-size: 8px;
    }


    /* ---------- CATEGORIES ---------- */

    .categories {
        padding: 75px 16px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .category-card {
        width: 100%;
        height: 360px;
    }

    .category-content {
        left: 15px;
        right: 10px;
        bottom: 18px;
    }

    .category-content h3 {
        font-size: 28px;
    }

    .category-content span {
        font-size: 6px;
        letter-spacing: 1.2px;
    }


    /* ---------- STORY ---------- */

    .story {
        width: 100%;
        height: 550px;
    }

    .story > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .story-content {
        left: 22px;
        right: 22px;
        top: 50%;
    }

    .story-content h2 {
        font-size: clamp(50px, 14vw, 68px);
        line-height: 0.88;
        margin-bottom: 25px;
    }

    .outline-btn {
        padding: 12px 18px;
        font-size: 8px;
    }


    /* ---------- NEWSLETTER ---------- */

    .newsletter {
        padding: 75px 22px;
    }

    .newsletter-inner {
        width: 100%;
    }

    .newsletter h2 {
        font-size: clamp(45px, 13vw, 58px);
    }

    .newsletter p:not(.eyebrow) {
        font-size: 10px;
        line-height: 1.7;
    }

    .newsletter form {
        width: 100%;
    }

    .newsletter input {
        min-width: 0;
        font-size: 9px;
    }


    /* ---------- FOOTER ---------- */

    .footer {
        padding: 55px 20px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-logo {
        font-size: 24px;
        letter-spacing: 3px;
    }

    .footer-brand p {
        font-size: 10px;
        line-height: 1.8;
    }

    .footer-column {
        gap: 9px;
    }

    .footer-column h4 {
        font-size: 8px;
    }

    .footer-column a {
        font-size: 9px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        font-size: 7px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
        gap: 12px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .navbar {
        padding: 0 14px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-icons {
        gap: 10px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-content {
        left: 18px;
        right: 18px;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    .product-grid {
        gap: 25px 7px;
    }

    .product-info h3 {
        font-size: 16px;
    }

    .category-card {
        height: 300px;
    }

    .category-content h3 {
        font-size: 24px;
    }

    .craft-image {
        height: 350px;
    }

    .footer-main {
        gap: 30px 15px;
    }
}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

@media (max-width: 700px) {

    .hero,
    .intro,
    .products,
    .craft,
    .categories,
    .story,
    .newsletter,
    .footer {
        max-width: 100vw;
        overflow: hidden;
    }

    img,
    video {
        max-width: 100%;
    }

    h1,
    h2,
    h3,
    p {
        overflow-wrap: break-word;
    }
}

.scroll-nav {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Pushes the logo to the left and links to the right */
    width: 100%;
}

.scroll-links {
    display: flex;
    gap: 2 rem; /* Space between navigation items */
    margin-left: auto; /* Ensures links push completely to the right edge */
}


/* Desktop Right Alignment */
.scroll-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.scroll-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .scroll-links {
        display: none;
        flex-direction: column;
        position: sticky;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 1.5rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 1.2rem;
    }

    .scroll-links.active {
        display: flex;
    }
}

/* =========================================================
   MOBILE RESPONSIVE & HAMBURGER MENU (MAX-WIDTH: 768PX)
========================================================= */

@media (max-width: 768px) {

    html, body {
        overflow-x: hidden;
    }

    /* Hide desktop top-nav on mobile so scroll-nav takes over */
    .top-nav {
        display: none !important;
    }

    /* Force scroll-nav visible as the primary mobile navbar */
    .scroll-nav {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        position: relative;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    /* Force Hamburger button to show */
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent;
        border: none;
        font-size: 24px;
        color: var(--black);
        cursor: pointer;
        z-index: 1002;
        width: 40px;
        height: 40px;
    }

    /* Dropdown menu drawer */
    .scroll-links {
        display: none !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--warm-white);
        padding: 2rem 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 1.5rem;
        z-index: 1000;
        margin-left: 0;
    }

    .scroll-links.active {
        display: flex !important;
    }

    .scroll-icons {
        display: none !important;
    }

    /* Hero adjustments */
    .hero {
        height: calc(100vh - 95px);
        min-height: 520px;
    }

    .hero-content {
        left: 20px;
        right: 20px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 15vw, 68px);
    }

    /* Products & Categories */
    .product-grid,
    .category-grid,
    .shop-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .category-card {
        height: 360px;
    }

    .craft-image {
        height: 420px;
    }

    .craft-content {
        padding: 65px 22px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }
}

/* =========================================
   PRODUCT HERO BANNER
========================================= */

.product-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.product-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    text-align: center;
    color: #fff;
}

.product-hero-content .eyebrow {
    margin-bottom: 15px;
    letter-spacing: 3px;
    font-size: 13px;
}

.product-hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 7vw, 100px);
    line-height: 0.9;
    font-weight: 500;
    margin: 0 0 25px;
}

.product-hero-content > p:last-child {
    max-width: 550px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .product-hero {
        height: 65vh;
        min-height: 500px;
    }

    .product-hero-image {
        object-position: center;
    }

    .product-hero-content {
        width: 90%;
    }

    .product-hero-content h1 {
        font-size: 55px;
        line-height: 0.95;
    }

    .product-hero-content > p:last-child {
        font-size: 14px;
        max-width: 330px;
    }

}

@media (max-width: 480px) {

    .product-hero {
        height: 60vh;
        min-height: 450px;
    }

    .product-hero-content h1 {
        font-size: 46px;
    }

}

/* =========================
   CONTACT SOCIAL & MAP GRID
========================== */
.contact-social-section {
    padding: 80px 5%;
    background-color: #FAF8F5; /* Matches luxury beige/ivory theme */
}

.contact-social-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2-Column Side-by-Side Layout */
    gap: 40px;
    align-items: center;
}

/* Left Content Column */
.contact-social-inner {
    padding: 20px 0;
}

.contact-social-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    line-height: 1.2;
    margin: 15px 0;
    color: #111111;
}

.contact-social-inner p {
    font-family: 'Montserrat', sans-serif;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-social-links {
    display: flex;
    gap: 15px;
}

.contact-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #111111;
    border-radius: 50%;
    color: #111111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-links a:hover {
    background-color: #111111;
    color: #ffffff;
}

/* Right Map Column */
.contact-map-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Responsive: Stack vertically on screens under 768px */
@media (max-width: 768px) {
    .contact-social-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-map-wrapper {
        height: 300px;
    }
}


.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    display: block;
}

.nav-logo img {
    width: 70px;
    height: 70px;
    display: block;
}

.nav-logo {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .nav-logo img {
        width: 60px;
        height: 60px;
    }
}

.navbar.scrolled .nav-logo img {
    width: 55px;
    height: 55px;
    transition: 0.3s ease;
}


