/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #f2f0eb;
    font-family: Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input {
    font: inherit;
}

/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
.logo {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #b9a47a;
}

h2 {
    font-size: clamp(48px, 7vw, 100px);
    line-height: 0.95;
}

/* =========================================
   YUME VERA HEADER — FINAL
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;

    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.08);

    z-index: 1000;

    transition: transform 0.4s ease;
}


.site-header.header-hidden {
    transform: translateY(-100%);
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: relative;

    width: 100%;
    height: 82px;

    padding: 0 5.5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}


/* =========================================
   LEFT SIDE — SEARCH + CART
========================================= */

.header-left {
    display: flex;
    align-items: center;

    gap: 28px;

    width: 280px;
}


/* =========================================
   ICONS
========================================= */

.header-icon {
    position: relative;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d8d5cf;

    text-decoration: none;
}


.header-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: 0.3s ease;
}


.header-icon:hover {
    color: #b9a47a;
}


.header-icon:hover svg {
    transform: scale(1.05);
}


/* =========================================
   CART BADGE
========================================= */

#cart-count {
    position: absolute;

    top: -6px;
    right: -8px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b9a47a;
    color: #080808;

    font-family: Arial, sans-serif;

    font-size: 9px;
    font-weight: 600;

    line-height: 1;

    box-sizing: border-box;

    opacity: 0;

    transform: scale(0.7);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


#cart-count.has-items {
    opacity: 1;
    transform: scale(1);
}


/* =========================================
   CENTER LOGO
========================================= */

.header-logo {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    color: #f2f0eb;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;

    font-weight: 400;

    letter-spacing: 4px;

    white-space: nowrap;

    z-index: 2;
}


/* =========================================
   DESKTOP NAV
========================================= */

.desktop-nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: clamp(25px, 3vw, 55px);

    width: 280px;
}


.desktop-nav a {
    color: #d8d5cf;

    text-decoration: none;

    font-size: 10px;

    letter-spacing: 2.5px;

    white-space: nowrap;

    transition: color 0.3s ease;
}


.desktop-nav a:hover {
    color: #b9a47a;
}


/* =========================================
   HAMBURGER
========================================= */

.hamburger {
    display: none;

    width: 38px;
    height: 38px;

    padding: 7px;

    border: none;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 6px;

    z-index: 10;
}


.hamburger span {
    display: block;

    width: 22px;
    height: 1px;

    background: #f2f0eb;

    transition: 0.3s ease;
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    background: #080808;

    z-index: 2000;

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    visibility: hidden;

    transform: translateY(-20px);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease;
}


.mobile-menu.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* =========================================
   MOBILE CLOSE X
========================================= */

.mobile-menu-close {
    position: absolute;

    top: 20px;
    right: 6%;

    width: 40px;
    height: 40px;

    padding: 0;

    border: none;

    background: transparent;

    color: #f2f0eb;

    font-family: Arial, sans-serif;

    font-size: 38px;

    font-weight: 200;

    line-height: 1;

    cursor: pointer;
}


/* =========================================
   MOBILE LINKS
========================================= */

.mobile-menu nav {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 27px;
}


.mobile-menu nav a {
    color: #f2f0eb;

    text-decoration: none;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 25px;

    letter-spacing: 2px;

    transition: color 0.3s ease;
}


.mobile-menu nav a:hover {
    color: #b9a47a;
}


body.menu-open {
    overflow: hidden;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .site-header {
        height: 70px;
    }


    .navbar {
        height: 70px;

        padding: 0 6%;
    }


    /* Hide desktop navigation */

    .desktop-nav {
        display: none;
    }


    /* Search + cart remain visible */

    .header-left {
        width: auto;

        gap: 18px;
    }


    .header-icon {
        width: 32px;
        height: 32px;
    }


    .header-icon svg {
        width: 25px;
        height: 25px;
    }


    /* Logo */

    .header-logo {
        position: static;

        transform: none;

        margin-left: 18px;

        font-size: 21px;

        letter-spacing: 3px;
    }


    /* Hamburger */

    .hamburger {
        display: flex;
    }

}

/* =========================
   FOOTER
========================= */

.site-footer {
    background: #050505;
    border-top: 1px solid #1c1c1c;

    padding: 90px 7% 30px;
}


/* FOOTER CONTENT */

.footer-container {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 80px;
}


/* BRAND */

.footer-brand h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    font-weight: 400;

    letter-spacing: 5px;
}

.footer-brand p {
    margin-top: 15px;

    color: #666;

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: #b9a47a;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;

    color: #777;

    font-size: 12px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: #f2f0eb;

    transform: translateX(4px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid #1c1c1c;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #555;

    font-size: 10px;
    letter-spacing: 1px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #050505;
    border-top: 1px solid #1c1c1c;

    padding: 90px 7% 30px;
}


/* FOOTER CONTENT */

.footer-container {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 80px;
}


/* BRAND */

.footer-brand h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    font-weight: 400;

    letter-spacing: 5px;
}

.footer-brand p {
    margin-top: 15px;

    color: #666;

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* FOOTER COLUMNS */

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: #b9a47a;

    font-size: 10px;
    font-weight: 400;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;

    color: #777;

    font-size: 12px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.footer-column a:hover {
    color: #f2f0eb;

    transform: translateX(4px);
}


/* FOOTER BOTTOM */

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid #1c1c1c;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #555;

    font-size: 10px;
    letter-spacing: 1px;
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 100vh;

    /* IMPORTANT: keeps content below fixed header */
    padding-top: 120px;

    box-sizing: border-box;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
}


/* HERO CONTENT */

.hero-content {
    position: relative;
    z-index: 2;

    max-width: 650px;

    margin-left: 7%;
    padding-bottom: 40px;
}

.hero-eyebrow {
    font-size: 12px;
    letter-spacing: 7px;
    margin-bottom: 30px;
    color: #b9a47a;
}

.hero h1 {
    font-size: clamp(70px, 10vw, 150px);
    line-height: 0.85;
    letter-spacing: -4px;
}

.hero-description {
    max-width: 420px;
    margin-top: 35px;
    color: #aaa;
    line-height: 1.8;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-size: 11px;
    letter-spacing: 2px;
    transition: 0.4s ease;
}

.btn-primary {
    background: #f2f0eb;
    color: #080808;
}

.btn-primary:hover {
    background: #b9a47a;
}

.btn-secondary {
    border: 1px solid #555;
    color: #f2f0eb;
}

.btn-secondary:hover {
    border-color: #f2f0eb;
}



.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 0 8%;

    background-image: url("images/Gemini_Generated_Image_smb7bcsmb7bcsmb7-clean.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 9px;
    letter-spacing: 3px;
    color: #777;
}

.scroll-line {
    width: 60px;
    height: 1px;
    background: #555;
}

/* =========================
   INTRO
========================= */

.intro {
    min-height: 70vh;
    padding: 180px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.intro h2 {
    margin-top: 30px;
}

.intro-text {
    max-width: 550px;
    margin-top: 35px;
    color: #888;
    line-height: 1.8;
}

/* =========================
   COLLECTION
========================= */


.view-all-card {
    flex: 0 0 calc((100% - 60px) / 3);

    height: 560px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    border: 1px solid #222;

    color: #f2f0eb;

    text-align: center;

    transition: background 0.4s ease;
}

.view-all-card span {
    font-size: 10px;
    letter-spacing: 4px;
    color: #777;
}

.view-all-card strong {
    margin-top: 12px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.view-all-card:hover {
    background: #111;
}



.collection {
    padding: 120px 8%;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 70px;
}

.section-heading h2 {
    margin-top: 25px;
}

.text-link {
    font-size: 11px;
    letter-spacing: 2px;
    border-bottom: 1px solid #555;
    padding-bottom: 8px;
    transition: 0.3s;
}

.text-link:hover {
    border-color: #b9a47a;
    color: #b9a47a;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    cursor: pointer;
}

.product-image {
    height: 500px;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    margin-top: 22px;
    font-size: 17px;
    letter-spacing: 2px;
}

.product-card p {
    margin-top: 8px;
    color: #777;
    font-size: 12px;
}

.product-card span {
    display: block;
    margin-top: 12px;
    color: #b9a47a;
}

/* =========================
   PRODUCT GRID
========================= */

.product-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 70px 24px;

    width: 100%;
}



/* =========================
   PRODUCT CARD
========================= */

.product-card {

    min-width: 0;

}


/* =========================
   PRODUCT IMAGE
========================= */

.product-image {

    display: block;

    width: 100%;

    aspect-ratio: 1 / 1.15;

    overflow: hidden;

    background: #111;

    cursor: pointer;

}


.product-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;

}


/* Slight zoom on desktop */

.product-image:hover img {

    transform: scale(1.03);

}



/* =========================
   PRODUCT INFO
========================= */

.product-info {

    padding: 22px 5px 0;

}


.product-info h3 {

    margin: 0 0 9px;

    font-family: Georgia, serif;

    font-size: 22px;

    font-weight: 400;

    letter-spacing: 0.02em;

}


.product-info p {

    margin: 0 0 14px;

    color: #777;

    font-size: 12px;

    letter-spacing: 0.14em;

}


.product-info span {

    color: #b99a4a;

    font-size: 15px;

    letter-spacing: 0.08em;

}

/*============================
    add to cart and buy now button
    ==========================*/

    
  /* =========================================
   HOME — FEATURED PRODUCT CARDS
   Reuses tokens from style.css:
   text #f2f0eb, gold #b9a47a, border #333
========================================= */

.home-product-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    margin-top: 18px;
}

.home-product-actions button {
    height: 44px;

    border: 1px solid #333;

    background: transparent;

    color: #f2f0eb;

    font-size: 9px;
    letter-spacing: 2px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.home-add-cart:hover {
    border-color: #b9a47a;

    color: #b9a47a;
}

.home-buy-now {
    background: #f2f0eb !important;

    color: #080808 !important;

    border-color: #f2f0eb !important;
}

.home-buy-now:hover {
    background: #b9a47a !important;

    border-color: #b9a47a !important;
}


@media (max-width: 768px) {

    .home-product-actions button {
        height: 46px;

        font-size: 10px;
    }

}


/* =========================================
   OVERRIDE — style.css has an existing
   "#featured-products button { display: none
   !important; }" rule (leftover from removing
   old slider arrows). It's ID-scoped, so a
   plain class rule can't beat it — this has
   to match that same specificity to win.
========================================= */

#featured-products .home-product-actions button {
    display: block !important;
}


/* =========================
   VIEW ALL
========================= */

.view-all-products {

    display: flex;

    justify-content: center;

    margin-top: 70px;

}


.view-all-btn {

    display: inline-flex;

    align-items: center;

    gap: 25px;

    padding: 16px 26px;

    border: 1px solid #555;

    color: #eee;

    text-decoration: none;

    font-size: 11px;

    letter-spacing: 0.22em;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;

}


.view-all-btn span {

    font-size: 17px;

    transition: transform 0.3s ease;

}


.view-all-btn:hover {

    background: #eee;

    color: #080808;

    border-color: #eee;

}


.view-all-btn:hover span {

    transform: translateX(5px);

}


/* PRODUCT INFO */

.product-info {
    padding: 20px 4px 10px;
}


.product-info h3 {
    margin: 0 0 8px;

    font-size: 17px;

    font-weight: 500;

    letter-spacing: 0.03em;
}


.product-info p {
    margin: 0 0 12px;

    color: #777;

    font-size: 12px;

    letter-spacing: 0.05em;
}


.product-info span {
    font-size: 14px;

    color: #d8d5cf;
}
/* IMAGE AREA */

.product-slider {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: transparent;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;

    transform: scale(1.02);

    transition:
        opacity 0.7s ease,
        transform 0.8s ease;
}

.product-slide.active {
    opacity: 1;
    transform: scale(1);
}



/* PRODUCT INFORMATION */

.product-card h3 {
    margin-top: 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 400;

    letter-spacing: 2px;
}

.product-card p {
    margin-top: 9px;

    color: #777;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.product-card span {
    display: block;

    margin-top: 14px;

    color: #b9a47a;

    font-size: 12px;

    letter-spacing: 2px;
}

/* =========================
   REMOVE OLD SLIDER ARROWS
========================= */

#featured-products .slider-btn,
#featured-products .prev,
#featured-products .next,
#featured-products button {
    display: none !important;
}



/* =========================
   WHY YUME VERA
========================= */

.why-us {
    padding: 150px 8%;
}

.why-us > h2 {
    margin-top: 25px;
    margin-bottom: 100px;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #222;
}

.feature {
    padding: 40px 25px 40px 0;
    border: 1px solid #222;
}

.feature {
    padding-left: 25px;
}

.feature span {
    color: #b9a47a;
    font-size: 11px;
}

.feature h3 {
    margin-top: 45px;
    font-size: 14px;
    letter-spacing: 2px;
}

.feature p {
    margin-top: 20px;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

/* =========================
   STORY
========================= */

.story {
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.story-image {
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #111;
}

.story-content h2 {
    margin: 25px 0;
}

.story-content p:not(.section-label) {
    color: #888;
    max-width: 400px;
    line-height: 1.8;
    margin-bottom: 35px;
}


/* =========================
   NEWSLETTER
========================= */

.newsletter {
    padding: 150px 20px;
    text-align: center;
}

.newsletter h2 {
    margin: 25px 0;
}

.newsletter > p:not(.section-label) {
    color: #777;
    margin-bottom: 35px;
}

.newsletter-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    border-bottom: 1px solid #555;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 18px 0;
    color: white;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: #b9a47a;
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 10px;
}



/* =================================
   PRODUCT PAGE
================================= */

.product-page {
    min-height: 100vh;
    padding: 140px 8% 100px;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 90px;

    align-items: center;
}


/* =================================
   PRODUCT IMAGES
================================= */

.product-page-images {
    width: 100%;
}

.product-main-image {
    width: 100%;
    height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: #0d0d0d;
}

.product-main-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.6s ease;
}

.product-main-image:hover img {
    transform: scale(1.04);
}


/* THUMBNAILS */

.product-thumbnails {
    display: flex;

    gap: 12px;

    margin-top: 15px;
}

.product-thumbnail {
    width: 85px;
    height: 85px;

    padding: 0;

    border: 1px solid #222;

    background: #0d0d0d;

    cursor: pointer;

    opacity: 0.5;

    transition:
        opacity 0.3s ease,
        border-color 0.3s ease;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}

.product-thumbnail:hover {
    opacity: 0.8;
}

.product-thumbnail.active {
    opacity: 1;

    border-color: #b9a47a;
}


/* =================================
   PRODUCT INFORMATION
================================= */

.product-page-info {
    max-width: 520px;
}

.product-page-label {
    color: #b9a47a;

    font-size: 10px;

    letter-spacing: 5px;

    margin-bottom: 25px;
}

.product-page-info h1 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(55px, 6vw, 95px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: -2px;
}

.product-inspiration {
    margin-top: 20px;

    color: #d6b96c;

    font-size: 11px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* DIVIDER */

.product-divider {
    width: 100%;

    height: 1px;

    background: #222;

    margin: 35px 0;
}


/* DESCRIPTION */

.product-description {
    max-width: 450px;

    color: #999;

    font-size: 14px;

    line-height: 1.9;
}

/* =================================
   PRODUCT ACTION BUTTONS
================================= */

.product-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8px;

    margin-top: 18px;
}

.product-actions button {
    height: 45px;

    border: 1px solid #333;

    background: transparent;

    color: #f2f0eb;

    font-size: 9px;

    letter-spacing: 2px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


/* ADD TO CART */

.product-add-cart:hover {
    border-color: #b9a47a;

    color: #b9a47a;
}


/* BUY NOW */

.product-buy-now {
    background: #f2f0eb !important;

    color: #080808 !important;

    border-color: #f2f0eb !important;
}

.product-buy-now:hover {
    background: #b9a47a !important;

    border-color: #b9a47a !important;
}

/* =================================
   DETAILS
================================= */

.product-details {
    display: flex;

    gap: 60px;

    margin-top: 40px;

    padding: 25px 0;

    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.product-details div {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.product-details span {
    color: #666;

    font-size: 9px;

    letter-spacing: 3px;
}

.product-details strong {
    color: #f2f0eb;

    font-size: 11px;

    font-weight: 400;

    letter-spacing: 1px;
}


/* =================================
   PRICE
================================= */

.product-price {
    display: flex;

    align-items: baseline;

    gap: 10px;

    margin-top: 30px;
}

.product-price span {
    color: #f2f0eb;

    font-size: 25px;

    letter-spacing: 1px;
}

.product-price small {
    color: #666;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =================================
   QUANTITY
================================= */

.quantity {
    width: 130px;

    height: 45px;

    margin-top: 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: 1px solid #2a2a2a;
}

.quantity button {
    width: 40px;
    height: 100%;

    border: none;

    background: transparent;

    color: #f2f0eb;

    cursor: pointer;

    font-size: 18px;
}

.quantity span {
    color: #f2f0eb;

    font-size: 12px;
}


/* =================================
   BUTTONS
================================= */

.buy-now,
.add-to-cart {
    width: 100%;

    height: 55px;

    margin-top: 15px;

    border: none;

    font-size: 10px;

    letter-spacing: 3px;

    cursor: pointer;

    transition: 0.35s ease;
}

.buy-now {
    margin-top: 30px;

    background: #f2f0eb;

    color: #080808;
}

.buy-now:hover {
    background: #b9a47a;
}

.add-to-cart {
    background: transparent;

    border: 1px solid #444;

    color: #f2f0eb;
}

.add-to-cart:hover {
    border-color: #f2f0eb;
}


/* =================================
   PRODUCT NOT FOUND
================================= */

.product-not-found {
    min-height: 80vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 30px;
}

.product-not-found h1 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 60px;

    font-weight: 400;
}

.product-not-found a {
    color: #b9a47a;

    font-size: 10px;

    letter-spacing: 3px;
}



/* =========================
   ABOUT HERO
========================= */

.about-hero {
    min-height: 100vh;

    display: flex;
    align-items: flex-end;

    padding: 160px 7% 100px;

    box-sizing: border-box;

    background-image:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.75)
        ),
        url("../images/about-hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.about-hero-content {
    max-width: 850px;
}


.about-hero h1 {
    font-size: clamp(80px, 12vw, 180px);
    line-height: 0.82;

    letter-spacing: -0.05em;

    margin: 25px 0 40px;
}


.about-hero-text {
    max-width: 450px;

    font-size: 18px;
    line-height: 1.7;

    color: #aaa;
}

/* =========================
   ABOUT STORY
========================= */

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;

    min-height: 850px;
}


.about-story-image {
    width: 100%;
    height: 100%;
}


.about-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


.about-story-content {
    background: #111;

    padding: 100px 10%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}


.about-story-content h2 {
    font-size: clamp(60px, 7vw, 110px);
    line-height: 0.85;

    letter-spacing: -0.04em;

    margin: 30px 0 45px;
}


.about-story-content p {
    max-width: 500px;

    color: #999;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 20px;
}


/* =========================
   PHILOSOPHY
========================= */

.about-philosophy {
    display: grid;
    grid-template-columns: 1fr 1fr;

    padding: 150px 7%;

    gap: 100px;
}


.philosophy-heading h2 {
    font-size: clamp(70px, 9vw, 140px);

    line-height: 0.82;

    letter-spacing: -0.05em;

    margin-top: 30px;
}


.philosophy-text {
    align-self: center;

    max-width: 550px;
}


.philosophy-text p {
    color: #999;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 30px;
}




/* =========================
   CONTACT HERO
========================= */

.contact-hero {
    min-height: 75vh;

    display: flex;
    align-items: flex-end;

    padding: 150px 7% 90px;

    box-sizing: border-box;

    background-image:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.75)
        ),
        url("../images/contact-hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.contact-hero-content {
    max-width: 850px;
}


.contact-hero h1 {
    font-size: clamp(80px, 12vw, 180px);

    line-height: 0.82;

    letter-spacing: -0.05em;

    margin: 25px 0 35px;
}


.contact-hero-content > p:last-child {
    max-width: 470px;

    color: #aaa;

    font-size: 18px;
    line-height: 1.7;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    padding: 140px 7%;
}


.contact-info h2 {
    font-size: clamp(60px, 7vw, 110px);

    line-height: 0.85;

    letter-spacing: -0.04em;

    margin: 30px 0 70px;
}


.contact-details {
    display: flex;
    flex-direction: column;

    gap: 35px;
}


.contact-detail {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.contact-detail span {
    font-size: 11px;

    letter-spacing: 0.25em;

    color: #b8953d;
}


.contact-detail a,
.contact-detail p {
    margin: 0;

    color: #aaa;

    font-size: 16px;

    line-height: 1.6;

    text-decoration: none;
}


.contact-detail a {
    transition: color 0.3s ease;
}


.contact-detail a:hover {
    color: #fff;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form-wrapper {
    max-width: 600px;

    width: 100%;
}


.contact-form {
    margin-top: 40px;

    display: flex;
    flex-direction: column;

    gap: 30px;
}


.form-group {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.form-group label {
    font-size: 11px;

    letter-spacing: 0.2em;

    color: #b8953d;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 16px 0;

    background: transparent;

    border: none;

    border-bottom: 1px solid #333;

    color: #fff;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition: border-color 0.3s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: #b8953d;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}


.form-group textarea {
    resize: vertical;

    min-height: 140px;
}


.form-group select {
    cursor: pointer;
}


.form-group select option {
    background: #111;

    color: #fff;
}


.contact-form .btn {
    align-self: flex-start;

    margin-top: 10px;

    cursor: pointer;
}

/* =========================
   CONTACT CTA
========================= */

.contact-cta {
    min-height: 600px;

    display: flex;
    align-items: center;

    padding: 100px 7%;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.75)
        ),
        url("../images/contact-cta.jpg");

    background-size: cover;

    background-position: center;
}


.contact-cta h2 {
    font-size: clamp(70px, 9vw, 140px);

    line-height: 0.82;

    letter-spacing: -0.05em;

    margin: 30px 0 45px;
}


/* =========================================
   CREATE YOUR PERFUME — COMING SOON
========================================= */

.coming-soon {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 140px 6% 100px;

    background:
        radial-gradient(
            circle at center,
            rgba(185, 164, 122, 0.07),
            transparent 55%
        ),
        #080808;

    box-sizing: border-box;
}


.coming-soon-content {
    width: 100%;
    max-width: 760px;

    text-align: center;
}


.coming-soon .section-label {
    margin-bottom: 25px;

    color: #b9a47a;

    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
}


.coming-soon h1 {
    margin: 0;

    color: #f2f0eb;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(55px, 8vw, 105px);

    font-weight: 400;

    line-height: 0.95;

    letter-spacing: 4px;
}


.coming-soon-line {
    width: 60px;
    height: 1px;

    margin: 45px auto;

    background: #b9a47a;
}


.coming-soon-title {
    margin: 0 0 22px;

    color: #f2f0eb;

    font-size: 14px;

    line-height: 1.8;

    letter-spacing: 4px;
}


.coming-soon-text {
    max-width: 540px;

    margin: 0 auto 35px;

    color: #aaa7a0;

    font-size: 13px;

    line-height: 2;

    letter-spacing: 0.5px;
}


.coming-soon-badge {
    display: inline-block;

    padding: 12px 25px;

    margin-bottom: 35px;

    border: 1px solid rgba(185, 164, 122, 0.5);

    color: #b9a47a;

    font-size: 9px;

    letter-spacing: 3px;
}


.coming-soon-btn {
    display: block;

    width: fit-content;

    margin: 0 auto;

    padding: 17px 35px;

    border: 1px solid #b9a47a;

    color: #f2f0eb;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 2.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.coming-soon-btn:hover {
    background: #b9a47a;

    color: #080808;
}







/*===============================================================================
    Tablet
    ============================================================================*/

@media (max-width: 1000px) {

    .product-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 50px 20px;

    }

}


/* ==========================================================================================================================================================================
   MOBILE
=========================================================================================================================================================================== */



@media (max-width: 768px) {

    .hero {
        min-height: 100svh;
        padding: 120px 7%;
        align-items: flex-start;
        background-image: url("images/hero-banner.png");

        background-size: cover;

        background-position: center;

        background-repeat: no-repeat;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        margin-top: 50px;
    }

    .hero h1 {
        font-size: 70px;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-product {
        width: 70%;
        height: 45%;
        right: 15%;
        top: 55%;
        opacity: 0.45;
    }

    .hero-scroll {
        display: none;
    }

    .intro {
        padding: 120px 7%;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 450px;
    }

    .custom-section {
        padding: 120px 7%;
    }

    .features {
        grid-template-columns: 1fr 1fr;
    }

    .feature {
        border-bottom: 1px solid #222;
    }

    .story {
        grid-template-columns: 1fr;
    }

    .story-image {
        height: 500px;
    }

    .newsletter {
        padding: 120px 7%;
    }




/* =================================
   MOBILE MENU FIX
================================= */

/* Hamburger */

.hamburger {
    position: relative;
    z-index: 1001;
    width: 42px;
    height: 42px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 7px;

    background: transparent;
    border: none;
    padding: 0;

    cursor: pointer;
}


.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: #f5f2ec;

    transition: 0.3s ease;
}


/* =================================
   HIDE HAMBURGER WHEN MENU OPEN
================================= */

body.menu-open .hamburger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* =================================
   CLOSE BUTTON
================================= */

.mobile-menu-close {
    position: absolute;
    top: 18px;
    right: 25px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;
    border: none;

    color: #f5f2ec;

    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: 300;
    line-height: 1;

    padding: 0;

    cursor: pointer;
}


/* =================================
   MOBILE MENU FONT
================================= */

.mobile-menu nav a {

    font-family: Georgia, "Times New Roman", serif;

    font-size: 12px;
    font-weight: 400;

    letter-spacing: 0.02em;

    line-height: 1;

    color: #f5f2ec;

    text-decoration: none;

    transition:
        color 0.3s ease,
        opacity 0.3s ease;
}


/* Hover */

.mobile-menu nav a:hover {
    color: #c9aa5b;
}


/* =================================
   MOBILE MENU SPACING
================================= */

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 48px;
}


/* =================================
   MOBILE MENU
================================= */

.mobile-menu {
    position: fixed;

    inset: 0;

    z-index: 1000;

    background: #080808;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;

    overflow-y: auto;
}


.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =================================
   MOBILE MENU CONTENT
================================= */

.mobile-menu nav {
    min-height: 100vh;

    padding: 120px 30px 60px;
}

    /* =================================
   PRODUCT PAGE — MOBILE
================================= */

.product-page {
    min-height: auto;

    padding: 120px 7% 80px;

    display: flex;

    flex-direction: column;

    gap: 50px;

    align-items: stretch;
}

.product-main-image {
    height: 450px;
}

.product-thumbnails {
    gap: 10px;
}

.product-thumbnail {
    width: 70px;
    height: 70px;
}

.product-page-info {
    max-width: none;
}

.product-page-info h1 {
    font-size: 58px;
}

.product-details {
    gap: 40px;
}

.product-description {
    font-size: 13px;
}

.buy-now,
.add-to-cart {
    height: 52px;
}


}


/* =========================================
   PERFUMES PAGE
========================================= */

.perfumes-hero {
    min-height: 70vh;

    display: flex;
    align-items: center;

    padding: 150px 8% 100px;

    position: relative;

    background:
        linear-gradient(
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.65)
        ),
        url("../images/hero-desktop.jpg")
        center / cover no-repeat;
}


.perfumes-hero-content {
    max-width: 700px;
}


.perfumes-hero h1 {
    margin: 20px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(55px, 8vw, 110px);

    line-height: 0.9;

    font-weight: 400;

    letter-spacing: -3px;
}


.perfumes-hero-content > p:last-child {
    max-width: 450px;

    color: #aaa;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   ALL PRODUCTS
========================================= */

.all-perfumes {
    padding: 120px 7%;
}


.perfumes-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    margin-bottom: 70px;
}


.perfumes-heading h2 {
    margin-top: 15px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(40px, 5vw, 70px);

    font-weight: 400;
}


.perfume-count {
    color: #666;

    font-size: 9px;

    letter-spacing: 3px;
}


/* =========================================
   PRODUCT GRID
========================================= */

.all-products-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 80px 30px;
}


/* =========================================
   PRODUCT CARD
========================================= */

.full-product-card {
    min-width: 0;
}


/* IMAGE */

.full-product-image {
    position: relative;

    width: 100%;

    height: 560px;

    overflow: hidden;

    background: #0d0d0d;
}


.full-slides {
    width: 100%;
    height: 100%;

    position: relative;
}


.full-product-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;

    transition:
        opacity 0.6s ease,
        transform 0.7s ease;
}


.full-product-slide.active {
    opacity: 1;
}


/* IMAGE ARROWS */

.full-prev,
.full-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 32px;
    height: 32px;

    border: 1px solid rgba(255,255,255,0.2);

    background: rgba(0,0,0,0.25);

    color: white;

    cursor: pointer;

    opacity: 0;

    transition: opacity 0.3s ease;
}


.full-prev {
    left: 12px;
}


.full-next {
    right: 12px;
}


.full-product-image:hover
.full-prev,
.full-product-image:hover
.full-next {
    opacity: 1;
}


/* DOTS */

.full-dots {
    position: absolute;

    bottom: 15px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 7px;
}


.full-dot {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: rgba(255,255,255,0.3);

    cursor: pointer;
}


.full-dot.active {
    background: #f2f0eb;

    transform: scale(1.4);
}


/* VIEW PRODUCT */

.view-product-overlay {
    position: absolute;

    bottom: 25px;

    left: 50%;

    transform:
        translateX(-50%)
        translateY(15px);

    padding: 13px 22px;

    background: #f2f0eb;

    color: #080808;

    text-decoration: none;

    font-size: 9px;

    letter-spacing: 2px;

    opacity: 0;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.full-product-image:hover
.view-product-overlay {
    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);
}


/* =========================================
   PRODUCT INFO
========================================= */

.full-product-info {
    padding-top: 25px;
}


.full-product-info h3 {
    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 24px;

    font-weight: 400;

    letter-spacing: 1px;
}


.full-inspiration {
    margin-top: 8px;

    color: #777;

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.full-product-meta {
    margin-top: 18px;
}


.full-product-meta > p {
    color: #888;

    font-size: 11px;

    line-height: 1.7;

    max-width: 350px;
}


.full-product-price {
    margin-top: 15px;

    display: flex;

    align-items: baseline;

    gap: 12px;
}


.full-product-price span {
    color: #f2f0eb;

    font-size: 16px;
}


.full-product-price small {
    color: #666;

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================
   ACTION BUTTONS
========================================= */

.full-product-actions {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 8px;

    margin-top: 20px;
}


.full-product-actions button {
    height: 45px;

    border: 1px solid #333;

    background: transparent;

    color: #f2f0eb;

    font-size: 8px;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.3s ease;
}


.full-add-cart:hover {
    border-color: #b9a47a;

    color: #b9a47a;
}


.full-buy-now {
    background: #f2f0eb !important;

    color: #080808 !important;

    border-color: #f2f0eb !important;
}


.full-buy-now:hover {
    background: #b9a47a !important;

    border-color: #b9a47a !important;
}


/* =========================================
   CUSTOM PERFUME
========================================= */

.perfumes-custom {
    padding: 150px 8%;

    text-align: center;

    border-top: 1px solid #222;
}


.perfumes-custom h2 {
    margin: 20px 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(45px, 7vw, 90px);

    line-height: 0.9;

    font-weight: 400;
}


.perfumes-custom > p:not(.section-label) {
    color: #888;

    margin-bottom: 30px;
}


.perfumes-custom > span {
    display: block;

    margin-top: 20px;

    color: #666;

    font-size: 9px;

    letter-spacing: 2px;
}


/*========================================
    WHY US
    ==================================== */
    .features {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #222;
}
/* =========================================
   FOOTER RESPONSIVE FIX
========================================= */

html,
body {
    overflow-x: hidden;
}


/* ---------- DESKTOP ---------- */

#footer {
    width: 100%;
    overflow: hidden;
}

#footer > * {
    max-width: 100%;
}


/* ---------- MOBILE ---------- */

@media (max-width: 768px) {

    #footer {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    #footer * {
        max-width: 100%;
        box-sizing: border-box;
    }


    /* Force footer's main layout vertical */

    #footer > div,
    #footer section,
    #footer .footer-container,
    #footer .footer-content,
    #footer .footer-inner {
        width: 100% !important;
        max-width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        box-sizing: border-box;
    }


    /* Any footer grid */

    #footer .footer-grid,
    #footer .footer-links,
    #footer .footer-columns {
        width: 100% !important;

        display: grid !important;

        grid-template-columns: 1fr 1fr !important;

        gap: 40px 25px !important;
    }


    /* Individual footer columns */

    #footer .footer-column,
    #footer .footer-section {
        width: 100% !important;
        min-width: 0 !important;
    }


    /* Footer headings */

    #footer h1,
    #footer h2,
    #footer h3 {
        max-width: 100%;

        word-wrap: break-word;
    }


    /* Footer links */

    #footer a {
        max-width: 100%;

        white-space: normal !important;

        word-break: normal;

        overflow-wrap: anywhere;
    }


    /* Footer paragraphs */

    #footer p {
        max-width: 100%;

        white-space: normal !important;

        line-height: 1.7;
    }


    /* Footer bottom */

    #footer .footer-bottom {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        align-items: flex-start !important;

        gap: 15px !important;

        margin-top: 50px;
    }


    /* If footer uses rows */

    #footer .footer-row {
        width: 100% !important;

        display: flex !important;

        flex-direction: column !important;

        gap: 30px !important;
    }


    /* Logo / brand */

    #footer .footer-logo,
    #footer .footer-brand {
        width: 100% !important;

        max-width: 100% !important;
    }

}


/* ---------- SMALL PHONES ---------- */

@media (max-width: 480px) {

    #footer .footer-grid,
    #footer .footer-links,
    #footer .footer-columns {
        grid-template-columns: 1fr !important;

        gap: 35px !important;
    }

}


/* =========================================
   MOBILE PRODUCT SLIDER FIX
========================================= */

@media (max-width: 768px) {

    .product-slider-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .product-grid {
        display: flex !important;

        width: 100% !important;

        gap: 0 !important;

        overflow-x: hidden !important;

        scroll-behavior: smooth;

        margin: 0;
        padding: 0;
    }


    /* ONE PRODUCT PER SLIDE */

    .product-card,
    .view-all-card {
        flex: 0 0 100% !important;

        width: 100% !important;

        min-width: 100% !important;

        box-sizing: border-box;
    }


    /* PRODUCT IMAGE AREA */

    .product-slider {
        width: 100%;

        height: 500px;

        background: transparent;

        overflow: hidden;
    }


    .product-slide {
        width: 100%;
        height: 100%;

        object-fit: contain;

        padding: 0;

        transform: scale(1);

        opacity: 0;

        transition:
            opacity 0.5s ease,
            transform 0.5s ease;
    }


    .product-slide.active {
        opacity: 1;

        transform: scale(1);
    }


    /* ARROWS */

    .slider-btn {
        position: absolute;

        top: 50%;

        width: 40px;
        height: 40px;

        display: flex;

        align-items: center;
        justify-content: center;

        opacity: 1 !important;

        background: rgba(0, 0, 0, 0.35);

        border: 1px solid rgba(255,255,255,0.25);

        color: #fff;

        z-index: 5;
    }


    .slider-btn.prev {
        left: 10px;

        transform: translateY(-50%);
    }


    .slider-btn.next {
        right: 10px;

        transform: translateY(-50%);
    }


    /* DOTS */

    .slider-dots {
        bottom: 15px;

        z-index: 6;
    }


    /* PRODUCT TEXT */

    .product-card h3 {
        margin-top: 25px;

        font-size: 21px;
    }


    .product-card p {
        margin-top: 8px;

        font-size: 9px;
    }


    .product-card > span {
        margin-top: 12px;

        font-size: 11px;
    }




    /* VIEW ALL CARD */

    .view-all-card {
        height: 500px;

        display: flex;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        background: #0b0b0b;

        border: none;
    }

}

@media (max-width: 768px) {

    /* Small image-switch arrows */
    .product-slider .slider-btn {
        width: 24px;
        height: 24px;

        padding: 0;

        font-size: 14px;
        line-height: 1;

        background: transparent;

        border: none;

        color: rgba(255, 255, 255, 0.65);

        opacity: 0.7 !important;

        z-index: 5;
    }

    .product-slider .slider-btn.prev {
        left: 6px;
    }

    .product-slider .slider-btn.next {
        right: 6px;
    }


    /* Keep collection arrows separate */
    .collection-arrow {
        width: 32px;
        height: 32px;

        font-size: 15px;

        background: rgba(0, 0, 0, 0.35);

        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .collection-prev {
        left: 5px;
    }

    .collection-next {
        right: 5px;
    }

}


/*perfume page mobile*/

@media (max-width: 768px) {

    .perfumes-hero {
        min-height: 70svh;

        padding: 130px 7% 80px;

        background-position: center;
    }


    .perfumes-hero h1 {
        font-size: 58px;

        letter-spacing: -2px;
    }


    .perfumes-hero-content > p:last-child {
        font-size: 12px;
    }


    .all-perfumes {
        padding: 80px 7%;
    }


    .perfumes-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 20px;

        margin-bottom: 45px;
    }


    .perfumes-heading h2 {
        font-size: 48px;
    }


    .all-products-grid {
        grid-template-columns: 1fr;

        gap: 70px;
    }


    .full-product-image {
        height: 500px;
    }


    .full-prev,
    .full-next {
        width: 25px;
        height: 25px;

        font-size: 13px;

        opacity: 0.7;
    }


    .full-prev {
        left: 6px;
    }


    .full-next {
        right: 6px;
    }


    .view-product-overlay {
        opacity: 1;

        transform:
            translateX(-50%)
            translateY(0);

        bottom: 20px;

        padding: 11px 18px;
    }


    .full-product-info h3 {
        font-size: 22px;
    }


    .full-product-actions {
        grid-template-columns: 1fr 1fr;
    }


    .perfumes-custom {
        padding: 100px 7%;
    }


    .perfumes-custom h2 {
        font-size: 50px;
    }

}




/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .about-hero {
        min-height: 100svh;

        padding: 130px 24px 70px;

        align-items: flex-end;

        background-position: center;
    }


    .about-hero h1 {
        font-size: clamp(65px, 18vw, 100px);

        line-height: 0.85;

        margin: 20px 0 30px;
    }


    .about-hero-text {
        font-size: 15px;
    }


    .about-story {
        grid-template-columns: 1fr;
    }


    .about-story-image {
        height: 500px;
    }


    .about-story-content {
        padding: 80px 24px;
    }


    .about-story-content h2 {
        font-size: clamp(60px, 17vw, 95px);
    }


    .about-philosophy {
        grid-template-columns: 1fr;

        padding: 90px 24px;

        gap: 60px;
    }


    .philosophy-heading h2 {
        font-size: clamp(65px, 18vw, 100px);
    }


    .about-collection {
        min-height: 600px;

        padding: 80px 24px;
    }


    .about-collection h2 {
        font-size: clamp(65px, 18vw, 100px);
    }


    .about-custom {
        min-height: 550px;

        padding: 80px 24px;
    }


    .about-custom h2 {
        font-size: clamp(65px, 18vw, 100px);
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .contact-hero {
        min-height: 100svh;

        padding: 130px 24px 70px;

        background-position: center;
    }


    .contact-hero h1 {
        font-size: clamp(65px, 18vw, 100px);

        line-height: 0.85;

        margin: 20px 0 30px;
    }


    .contact-hero-content > p:last-child {
        font-size: 15px;
    }


    .contact-section {
        grid-template-columns: 1fr;

        gap: 80px;

        padding: 90px 24px;
    }


    .contact-info h2 {
        font-size: clamp(60px, 17vw, 95px);

        margin-bottom: 60px;
    }


    .contact-form-wrapper {
        max-width: none;
    }


    .contact-form {
        gap: 25px;
    }


    .contact-cta {
        min-height: 550px;

        padding: 80px 24px;
    }


    .contact-cta h2 {
        font-size: clamp(65px, 18vw, 100px);
    }

}


@media (max-width: 768px) {

    .product-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 45px 12px;
    }

    .product-card {
        display: block;
        width: 100%;
    }

    .product-image {
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1.2;
        overflow: hidden;
    }

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

}

/* =================================
   HOME PRODUCT GRID
================================= */

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px 24px;
    width: 100%;
}


/* PRODUCT CARD */

.product-card {
    width: 100%;
    min-width: 0;
}


/* PRODUCT IMAGE */

.product-image {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1.15;
    overflow: hidden;
    cursor: pointer;
}


.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}


/* IMAGE HOVER */

.product-image:hover img {
    transform: scale(1.02);
}


/* PRODUCT INFO */

.product-info {
    padding-top: 20px;
}


.product-info h3 {
    margin: 0 0 10px;
}


.product-info p {
    margin: 0 0 14px;
}


.product-info span {
    display: block;
}


/* VIEW ALL */

.view-all-products {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}


.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 13px 20px;
    border: 1px solid #555;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}


.view-all-btn:hover {
    background: #fff;
    color: #000;
}


/* =================================
   TABLET
================================= */

@media (max-width: 900px) {

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 50px 18px;
    }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .product-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 45px 12px !important;
        width: 100% !important;
    }


    .product-card {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
    }


    .product-image {
        display: block !important;
        width: 100% !important;
        aspect-ratio: 1 / 1.2 !important;
        overflow: hidden !important;
    }


    .product-image img {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }


    .product-info {
        display: block !important;
        padding-top: 14px !important;
    }


    .product-info h3 {
        font-size: 15px;
        margin-bottom: 7px;
    }


    .product-info p {
        font-size: 9px;
        letter-spacing: 0.12em;
        margin-bottom: 9px;
    }


    .product-info span {
        font-size: 12px;
    }


    .view-all-products {
        display: flex !important;
        width: 100%;
        margin-top: 50px;
    }

}

/*================
    ADD TO CART AND BUY NOW BUTTON MOBIL 
    ==================*/
    @media (max-width: 768px) {

    .product-card-actions {
        gap: 6px;
        margin-top: 14px;
    }

    .product-card-actions button {
        height: 40px;
        font-size: 8px;
        letter-spacing: 1px;
    }

}