/* =====================================================
   SANGEETHA TRADINGS
   CUSTOMIZED AURA
   PREMIUM WHITE / GOLD LUXURY THEME
===================================================== */

/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    background: #ffffff;
    color: #292621;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

::selection {
    background: #d8c39a;
    color: #292621;
}

/* =====================================================
   VARIABLES
===================================================== */

:root {
    --gold: #b89b62;
    --gold-light: #d8c39a;
    --gold-soft: #eee3ce;

    --white: #ffffff;
    --ivory: #fffdf9;
    --cream: #f8f5ef;
    --soft: #f2eee6;

    --dark: #292621;
    --dark-soft: #4c4740;
    --muted: #777168;

    --border: rgba(184, 155, 98, 0.25);

    --shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 25px 65px rgba(0, 0, 0, 0.12);
}

/* =====================================================
   LOADER
===================================================== */

.loader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    animation: loaderHide 1s ease forwards;
    animation-delay: 1.4s;
}

.loader-text {
    display: flex;
    gap: 3px;

    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 5px;

    color: var(--gold);
}

.loader-text span {
    animation: loaderLetter 0.8s ease both;
}

.loader-text span:nth-child(1) {
    animation-delay: 0.05s;
}

.loader-text span:nth-child(2) {
    animation-delay: 0.10s;
}

.loader-text span:nth-child(3) {
    animation-delay: 0.15s;
}

.loader-text span:nth-child(4) {
    animation-delay: 0.20s;
}

.loader-text span:nth-child(5) {
    animation-delay: 0.25s;
}

.loader-text span:nth-child(6) {
    animation-delay: 0.30s;
}

.loader-text span:nth-child(7) {
    animation-delay: 0.35s;
}

.loader-text span:nth-child(8) {
    animation-delay: 0.40s;
}

.loader-text span:nth-child(9) {
    animation-delay: 0.45s;
}

@keyframes loaderLetter {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loaderHide {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* =====================================================
   NAVBAR
===================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 6%;

    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(184, 155, 98, 0.12);

    z-index: 1000;

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease;
}

/* BRAND */

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--dark);
}

.brand-subtitle {
    margin-top: 5px;

    font-size: 8px;
    font-weight: 600;
    letter-spacing: 4px;

    color: var(--gold);
}

/* NAV LINKS */

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    position: relative;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    color: var(--dark-soft);

    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* WISHLIST COUNT */

.wishlist-count {
    display: inline-flex;

    min-width: 18px;
    height: 18px;

    align-items: center;
    justify-content: center;

    margin-left: 4px;

    border-radius: 50%;

    background: var(--gold);
    color: white;

    font-size: 9px;
    line-height: 1;
}

/* MENU BUTTON */

.menu-btn {
    display: none;

    border: none;
    background: transparent;

    font-size: 25px;
    color: var(--dark);

    cursor: pointer;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {
    position: fixed;

    top: 82px;
    left: 0;

    width: 100%;

    padding: 20px 6% 30px;

    background: rgba(255, 255, 255, 0.98);

    border-bottom: 1px solid var(--border);

    display: none;
    flex-direction: column;

    z-index: 999;

    box-shadow: var(--shadow);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 13px 0;

    border-bottom: 1px solid rgba(184, 155, 98, 0.12);

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.hero-image img {
    height: 100%;
    min-height: 100vh;

    object-position: center;

    transform: scale(1.05);

    transition: transform 0.8s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.94) 0%,
            rgba(255, 255, 255, 0.78) 38%,
            rgba(255, 255, 255, 0.18) 72%,
            rgba(255, 255, 255, 0.02) 100%
        );
}

/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    width: min(600px, 90%);

    margin-left: 8%;
    padding-top: 80px;
}

.small-title {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
}

.hero h1 {
    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(58px, 8vw, 105px);
    font-weight: 700;

    line-height: 0.9;

    color: var(--dark);

    letter-spacing: -2px;
}

.hero h1 span {
    display: block;

    color: var(--gold);

    font-style: italic;
    font-weight: 500;
}

.hero-description {
    max-width: 500px;

    margin-bottom: 35px;

    color: var(--dark-soft);

    font-size: 14px;
    line-height: 1.9;
}

/* SCROLL */

.scroll-indicator {
    position: absolute;

    bottom: 35px;
    right: 6%;

    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
}

.scroll-indicator span {
    width: 38px;
    height: 1px;

    background: var(--gold);
}

/* =====================================================
   BUTTONS
===================================================== */

.gold-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 15px 25px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.gold-button {
    background: var(--gold);
    color: white;

    border: 1px solid var(--gold);
}

.gold-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(184, 155, 98, 0.28);
}

.outline-button {
    background: transparent;

    color: var(--dark);

    border: 1px solid var(--gold);
}

.outline-button:hover {
    background: var(--gold);

    color: white;

    transform: translateY(-3px);
}

/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 110px 7%;
}

.section-label {
    margin-bottom: 14px;

    color: var(--gold);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2,
.intro h2,
.about h2,
.new-arrival-content h2,
.contact h2,
.wishlist-section h2 {
    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(45px, 5vw, 72px);
    font-weight: 700;

    line-height: 0.95;

    color: var(--dark);

    letter-spacing: -1px;
}

.section-heading h2 em,
.intro h2 em,
.about h2 em,
.new-arrival-content h2 em,
.contact h2 em,
.wishlist-section h2 em {
    color: var(--gold);

    font-style: italic;
    font-weight: 500;
}

.section-heading > p:last-child {
    max-width: 570px;

    margin: auto;

    color: var(--muted);

    font-size: 13px;
}

/* =====================================================
   INTRO
===================================================== */

.intro {
    background: var(--ivory);

    text-align: center;
}

.intro-content {
    max-width: 760px;

    margin: auto;
}

.intro h2 {
    font-size: clamp(48px, 6vw, 78px);
}

.intro-content > p:last-child {
    max-width: 620px;

    margin: auto;

    color: var(--muted);

    font-size: 14px;
}

/* =====================================================
   COLLECTION FILTERS
===================================================== */

.collection-filters {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 17px;

    background: transparent;

    border: 1px solid var(--border);

    color: var(--muted);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);

    border-color: var(--gold);

    color: white;
}

/* =====================================================
   PRODUCT GRID
===================================================== */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}

/* PRODUCT CARD */

.product-card {
    position: relative;

    background: white;

    border: 1px solid rgba(184, 155, 98, 0.15);

    box-shadow: var(--shadow);

    overflow: hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);
}

/* PRODUCT IMAGE */

.product-image {
    position: relative;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: var(--cream);
}

.product-image img {
    height: 100%;

    transition:
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

/* WISHLIST BUTTON */

.wishlist-btn {
    position: absolute;

    top: 15px;
    right: 15px;

    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(184, 155, 98, 0.3);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.92);

    color: var(--dark);

    font-size: 23px;

    cursor: pointer;

    z-index: 3;

    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: var(--gold);

    color: white;

    transform: scale(1.08);
}

.wishlist-btn.active {
    background: var(--gold);

    color: white;

    border-color: var(--gold);
}

/* PRODUCT INFO */

.product-info {
    padding: 24px;
}

.product-info > span {
    display: block;

    margin-bottom: 7px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.product-info h3 {
    margin-bottom: 10px;

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.05;

    color: var(--dark);
}

.product-price {
    margin-bottom: 18px;

    color: var(--dark-soft);

    font-size: 13px;
    font-weight: 600;
}

/* WHATSAPP PRODUCT BUTTON */

.product-whatsapp {
    width: 100%;

    padding: 12px 15px;

    border: 1px solid var(--gold);

    background: transparent;

    color: var(--dark);

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;

    text-transform: uppercase;

    cursor: pointer;

    transition: all 0.3s ease;
}

.product-whatsapp:hover {
    background: var(--gold);

    color: white;
}

/* =====================================================
   NEW ARRIVALS
===================================================== */

.new-arrivals {
    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    align-items: center;

    gap: 80px;

    background: var(--cream);

    padding-left: 8%;
    padding-right: 8%;
}

.new-arrival-image {
    height: 650px;

    overflow: hidden;
}

.new-arrival-image img {
    height: 100%;

    transition: transform 1s ease;
}

.new-arrival-image:hover img {
    transform: scale(1.04);
}

.new-arrival-content {
    max-width: 520px;
}

.new-arrival-content > p:not(.section-label) {
    margin-bottom: 30px;

    color: var(--muted);

    font-size: 14px;
}

/* =====================================================
   ABOUT
===================================================== */

.about {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    align-items: center;

    gap: 90px;

    background: white;
}

.about-content {
    max-width: 580px;
}

.about-content > p:not(.section-label) {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: 14px;
}

.about-image {
    position: relative;

    height: 650px;

    padding-right: 30px;
    padding-bottom: 30px;
}

.about-image img {
    height: 100%;

    position: relative;

    z-index: 2;
}

.image-frame {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 88%;
    height: 88%;

    border: 1px solid var(--gold);

    z-index: 1;
}

/* =====================================================
   QUOTE
===================================================== */

.quote-section {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 7%;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.78),
            rgba(255, 255, 255, 0.78)
        ),
        url("images/image 2.jpeg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;

    text-align: center;
}

.quote-content {
    position: relative;

    z-index: 2;
}

.quote-mark {
    display: block;

    margin-bottom: -10px;

    font-family: "Cormorant Garamond", serif;

    font-size: 100px;

    color: var(--gold);

    line-height: 0.7;
}

.quote-content h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 7vw, 90px);

    font-weight: 700;

    line-height: 0.9;

    color: var(--dark);
}

.quote-content h2 em {
    color: var(--gold);

    font-weight: 500;
}

.quote-content p {
    margin-top: 30px;

    color: var(--muted);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
}

/* =====================================================
   WISHLIST
===================================================== */

.wishlist-section {
    background: var(--ivory);
}

.wishlist-empty {
    max-width: 600px;

    margin: 0 auto;

    padding: 65px 30px;

    text-align: center;

    border: 1px solid var(--border);

    background: white;

    box-shadow: var(--shadow);
}

.wishlist-heart {
    margin-bottom: 15px;

    color: var(--gold);

    font-size: 55px;

    line-height: 1;
}

.wishlist-empty h3 {
    margin-bottom: 10px;

    font-family: "Cormorant Garamond", serif;

    font-size: 32px;

    color: var(--dark);
}

.wishlist-empty p {
    margin-bottom: 25px;

    color: var(--muted);

    font-size: 13px;
}

.wishlist-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    margin-top: 40px;
}

/* =====================================================
   WISHLIST TOAST
===================================================== */

.wishlist-message {
    position: fixed;

    left: 50%;
    bottom: 35px;

    transform: translate(-50%, 30px);

    padding: 13px 22px;

    background: var(--dark);

    color: white;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;

    opacity: 0;
    visibility: hidden;

    z-index: 5000;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.wishlist-message.show {
    opacity: 1;
    visibility: visible;

    transform: translate(-50%, 0);
}

/* =====================================================
   CONTACT
===================================================== */

.contact {
    position: relative;

    min-height: 700px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    padding: 0;

    overflow: hidden;
}

.contact-image {
    position: relative;

    height: 700px;
}

.contact-image img {
    height: 100%;
}

.contact-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.25)
        );
}

.contact-content {
    padding: 80px 10%;

    background: var(--cream);

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.contact-content > p:not(.section-label) {
    max-width: 520px;

    margin-bottom: 30px;

    color: var(--muted);

    font-size: 14px;
}

/* CONTACT DETAILS */

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    padding: 16px 0;

    border-bottom: 1px solid var(--border);
}

.contact-item span {
    display: block;

    margin-bottom: 3px;

    color: var(--gold);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-item a,
.contact-item p {
    color: var(--dark-soft);

    font-size: 13px;
}

.contact-item a:hover {
    color: var(--gold);
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 22px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);

    z-index: 900;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    padding: 65px 7% 30px;

    background: var(--dark);

    color: white;
}

.footer-brand .brand-name {
    color: white;
}

.footer-brand p {
    margin-top: 8px;

    color: var(--gold-light);

    font-size: 10px;
    letter-spacing: 3px;

    text-transform: uppercase;
}

.footer-links {
    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 35px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    text-transform: uppercase;

    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 50px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.45);

    font-size: 9px;

    letter-spacing: 0.5px;
}

/* =====================================================
   REVEAL ANIMATIONS
===================================================== */

.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal {
    transform: translateY(35px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;

    transform: translate(0, 0);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .navbar {
        padding: 0 5%;
    }

    .nav-links {
        gap: 18px;
    }

    .product-grid,
    .wishlist-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .new-arrivals {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .new-arrival-image {
        height: 550px;
    }

    .about {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-image {
        height: 550px;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .contact-image {
        height: 550px;
    }

    .contact-content {
        min-height: 600px;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    body {
        width: 100%;
        overflow-x: hidden;
    }

    .navbar {
        height: 72px;

        padding: 0 5%;
    }

    .brand-name {
        font-size: 21px;
    }

    .brand-subtitle {
        font-size: 7px;

        letter-spacing: 3px;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .mobile-menu {
        top: 72px;
    }

    /* HERO */

    .hero {
        min-height: 90vh;
    }

    .hero-image img {
        object-position: center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.95),
                rgba(255, 255, 255, 0.58)
            );
    }

    .hero-content {
        width: 88%;

        margin-left: 7%;

        padding-top: 50px;
    }

    .small-title {
        font-size: 9px;

        letter-spacing: 3px;
    }

    .hero h1 {
        font-size: 65px;

        letter-spacing: -1px;
    }

    .hero-description {
        max-width: 90%;

        font-size: 12px;
    }

    .scroll-indicator {
        display: none;
    }

    /* SECTIONS */

    .section {
        padding: 80px 6%;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    /* FILTER */

    .collection-filters {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 10px;

        scrollbar-width: none;
    }

    .collection-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;

        white-space: nowrap;
    }

    /* PRODUCTS */

    .product-grid,
    .wishlist-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .product-info {
        padding: 21px;
    }

    .product-info h3 {
        font-size: 27px;
    }

    .product-image {
        aspect-ratio: 4 / 5;
    }

    /* NEW ARRIVALS */

    .new-arrivals {
        padding-left: 6%;
        padding-right: 6%;

        gap: 35px;
    }

    .new-arrival-image {
        height: 430px;
    }

    /* ABOUT */

    .about-image {
        height: 430px;

        padding-right: 15px;
        padding-bottom: 15px;
    }

    /* QUOTE */

    .quote-section {
        min-height: 500px;

        background-attachment: scroll;
    }

    .quote-mark {
        font-size: 75px;
    }

    /* CONTACT */

    .contact-image {
        height: 430px;
    }

    .contact-content {
        padding: 70px 7%;

        min-height: auto;
    }

    /* FOOTER */

    .footer-bottom {
        flex-direction: column;

        margin-top: 35px;
    }

    /* WHATSAPP */

    .whatsapp-float {
        width: 53px;
        height: 53px;

        right: 18px;
        bottom: 18px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 430px) {

    .brand-name {
        font-size: 19px;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        margin-left: 6%;
    }

    .hero h1 {
        font-size: 54px;
    }

    .hero-description {
        font-size: 11.5px;
    }

    .section-heading h2,
    .intro h2,
    .about h2,
    .new-arrival-content h2,
    .contact h2,
    .wishlist-section h2 {
        font-size: 48px;
    }

    .gold-button,
    .outline-button {
        padding: 13px 18px;

        font-size: 9px;
    }

    .new-arrival-image,
    .about-image,
    .contact-image {
        height: 370px;
    }

    .product-info h3 {
        font-size: 25px;
    }

    .wishlist-btn {
        width: 40px;
        height: 40px;

        font-size: 21px;
    }
}

/* =====================================================
   EXTRA SMALL MOBILE
===================================================== */

@media (max-width: 360px) {

    .brand-name {
        font-size: 17px;
    }

    .brand-subtitle {
        font-size: 6px;

        letter-spacing: 2px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-content {
        width: 90%;
    }

    .gold-button,
    .outline-button {
        padding: 12px 14px;

        font-size: 8px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h3 {
        font-size: 23px;
    }
}

/* =====================================================
   ACCESSIBILITY
===================================================== */

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold);

    outline-offset: 4px;
}

/* =====================================================
   PERFORMANCE
===================================================== */

.hero-image img,
.product-image img,
.new-arrival-image img,
.about-image img,
.contact-image img {
    will-change: transform;
}

/* Prevent accidental horizontal overflow */

section,
header,
footer,
main {
    max-width: 100%;
}/* ================================
   COLLECTIONS PAGE
================================ */

.collections-hero {
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 70px;
    background:
        linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.94)),
        url("images/image 12.jpeg") center/cover no-repeat;
}

.collections-hero-content {
    max-width: 760px;
}

.collections-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    margin: 12px 0 20px;
    font-weight: 800;
    color: #171717;
    letter-spacing: -1.5px;
}

.collections-hero p:not(.eyebrow) {
    max-width: 600px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}

.collection-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 45px;
    padding: 0 20px;
}

.filter-btn {
    border: 1px solid #dfd5bd;
    background: #fff;
    color: #333;
    padding: 11px 19px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #b9975b;
    border-color: #b9975b;
    color: #fff;
}

.collections-hero + #collections {
    padding-top: 80px;
}


/* Collection product grid */

#collections .product-grid {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px 100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#collections .product-card {
    background: #fff;
    border: 1px solid #eee8dc;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#collections .product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.09);
}

#collections .product-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f7f4;
}

#collections .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

#collections .product-card:hover .product-image img {
    transform: scale(1.05);
}

#collections .wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #e3dac9;
    background: rgba(255,255,255,0.94);
    color: #222;
    font-size: 23px;
    cursor: pointer;
    z-index: 2;
}

#collections .product-info {
    padding: 22px;
}

#collections .product-category {
    margin: 0 0 7px;
    color: #b08a4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

#collections .product-info h3 {
    margin: 0 0 12px;
    color: #171717;
    font-size: 21px;
    font-weight: 750;
}

#collections .product-price {
    margin: 0 0 18px;
    color: #777;
    font-size: 14px;
}

#collections .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 45px;
    border-radius: 3px;
    background: #171717;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#collections .whatsapp-btn:hover {
    background: #b9975b;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .collections-hero {
        min-height: 390px;
        padding: 105px 20px 55px;
    }

    .collections-hero h1 {
        font-size: 39px;
        letter-spacing: -0.8px;
    }

    .collections-hero p:not(.eyebrow) {
        font-size: 15px;
        line-height: 1.7;
    }

    .collections-hero + #collections {
        padding-top: 55px;
    }

    .collection-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 0 18px 8px;
        margin-bottom: 30px;
        scrollbar-width: none;
    }

    .collection-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        padding: 10px 16px;
    }

    #collections .product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 0 18px 70px;
    }

    #collections .product-info {
        padding: 19px;
    }

    #collections .product-info h3 {
        font-size: 19px;
    }
}


@media (min-width: 769px) and (max-width: 1050px) {

    #collections .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/* Collections page navbar fix */

.navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #eee8dc;
}

.nav-container {
    width: min(1200px, 92%);
    margin: 0 auto;
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 1.1;
}

.logo span {
    font-size: 19px;
    font-weight: 800;
    color: #171717;
}

.logo small {
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 2px;
    color: #b08a4b;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.nav-menu a {
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #b08a4b;
}


/* Mobile navbar */

@media (max-width: 768px) {

    .nav-container {
        min-height: 68px;
        width: 92%;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .logo span {
        font-size: 17px;
    }

    .logo small {
        font-size: 9px;
    }
}