/*
Theme Name: Shivi Perfumery
Author: Raj
Version: 1.0
*/



.wp-block-template-part,
.wp-block-navigation,
.wp-block-group,
.wp-block-search {
    display: none !important;
}

header.wp-block-template-part {
    display: none !important;
}

/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: #0b0b0b;
    border-bottom: 1px solid rgba(201,170,113,0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
    padding: 0 8px;
}

/* =========================================
   LOGO — desktop: 24–28px range
========================================= */

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;          /* desktop: within 24–28px */
    letter-spacing: 5px;
    text-decoration: none;
    color: #c9aa71;
    line-height: 1;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* =========================================
   DESKTOP NAV — font-size within 16–18px
========================================= */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    position: relative;
    text-decoration: none;
    font-size: 17px;          /* desktop: within 16–18px */
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;     /* removed uppercase for cleaner look */
    color: rgba(201,170,113,0.85);
    transition: color 0.25s ease;
    white-space: nowrap;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: #c9aa71;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: #ffffff;
}

/* =========================================
   DESKTOP SEARCH
========================================= */

.desktop-search-wrap {
    display: flex;
    align-items: center;
}

.desktop-search-form {
    display: flex;
    align-items: center;
    border: 1px solid rgba(201,170,113,0.3);
    border-radius: 40px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    transition: border-color 0.3s ease, background 0.3s ease;
}

.desktop-search-form:focus-within {
    border-color: #c9aa71;
    background: rgba(255,255,255,0.07);
}

.desktop-search-form input[type="search"] {
    background: transparent;
    border: none;
    outline: none;
    padding: 7px 14px;
    color: #c9aa71;
    font-size: 14px;
    letter-spacing: 0.5px;
    width: 160px;
}

.desktop-search-form input[type="search"]::placeholder {
    color: rgba(201,170,113,0.4);
    font-size: 13px;
}

.desktop-search-form button {
    background: transparent;
    border: none;
    padding: 7px 12px;
    cursor: pointer;
    color: rgba(201,170,113,0.7);
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.desktop-search-form button:hover {
    color: #fff;
}

/* =========================================
   HEADER RIGHT (cart + icons)
========================================= */

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.premium-cart {
    display: flex;
    align-items: center;
    color: rgba(201,170,113,0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.premium-cart:hover {
    color: #fff;
}

/* =========================================
   MOBILE HAMBURGER
========================================= */

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: #c9aa71;
    transition: 0.4s ease;
    display: block;
}

.mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* =========================================
   MOBILE SEARCH ICON (button only)
========================================= */

.search-icon {
    display: none; /* shown only on mobile via breakpoint */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    color: #c9aa71;
}

/* =========================================
   MOBILE SEARCH DRAWER (slides under header)
========================================= */

.mobile-search-drawer {
    display: none; /* block-level shown on mobile via breakpoint */
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #0b0b0b;
    border-bottom: 1px solid rgba(201,170,113,0.25);
    padding: 14px 20px;
    box-sizing: border-box;
    align-items: center;
    gap: 10px;
    z-index: 9998;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-search-drawer.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-search-drawer form {
    flex: 1;
    display: flex;
    align-items: center;
    border: 1px solid rgba(201,170,113,0.4);
    border-radius: 40px;
    overflow: hidden;
    background: #141414;
}

.mobile-search-drawer input[type="search"] {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 15px;
}

.mobile-search-drawer button[type="submit"] {
    background: transparent;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-drawer-close {
    background: none;
    border: none;
    color: #c9aa71;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

/* =========================================
   MOBILE FULLSCREEN MENU
========================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    background: #0b0b0b;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    width: 100%;
    max-width: 400px;
    display: block !important;
    text-align: center;
}

.mobile-menu-inner a {
    display: block !important;
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #e8dcc7;
    padding: 18px 0;
    width: 100%;
}

.mobile-menu-inner a:hover {
    color: #c9aa71;
}

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    background: none;
    border: none;
    color: #c9aa71;
    cursor: pointer;
}

body.menu-open::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9998;
}

/* =========================================
   SEARCH VISIBILITY — SINGLE SOURCE OF TRUTH
========================================= */

/* DESKTOP: show search form, hide mobile elements */
@media (min-width: 1025px) {
    .desktop-nav         { display: flex !important; }
    .desktop-search-wrap { display: flex !important; }
    .search-icon         { display: none !important; }
    .mobile-search-drawer{ display: none !important; }
    .mobile-toggle       { display: none !important; }
}

/* MOBILE: hide desktop elements, show hamburger + search icon */
@media (max-width: 1024px) {
    .desktop-nav         { display: none !important; }
    .desktop-search-wrap { display: none !important; }
    .search-icon         { display: flex !important; }
    .mobile-search-drawer{ display: flex !important; }
    .mobile-toggle       { display: flex !important; }

    /* Header layout on mobile */
    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: relative !important;
        height: 80px !important;
    }

    /* Logo centered */
    .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        font-size: 20px !important;
        white-space: nowrap !important;
        letter-spacing: 3px !important;
    }

    /* Right icons row */
    .header-right {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
    }

    .search-icon {
        background: none !important;
        border: none !important;
        color: #c9aa71 !important;
        font-size: 18px !important;
        padding: 0 !important;
    }

    .premium-cart {
        font-size: 18px !important;
        border: none !important;
        padding: 0 !important;
    }
}

/* ================================
   HERO
================================ */

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 20px;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 72px;
    font-weight: 300;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 14px 36px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #f0f0f0;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 36px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.hero-stats {
    font-size: 14px;
    opacity: 0.85;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats .divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.5);
}

/* ================================
   SECTIONS
================================ */

section {
    padding: 100px 0;
}

.center {
    text-align: center;
}

h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
}

/* ================================
   PACKAGES
================================ */

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.package-card {
    border: 1px solid #ddd;
    padding: 50px;
    transition: 0.3s;
}

.package-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.package-card.featured {
    border: 2px solid #000;
    background: #f8f8f8;
}

.package-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
}

.details {
    margin: 30px 0;
    padding-left: 20px;
}

.details li {
    margin-bottom: 10px;
}

.pricing {
    margin-bottom: 30px;
}

.tax-note {
    font-size: 13px;
    opacity: 0.7;
}

.btn-dark {
    background: #000;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-dark:hover {
    background: #222;
}

/* ================================
   DEPOSIT
================================ */

.deposit {
    background: #000;
    color: #fff;
    text-align: center;
}

/* ================================
   TESTIMONIALS
================================ */

.testimonials {
    background: #f5f5f5;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.testimonial {
    background: #fff;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* ================================
   RESPONSIVE (general)
================================ */

@media (max-width: 992px) {
    .package-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 48px;
    }
}

/* =========================================
   EXPERIENCE SECTION
========================================= */

.experience {
    padding: 140px 0;
    background: #f4f1ed;
}

.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-left {
    max-width: 600px;
}

.experience-sub {
    font-size: 14px;
    letter-spacing: 2px;
    color: #777;
    display: block;
    margin-bottom: 20px;
}

.experience-left h2 {
    font-family: serif;
    font-size: 44px;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 30px;
}

.experience-text {
    font-size: 18px;
    margin-bottom: 40px;
    color: #444;
}

.experience-link {
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #000;
    padding-bottom: 4px;
    color: #000;
}

.experience-link:hover {
    opacity: 0.7;
}

.experience-right {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.experience-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

@media (max-width: 992px) {
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .experience-left h2 {
        font-size: 32px;
    }
}

/* =========================================
   LUXURY PACKAGES
========================================= */

.packages {
    padding: 160px 0;
    background: #f6f3ef;
}

.packages-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

.section-sub {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 20px;
}

.packages-header h2 {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 25px;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.package-card {
    background: #fff;
    padding: 70px 60px;
    border: 1px solid #e5e2dd;
    position: relative;
    transition: all 0.4s ease;
}

.package-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.05);
}

.package-card.featured {
    border: 2px solid #000;
}

.package-card h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.details {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

.details li {
    margin-bottom: 14px;
    padding-left: 18px;
    position: relative;
}

.details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.btn-dark {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 13px;
    transition: 0.3s;
}

.btn-dark:hover {
    background: #222;
}

@media (max-width: 992px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   WORKSHOP HERO VIDEO
================================ */

.workshop-hero-video {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.workshop-hero-video .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    text-align: center;
    color: #fff;
}

/* ================================
   WORKSHOP PACKAGE SELECTION
================================ */

.luxury-package-card {
    position: relative !important;
    display: block !important;
    border-radius: 24px !important;
    border: 2px solid rgba(212,175,55,0.15) !important;
    background: #0b0b0b !important;
    padding: 0 !important;
    cursor: pointer !important;
    transition: all 0.35s ease !important;
    overflow: hidden !important;
}

.luxury-package-card input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
}

.luxury-package-card .package-content {
    padding: 45px !important;
    transition: all 0.35s ease !important;
}

.luxury-package-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(212,175,55,0.6) !important;
    box-shadow: 0 15px 45px rgba(212,175,55,0.15) !important;
}

.luxury-package-card:has(input[type="radio"]:checked) {
    border: 2px solid #d4af37 !important;
    box-shadow:
        0 0 0 1px #d4af37,
        0 0 35px rgba(212,175,55,0.35),
        0 20px 60px rgba(0,0,0,0.6) !important;
    transform: translateY(-10px) !important;
}

.luxury-package-card:has(input[type="radio"]:checked) h3 {
    color: #d4af37 !important;
}

.luxury-package-card:has(input[type="radio"]:checked)::after {
    content: "SELECTED" !important;
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: #d4af37 !important;
    color: #000 !important;
    padding: 6px 14px !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
}

/* ================================
   POEM SPLIT SECTION
================================ */

.poem-section-split {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background: #f5f3ef;
}

.poem-left {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 80px;
}

.poem-inner {
    max-width: 500px;
}

.poem-inner h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

.poem {
    font-size: 18px;
    line-height: 1.9;
}

.poem-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.poem-video-portrait {
    width: 65%;
    max-height: 550px;
    object-fit: cover;
}

/* ================================
   LUXURY BOOKING SECTION
================================ */

.luxury-booking {
    position: relative;
    padding: 140px 0;
    background: #0e0e0e;
    color: #fff;
}

.booking-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.booking-eyebrow {
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 20px;
}

.luxury-booking h2 {
    font-size: 54px;
    font-weight: 300;
    margin-bottom: 20px;
}

.booking-sub {
    max-width: 600px;
    margin: 0 auto 50px;
    font-size: 18px;
    opacity: 0.85;
}


/* =========================================
   SHOP PAGE — COLLECTION ROOT
========================================= */

body.post-type-archive-product,
body.tax-product_cat {
    background: #f6f3ef;
}

/* =========================================
   CATEGORY PRODUCT GRID
   (impressions / vibes listing page)
========================================= */

.tax-product_cat .woocommerce-products-header__title,
.tax-product_cat .page-title,
.tax-product_cat .term-description {
    display: none !important;
}

/* Category page wrapper */
.tax-product_cat .woocommerce {
    padding: 80px 60px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header above grid */
.shivi-cat-header {
    text-align: center;
    padding: 100px 20px 60px;
    background: #f6f3ef;
}

.shivi-cat-header h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300;
    color: #2e2a26;
    margin: 0 0 12px;
    letter-spacing: 2px;
}

.shivi-cat-header p {
    font-size: 15px;
    color: #b89b5e;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Product grid */
body .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products,
body.post-type-archive-product .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    padding: 0 !important;
    margin-top: 20px !important;
    list-style: none !important;
    float: none !important;
}

/* Individual product card */
body .woocommerce ul.products li.product {
    background: #fff !important;
    border-radius: 12px !important;
    padding: 0 !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    border: 1px solid rgba(201,170,113,0.18) !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

body .woocommerce ul.products li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.09) !important;
    border-color: rgba(201,170,113,0.5) !important;
}

/* Product image */
body .woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    border-radius: 0 !important;
    transition: transform 0.5s ease !important;
    box-shadow: none !important;
    padding: 0 !important;
}

body .woocommerce ul.products li.product:hover a img {
    transform: scale(1.04) !important;
}

body .woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block !important;
    overflow: hidden !important;
}

/* Product title */
body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce ul.products li.product h2 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    color: #2e2a26 !important;
    margin: 22px 20px 8px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
}

/* Price */
body .woocommerce ul.products li.product .price {
    color: #b89b72 !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    margin: 0 20px 16px !important;
    display: block !important;
}

/* Button */
body .woocommerce ul.products li.product .button,
body .woocommerce ul.products li.product a.button {
    display: block !important;
    background: transparent !important;
    border: 1px solid rgba(201,170,113,0.4) !important;
    color: #b89b72 !important;
    padding: 11px 24px !important;
    margin: auto 20px 20px !important;
    border-radius: 40px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 11px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    width: auto !important;
    box-shadow: none !important;
}

body .woocommerce ul.products li.product .button:hover,
body .woocommerce ul.products li.product a.button:hover {
    background: #b89b72 !important;
    color: #fff !important;
    border-color: #b89b72 !important;
}

/* =========================================
   PRODUCT GRID RESPONSIVE
========================================= */

@media (max-width: 1200px) {
    body .woocommerce ul.products,
    body.tax-product_cat .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 900px) {
    .tax-product_cat .woocommerce {
        padding: 60px 30px 80px;
    }
    body .woocommerce ul.products,
    body.tax-product_cat .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 560px) {
    body .woocommerce ul.products,
    body.tax-product_cat .woocommerce ul.products {
        grid-template-columns: 1fr 1fr !important;
        gap: 14px !important;
    }
    body .woocommerce ul.products li.product a img {
        height: 180px !important;
    }
    .tax-product_cat .woocommerce {
        padding: 40px 16px 60px;
    }
}

/* =========================================
   SINGLE PRODUCT PAGE
========================================= */

.single-product {
    background: #f6f3ef;
    padding-top: 76px;
}

.single-product div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    padding: 80px 8%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Product gallery */
.single-product div.product .woocommerce-product-gallery {
    position: sticky;
    top: 100px;
}

.single-product .woocommerce-product-gallery__wrapper img {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

/* Thumbnail strip */
.single-product .flex-control-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    padding: 0;
    list-style: none;
}

.single-product .flex-control-thumbs li {
    flex: 1;
}

.single-product .flex-control-thumbs img {
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.65;
    transition: opacity 0.3s ease;
    box-shadow: none;
}

.single-product .flex-control-thumbs .flex-active {
    opacity: 1;
    border: 2px solid #c9aa71;
}

/* Summary column */
.single-product div.product .summary {
    padding-top: 10px;
}

/* Breadcrumb */
.single-product .woocommerce-breadcrumb {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b89b5e;
    margin-bottom: 18px;
    opacity: 0.75;
}

/* Product title */
.single-product h1.product_title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 300;
    letter-spacing: 1px;
    color: #2e2a26;
    margin: 0 0 16px;
    line-height: 1.15;
}

/* Price */
.single-product .price {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    color: #b89b72;
    margin-bottom: 28px;
    display: block;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Short description */
.single-product .woocommerce-product-details__short-description {
    font-size: 15px;
    line-height: 1.85;
    color: #6a6055;
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(201,170,113,0.2);
}

/* =========================================
   VARIATION FORM (Volume + Inspirations)
========================================= */

.single-product form.cart,
.single-product form.variations_form {
    display: block !important;
}

/* Variations table reset */
.single-product table.variations,
.single-product .variations {
    width: 100% !important;
    border: none !important;
    border-spacing: 0 !important;
    margin-bottom: 30px !important;
    background: none !important;
}

/* Each variation row */
.single-product table.variations tr,
.single-product .variations tr {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 20px !important;
    border: none !important;
    background: none !important;
}

/* Label */
.single-product table.variations .label,
.single-product .variations .label {
    padding: 0 0 10px 0 !important;
    border: none !important;
    background: none !important;
    width: auto !important;
}

.single-product table.variations .label label,
.single-product .variations .label label {
    font-size: 11px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: #9a8e82 !important;
    font-weight: 500 !important;
    display: block !important;
}

/* Select wrapper */
.single-product table.variations .value,
.single-product .variations .value {
    padding: 0 !important;
    border: none !important;
    background: none !important;
    width: 100% !important;
}

/* Custom styled select */
.single-product table.variations select,
.single-product .variations select {
    width: 100% !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9aa71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 18px center !important;
    border: 1px solid rgba(201,170,113,0.35) !important;
    border-radius: 6px !important;
    padding: 16px 48px 16px 20px !important;
    font-size: 15px !important;
    color: #2e2a26 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: "Cormorant Garamond", serif !important;
    letter-spacing: 0.5px !important;
    box-shadow: none !important;
    outline: none !important;
    height: auto !important;
}

.single-product table.variations select:focus,
.single-product .variations select:focus {
    border-color: #c9aa71 !important;
    box-shadow: 0 0 0 3px rgba(201,170,113,0.12) !important;
    outline: none !important;
}

.single-product table.variations select:hover,
.single-product .variations select:hover {
    border-color: #c9aa71 !important;
}

/* Reset variation link */
.single-product .reset_variations {
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: #b89b5e !important;
    text-decoration: none !important;
    display: inline-block !important;
    margin-top: 6px !important;
    opacity: 0.7 !important;
    transition: opacity 0.2s !important;
}

.single-product .reset_variations:hover {
    opacity: 1 !important;
}

/* =========================================
   QUANTITY + ADD TO CART
========================================= */

.single-product .single_variation_wrap {
    margin-top: 10px;
}

.single-product .woocommerce-variation-price {
    margin-bottom: 20px;
}

/* Quantity + button row */
.single-product .cart {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

/* Quantity box */
.single-product .quantity {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(201,170,113,0.35);
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    height: 54px;
}

.single-product .qty {
    width: 52px !important;
    height: 54px;
    border: none !important;
    border-left: 1px solid rgba(201,170,113,0.2) !important;
    border-right: 1px solid rgba(201,170,113,0.2) !important;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    color: #2e2a26;
    background: #fff;
    padding: 0;
    -moz-appearance: textfield;
}

.single-product .qty::-webkit-inner-spin-button,
.single-product .qty::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to cart button */
.single-product .single_add_to_cart_button,
.single-product button.single_add_to_cart_button,
.woocommerce .single-product button#yith-wcwl-add-button,
.woocommerce-page .single-product .single_add_to_cart_button {
    flex: 1 !important;
    background: #1a1a1a !important;
    color: #c9aa71 !important;
    border: 1px solid rgba(201,170,113,0.3) !important;
    padding: 16px 36px !important;
    border-radius: 6px !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    height: 54px !important;
    box-shadow: none !important;
}

.single-product .single_add_to_cart_button:hover,
.single-product button.single_add_to_cart_button:hover {
    background: #c9aa71 !important;
    color: #000 !important;
    border-color: #c9aa71 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 28px rgba(201,170,113,0.3) !important;
}

/* =========================================
   PRODUCT TABS (Description, Reviews)
========================================= */

.single-product .woocommerce-tabs {
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 60px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(201,170,113,0.15);
    overflow: hidden;
    padding: 0;
}

.single-product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: 0;
    background: #f9f7f4;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(201,170,113,0.2);
    list-style: none;
}

.single-product .woocommerce-tabs ul.tabs li {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
}

.single-product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 18px 32px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a8e82;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
    color: #2e2a26;
    border-bottom-color: #c9aa71;
}

.single-product .woocommerce-tabs .panel {
    padding: 40px;
    font-size: 15px;
    line-height: 1.85;
    color: #6a6055;
}

/* =========================================
   RELATED PRODUCTS
========================================= */

.single-product .related {
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 20px;
}

.single-product .related h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 300;
    color: #2e2a26;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* =========================================
   META (SKU, Categories)
========================================= */

.single-product .product_meta {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(201,170,113,0.15);
    font-size: 12px;
    color: #9a8e82;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.single-product .product_meta a {
    color: #b89b5e;
    text-decoration: none;
}

.single-product .product_meta a:hover {
    color: #2e2a26;
}

/* =========================================
   SINGLE PRODUCT MOBILE
========================================= */

@media (max-width: 1024px) {
    .single-product div.product {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 5%;
    }

    .single-product div.product .woocommerce-product-gallery {
        position: static;
    }

    .single-product .single_add_to_cart_button {
        width: 100% !important;
    }
}

@media (max-width: 600px) {
    .single-product div.product {
        padding: 40px 16px;
    }

    .single-product .cart {
        flex-direction: column;
        align-items: stretch;
    }

    .single-product .quantity {
        justify-content: center;
    }

    .single-product .single_add_to_cart_button {
        text-align: center;
    }

    html, body {
        overflow-x: hidden !important;
    }
}

/* =========================================
   CART PAGE
========================================= */

.woocommerce-cart {
    background: #f6f3ef;
    padding: 80px 10%;
}

.woocommerce-cart table.shop_table {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.woocommerce-cart th {
    background: #f0ebe4;
    color: #2e2a26;
    font-weight: 500;
}

.woocommerce-cart td {
    padding: 20px;
}

.woocommerce-cart .button {
    border-radius: 30px;
    border: 1px solid #b89b72;
    background: transparent;
    color: #b89b72;
}

.woocommerce-cart .button:hover {
    background: #b89b72;
    color: #fff;
}

.woocommerce-cart .cart_totals {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

/* =========================================
   CHECKOUT PAGE
========================================= */

.woocommerce-checkout {
    background: #f6f3ef;
    padding: 80px 10%;
}

.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
}

.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 12px 16px;
    background: #fff;
}

.woocommerce-checkout-review-order {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

#place_order {
    width: 100%;
    padding: 16px;
    border-radius: 40px;
    background: #b89b72;
    border: none;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#place_order:hover {
    opacity: 0.9;
}

@media (max-width: 992px) {
    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .woocommerce-cart table.shop_table {
        display: block;
        overflow-x: auto;
    }
}

/* =========================================
   SHIVI WC RESET
========================================= */

.shivi-wc {
    background: #f6f3ef;
    padding: 120px 20px;
    min-height: 100vh;
}

.shivi-wc .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
}

.shivi-wc input,
.shivi-wc select,
.shivi-wc textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.shivi-wc input:focus,
.shivi-wc select:focus,
.shivi-wc textarea:focus {
    border-color: #b89b72;
    outline: none;
}

/* =========================================
   RESERVATION PAGE
========================================= */

.reservation-page {
    background: #0b0b0c;
    color: #f5f5f5;
}

.luxury-reservation {
    padding: 120px 0;
    background: #0f0f10;
}

.reservation-header {
    text-align: center;
    margin-bottom: 60px;
}

.reservation-header .eyebrow {
    color: #caa648;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
}

.reservation-header h2 {
    font-size: 42px;
    margin-top: 10px;
}

.reservation-header p {
    opacity: 0.7;
    margin-top: 10px;
}

.luxury-package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.luxury-package-card {
    position: relative;
    background: linear-gradient(145deg,#121212,#0a0a0a);
    border: 2px solid rgba(212,175,55,0.15);
    border-radius: 24px;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s ease;
    overflow: hidden;
}

.luxury-package-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.luxury-package-card .package-content {
    padding: 45px;
    transition: 0.3s ease;
}

.luxury-package-card:hover {
    border-color: rgba(212,175,55,0.6);
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(212,175,55,0.15);
}

.luxury-package-card:has(input[type="radio"]:checked) {
    border: 2px solid #d4af37;
    box-shadow:
        0 0 0 1px #d4af37,
        0 0 35px rgba(212,175,55,0.35),
        0 20px 60px rgba(0,0,0,0.6);
    transform: translateY(-10px);
}

.luxury-package-card:has(input[type="radio"]:checked) h3 {
    color: #d4af37;
}

.luxury-package-card:has(input[type="radio"]:checked)::after {
    content: "SELECTED";
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4af37;
    color: #000;
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 2px;
    border-radius: 50px;
    font-weight: 700;
}

.badge-gold {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #caa648;
    color: #000;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

#shiviReservationForm {
    max-width: 750px;
    margin: auto;
}

.form-group {
    margin-bottom: 30px;
}

#shiviReservationForm label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
}

#shiviReservationForm input,
#shiviReservationForm select {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #141414;
    color: #fff;
    font-size: 16px;
}

#shiviReservationForm input:focus,
#shiviReservationForm select:focus {
    outline: none;
    border-color: #caa648;
}

.reservation-summary {
    margin-top: 40px;
    background: linear-gradient(145deg,#151515,#0d0d0d);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 18px;
}

.deposit-row strong {
    color: #caa648;
}

.policy-note {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 15px;
}

.contact-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.luxury-reserve-btn {
    width: 100%;
    margin-top: 40px;
    padding: 18px;
    border-radius: 40px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg,#caa648,#b48a2c);
    color: #000;
    cursor: pointer;
    transition: 0.3s ease;
}

.luxury-reserve-btn:hover {
    transform: translateY(-3px);
}

.legal-disclaimer {
    padding: 80px 0;
    background: #0a0a0a;
    text-align: center;
}

.legal-disclaimer h3 {
    margin-bottom: 15px;
}

.legal-disclaimer p {
    max-width: 700px;
    margin: auto;
    opacity: 0.6;
    font-size: 14px;
}

@media (max-width: 900px) {
    .luxury-package-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reservation-header h2 {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 34px;
    }
}

/* =========================================
   FOOTER
========================================= */

.site-footer.luxury-footer {
    background: #050505;
    color: #e8dcc7;
    padding: 140px 0 60px;
    width: 100%;
}

.site-footer .footer-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-newsletter-luxury {
    padding: 160px 20px;
    text-align: center;
    background: #0a0a0a;
    border-top: 1px solid rgba(201,170,113,0.25);
    border-bottom: 1px solid rgba(201,170,113,0.25);
}

.newsletter-label {
    font-size: 12px;
    letter-spacing: 6px;
    color: #c9aa71;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-newsletter-luxury h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 56px;
    font-weight: 300;
    color: #f5f2ec;
    margin-bottom: 30px;
}

.footer-newsletter-luxury p {
    font-size: 19px;
    line-height: 1.8;
    color: #bfb8a8;
    margin-bottom: 55px;
}

.newsletter-luxury-form {
    display: flex;
    max-width: 620px;
    margin: 0 auto 25px;
    border: 1px solid rgba(201,170,113,0.4);
}

.newsletter-luxury-form input {
    flex: 1;
    padding: 18px 22px;
    background: #0f0f0f;
    border: none;
    color: #fff;
    font-size: 15px;
}

.newsletter-luxury-form button {
    padding: 18px 32px;
    background: linear-gradient(135deg,#c9aa71,#b8975c);
    color: #000;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-luxury-form button:hover {
    background: #ffffff;
}

.footer-newsletter-luxury small {
    display: block;
    margin-top: 15px;
    font-size: 13px;
    color: #8c8578;
}

.site-footer.luxury-footer a,
.site-footer.luxury-footer a:link,
.site-footer.luxury-footer a:visited,
.site-footer.luxury-footer a:active,
.site-footer.luxury-footer a:focus {
    color: #c9aa71 !important;
    text-decoration: none !important;
    transition: 0.3s ease;
}

.site-footer.luxury-footer a:hover {
    color: #ffffff !important;
}

.site-footer.luxury-footer a {
    -webkit-text-fill-color: #c9aa71 !important;
}

.footer-bottom-luxury {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 70px;
    font-size: 14px;
    color: #a59c8b;
}

.footer-policies {
    display: flex;
    gap: 25px;
}

.footer-social {
    display: flex;
    gap: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer-newsletter-luxury h2 {
        font-size: 34px;
    }

    .newsletter-luxury-form {
        flex-direction: column;
    }

    .newsletter-luxury-form button {
        width: 100%;
    }

    .footer-bottom-luxury {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-policies {
        flex-direction: column;
        gap: 12px;
    }

    .footer-social {
        justify-content: center;
    }

    .site-footer.luxury-footer a {
        color: #c9aa71 !important;
        -webkit-text-fill-color: #c9aa71 !important;
    }
}

/* =========================================
   BEST SELLERS SLIDER
========================================= */

.bs-slider-section {
    padding: 120px 0;
    background: #f6f3ef;
    overflow: hidden;
}

.bs-slider-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

.bs-slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.bs-slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: bsScroll 30s linear infinite;
}

@keyframes bsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.bs-slider-viewport:hover .bs-slider-track {
    animation-play-state: paused;
}

.bs-card {
    flex: 0 0 260px;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.bs-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
}

/* =========================================
   FRAGRANCE UNIVERSE
========================================= */

.fragrance-universe {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 160px 20px;
    background: #f4f1ea;
}

.fragrance-option {
    text-align: center;
    padding: 100px 120px;
    border: 1px solid #c9aa71;
    transition: 0.4s ease;
    text-decoration: none;
    color: #000;
    background: #fff;
}

.fragrance-option h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 300;
}

.fragrance-option span {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #777;
}

.fragrance-option:hover {
    background: #000;
    color: #fff;
    transform: translateY(-10px);
}

@media (max-width: 900px) {
    .fragrance-universe {
        flex-direction: column;
        gap: 40px;
    }
}

/* =========================================
   SHIVI COLLECTION GRID
========================================= */

#shivi-collection-root {
    padding: 140px 20px 120px;
    background: #f6f3ef;
}

.shivi-collection-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.shivi-collection-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 12px;
}

.shivi-collection-subtitle {
    color: #b89b5e;
    font-size: 15px;
    margin-bottom: 70px;
}

.shivi-collection-grid {
    display: grid;
    gap: 40px;
}

.shivi-collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
    background: #111;
    border: 1px solid rgba(184,155,94,0.35);
    transition: all 0.4s ease;
}

.shivi-collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shivi-collection-card:hover {
    transform: translateY(-8px);
    border-color: #b89b5e;
}

@media (min-width: 992px) {
    .shivi-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .shivi-collection-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   HIDE CATEGORY TITLE + DESCRIPTION
========================================= */

.tax-product_cat .woocommerce-products-header__title,
.tax-product_cat .page-title {
    display: none !important;
}

.tax-product_cat .term-description {
    display: none !important;
}

.tax-product_cat a {
    text-decoration: none !important;
    color: inherit !important;
}




/* =============================================
   CORPORATE & EVENTS PAGE
   Luxury dark/gold aesthetic — Shivi brand
============================================= */

.corporate-page {
    padding-top: 76px;
}

/* =============================================
   HERO
============================================= */

.corp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0c0c0c;
    overflow: hidden;
}

.corp-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(201,170,113,0.08) 0%, transparent 65%),
                linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.corp-hero-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.corp-hero-lines span {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,170,113,0.2), transparent);
    animation: corp-line-rise 8s ease-in-out infinite;
}

.corp-hero-lines span:nth-child(1) { left: 20%; height: 60%; top: 20%; animation-delay: 0s; }
.corp-hero-lines span:nth-child(2) { left: 50%; height: 40%; top: 30%; animation-delay: 2s; }
.corp-hero-lines span:nth-child(3) { left: 80%; height: 50%; top: 15%; animation-delay: 4s; }

@keyframes corp-line-rise {
    0%, 100% { opacity: 0; transform: translateY(20px); }
    50%       { opacity: 1; transform: translateY(0); }
}

.corp-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 900px;
}

.corp-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #c9aa71;
    margin-bottom: 28px;
    opacity: 0.9;
}

.corp-eyebrow--dark {
    color: #b89b5e;
}

.corp-hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    color: #f5f2ec;
    line-height: 1.1;
    margin: 0 0 28px;
    letter-spacing: -1px;
}

.corp-hero-title em {
    font-style: italic;
    color: #c9aa71;
}

.corp-hero-sub {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(245,242,236,0.65);
    margin: 0 auto 50px;
    max-width: 600px;
}

.corp-hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.corp-scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.corp-scroll-line {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #c9aa71, transparent);
    animation: corp-scroll-pulse 2s ease-in-out infinite;
}

@keyframes corp-scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

.corp-scroll-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201,170,113,0.5);
}

.corp-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 38px;
    background: linear-gradient(135deg, #c9aa71, #b48a2c);
    color: #000000 !important; /* Bold black text, readable without hover */
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.corp-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(201,170,113,0.4);
    color: #000000 !important;
}

/* ADD THIS */
main.corporate-page .corp-btn-gold,
main.corporate-page .corp-btn-gold:link,
main.corporate-page .corp-btn-gold:visited,
main.corporate-page .corp-btn-gold:hover {
    color: #000000 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.corp-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 38px;
    background: transparent;
    color: rgba(245,242,236,0.75);
    border: 1px solid rgba(201,170,113,0.35);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.corp-btn-ghost:hover {
    border-color: #c9aa71;
    color: #c9aa71;
    background: rgba(201,170,113,0.06);
}

.corp-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 38px;
    background: #1a1a1a;
    color: #c9aa71;
    border: 1px solid rgba(201,170,113,0.3);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.corp-btn-dark:hover {
    background: #c9aa71;
    color: #000;
    border-color: #c9aa71;
    transform: translateY(-2px);
}

.corp-arrow {
    transition: transform 0.3s ease;
    display: inline-block;
}

.corp-btn-dark:hover .corp-arrow {
    transform: translateX(4px);
}

/* =============================================
   STATS BAR
============================================= */

.corp-stats-bar {
    background: #0f0f0f;
    border-top: 1px solid rgba(201,170,113,0.15);
    border-bottom: 1px solid rgba(201,170,113,0.15);
    padding: 28px 0;
}

.corp-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.corp-stat {
    text-align: center;
    padding: 10px 60px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.corp-stat strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 400;
    color: #c9aa71;
    line-height: 1;
}

.corp-stat span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,242,236,0.4);
}

.corp-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,170,113,0.2);
    flex-shrink: 0;
}

/* =============================================
   SECTION LABELS & TITLES
============================================= */

.corp-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.corp-label-line {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9aa71);
}

.corp-label-line:last-child {
    background: linear-gradient(to left, transparent, #c9aa71);
}

.corp-label-line--gold {
    background: linear-gradient(to right, transparent, #c9aa71);
}

.corp-label-line--gold:last-child {
    background: linear-gradient(to left, transparent, #c9aa71);
}

.corp-label-text {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9aa71;
    white-space: nowrap;
}

.corp-section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 300;
    text-align: center;
    margin: 0 0 70px;
    color: #2e2a26;
    line-height: 1.15;
}

.corp-section-title--light {
    color: #f5f2ec;
}

.corp-section-sub {
    text-align: center;
    font-size: 16px;
    color: rgba(245,242,236,0.5);
    margin: -50px 0 60px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   OVERVIEW CARDS
============================================= */

.corp-overview {
    padding: 130px 0;
    background: #f6f3ef;
}

.corp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.corp-overview-card {
    position: relative;
    background: #fff;
    border: 1px solid rgba(201,170,113,0.2);
    border-radius: 4px;
    padding: 50px 40px;
    transition: all 0.4s ease;
}

.corp-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.07);
    border-color: rgba(201,170,113,0.5);
}

.corp-overview-card--featured {
    background: #0f0f0f;
    border-color: rgba(201,170,113,0.4);
}

.corp-overview-card--featured h3,
.corp-overview-card--featured p {
    color: #f5f2ec !important;
}

.corp-overview-card--featured .corp-card-icon {
    color: #c9aa71;
    border-color: rgba(201,170,113,0.3);
}

.corp-overview-card--featured .corp-card-tag {
    background: rgba(201,170,113,0.15);
    color: #c9aa71;
    border-color: rgba(201,170,113,0.3);
}

.corp-card-badge {
    position: absolute;
    top: -12px;
    left: 40px;
    background: linear-gradient(135deg, #c9aa71, #b48a2c);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
}

.corp-card-icon {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #2e2a26;
    transition: all 0.3s ease;
}

.corp-overview-card:hover .corp-card-icon {
    border-color: #c9aa71;
    color: #c9aa71;
}

.corp-overview-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 400;
    color: #2e2a26;
    margin: 0 0 14px;
}

.corp-overview-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #7a7060;
    margin: 0 0 28px;
}

.corp-card-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b89b5e;
    border: 1px solid rgba(201,170,113,0.3);
    padding: 5px 14px;
    border-radius: 20px;
}

/* =============================================
   IMAGE CAROUSEL
============================================= */

.corp-carousel-section {
    padding: 130px 0 0;
    background: #fff;
}

.corp-carousel-wrap {
    position: relative;
    margin-top: 0;
    overflow: hidden;
}

/* The sliding track */
.corp-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #111;
}

/* Each slide */
.corp-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.corp-carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.corp-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient overlay on image */
.corp-carousel-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(0,0,0,0.55) 100%
    );
    pointer-events: none;
}

/* Caption */
.corp-carousel-caption {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 300;
    color: #f5f2ec;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

/* Prev / Next arrows */
.corp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(11,11,11,0.65);
    border: 1px solid rgba(201,170,113,0.35);
    color: #c9aa71;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.corp-carousel-btn:hover {
    background: rgba(201,170,113,0.15);
    border-color: #c9aa71;
    transform: translateY(-50%) scale(1.08);
}

.corp-carousel-btn--prev { left: 28px; }
.corp-carousel-btn--next { right: 28px; }

/* Dot indicators */
.corp-carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
}

.corp-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201,170,113,0.35);
    border: 1px solid rgba(201,170,113,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.corp-dot.active {
    background: #c9aa71;
    width: 24px;
    border-radius: 4px;
}

/* =============================================
   VIDEO SECTION
============================================= */

.corp-videos-section {
    padding: 130px 0;
    background: #0f0f0f;
}

.corp-videos-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 14px;
    margin-top: 20px;
    padding: 0 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature video — left, tall */
.corp-video-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #1a1a1a;
    border: 1px solid rgba(201,170,113,0.12);
}

.corp-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.corp-video-item:hover video {
    transform: scale(1.03);
}

.corp-video-item--feature {
    height: 600px;
}

/* Right column: two stacked */
.corp-video-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.corp-video-stack .corp-video-item {
    flex: 1;
    height: 293px;
}

/* Video label */
.corp-video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(245,242,236,0.85);
    letter-spacing: 1px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.corp-video-dot {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c9aa71;
    animation: corp-dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes corp-dot-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.3); }
}

/* Bottom gradient on all videos */
.corp-video-item::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

/* =============================================
   SPLIT SECTIONS
============================================= */

.corp-split {
    padding: 130px 0;
    background: #fff;
}

.corp-split--warm {
    background: #f6f3ef;
}

.corp-split-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.corp-split--reverse .corp-split-inner {
    direction: rtl;
}

.corp-split--reverse .corp-split-inner > * {
    direction: ltr;
}

.corp-split-image-wrap {
    position: relative;
}

.corp-split-image-wrap img {
    width: 100%;
    border-radius: 6px;
    display: block;
    box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

.corp-split-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(201,170,113,0.35);
    border-radius: 6px;
    z-index: -1;
}

.corp-split-accent--right {
    right: auto;
    left: -20px;
}

.corp-split-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 300;
    color: #2e2a26;
    line-height: 1.15;
    margin: 14px 0 20px;
    text-align: left;
}

.corp-lead {
    font-size: 18px;
    font-weight: 500;
    color: #4a433d;
    margin-bottom: 16px;
}

.corp-body {
    font-size: 16px;
    line-height: 1.85;
    color: #7a7060;
    margin-bottom: 36px;
}

.corp-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 42px;
}

.corp-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #4a433d;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.corp-check {
    color: #c9aa71;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =============================================
   PROCESS STEPS
============================================= */

.corp-process {
    padding: 130px 0;
    background: #0f0f0f;
}

.corp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-top: 10px;
}

.corp-step {
    flex: 1;
    text-align: center;
    padding: 0 30px;
    max-width: 240px;
}

.corp-step-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(201,170,113,0.22);
    line-height: 1;
    margin-bottom: 20px;
}

.corp-step h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    color: #f5f2ec;
    margin: 0 0 12px;
}

.corp-step p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(245,242,236,0.4);
}

.corp-step-line {
    flex: 0 0 auto;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,170,113,0.3), transparent);
    margin-top: 36px;
}

/* =============================================
   FINAL CTA
============================================= */

.corp-cta {
    position: relative;
    padding: 160px 0;
    background: #0c0c0c;
    text-align: center;
    overflow: hidden;
}

.corp-cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,170,113,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.corp-cta-inner {
    position: relative;
    z-index: 2;
}

.corp-cta h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 300;
    color: #f5f2ec;
    line-height: 1.15;
    margin: 16px auto 24px;
    max-width: 700px;
    text-align: center;
}

.corp-cta h2 em {
    font-style: italic;
    color: #c9aa71;
}

.corp-cta p {
    font-size: 17px;
    color: rgba(245,242,236,0.5);
    margin: 0 auto 50px;
    max-width: 480px;
}

.corp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE
============================================= */

@media (max-width: 1100px) {
    .corp-videos-grid {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {

    .corp-split-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .corp-split--reverse .corp-split-inner {
        direction: ltr;
    }

    .corp-split-accent {
        display: none;
    }

    .corp-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .corp-step-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, transparent, rgba(201,170,113,0.3), transparent);
        margin: 0;
    }

    .corp-step {
        max-width: 100%;
        padding: 0 20px;
    }

    .corp-videos-grid {
        grid-template-columns: 1fr;
    }

    .corp-video-item--feature {
        height: 400px;
    }

    .corp-video-stack {
        flex-direction: row;
    }

    .corp-video-stack .corp-video-item {
        height: 260px;
    }
}

@media (max-width: 900px) {

    .corp-cards-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .corp-carousel {
        height: 420px;
    }

    .corp-stat {
        padding: 10px 30px;
    }
}

@media (max-width: 600px) {

    .corp-stat-divider {
        display: none;
    }

    .corp-stats-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .corp-stat {
        padding: 16px;
    }

    .corp-hero-title {
        font-size: 42px;
    }

    .corp-hero-sub br {
        display: none;
    }

    .corp-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .corp-btn-gold,
    .corp-btn-ghost,
    .corp-btn-dark {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .corp-carousel {
        height: 320px;
    }

    .corp-carousel-btn--prev { left: 12px; }
    .corp-carousel-btn--next { right: 12px; }

    .corp-carousel-caption {
        font-size: 16px;
        bottom: 60px;
    }

    .corp-video-stack {
        flex-direction: column;
    }

    .corp-video-stack .corp-video-item {
        height: 220px;
    }

    .corp-videos-grid {
        padding: 0 16px;
    }

    .corp-carousel-section,
    .corp-videos-section,
    .corp-overview,
    .corp-split,
    .corp-process,
    .corp-cta {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/*
  ============================================================
  SHIVI PERFUMERY — SHOP & CATEGORY PAGE UPGRADE
  Inspired by: Aurum-style editorial product grid
  Matches existing brand: #c9aa71 gold / #0b0b0b dark / #f6f3ef cream
  ============================================================
*/

/* ============================================================
   DESKTOP GRID — 3 columns (matches Aurum layout)
   MOBILE — 2 columns (matches the app screenshot)
   ============================================================ */

/* ---- Category header ---- */
.shivi-cat-header {
  text-align: center;
  padding: 120px 20px 50px;
  background: #f6f3ef;
}

.shivi-cat-header h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 300;
  color: #2e2a26;
  margin: 0 0 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.shivi-cat-header p {
  font-size: 13px;
  color: #b89b5e;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

/* ---- Hide WooCommerce default page title ---- */
.tax-product_cat .woocommerce-products-header__title,
.tax-product_cat .page-title,
.tax-product_cat .term-description,
.post-type-archive-product .woocommerce-products-header__title,
.post-type-archive-product .page-title {
  display: none !important;
}

/* ---- Page background ---- */
body.post-type-archive-product,
body.tax-product_cat {
  background: #f6f3ef;
}

/* ---- WooCommerce wrapper ---- */
.tax-product_cat .woocommerce,
.post-type-archive-product .woocommerce {
  padding: 20px 60px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================================
   PRODUCT GRID  — DESKTOP: 3 cols
   ============================================================ */
body .woocommerce ul.products,
body.tax-product_cat .woocommerce ul.products,
body.post-type-archive-product .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  float: none !important;
  width: 100% !important;
}

/* ============================================================
   PRODUCT CARD  — white card, rounded, with hover lift
   ============================================================ */
body .woocommerce ul.products li.product {
  background: #fff !important;
  border-radius: 4px !important;
  padding: 0 !important;
  text-align: left !important;
  transition: all 0.4s ease !important;
  border: 1px solid rgba(201,170,113,0.15) !important;
  overflow: hidden !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

body .woocommerce ul.products li.product:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.09) !important;
  border-color: rgba(201,170,113,0.45) !important;
}

/* ---- WISHLIST ICON (top-right corner, like Aurum) ---- */
body .woocommerce ul.products li.product::before {
  content: "♡";
  position: absolute !important;
  top: 14px !important;
  right: 14px !important;
  z-index: 10 !important;
  font-size: 18px !important;
  color: rgba(201,170,113,0.6) !important;
  line-height: 1 !important;
  pointer-events: none;
  transition: color 0.3s ease !important;
}

body .woocommerce ul.products li.product:hover::before {
  color: #c9aa71 !important;
}

/* ---- PRODUCT IMAGE ---- */
body .woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  margin: 0 !important;
  border-radius: 0 !important;
  transition: transform 0.55s ease !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body .woocommerce ul.products li.product:hover a img {
  transform: scale(1.04) !important;
}

/* image link wrapper */
body .woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
}

/* ---- PRODUCT INFO BLOCK ---- */
/* New Collection badge — mimics "New Collection" label in Aurum */
body .woocommerce ul.products li.product .product-badge {
  font-size: 11px !important;
  color: #c9aa71 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 14px 18px 4px !important;
  display: block !important;
}

/* ---- PRODUCT TITLE ---- */
body .woocommerce ul.products li.product .woocommerce-loop-product__title,
body .woocommerce ul.products li.product h2 {
  font-family: "Cormorant Garamond", serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #2e2a26 !important;
  margin: 10px 18px 6px !important;
  letter-spacing: 0.3px !important;
  line-height: 1.25 !important;
  padding: 0 !important;
  text-align: left !important;
}

/* ---- PRICE ---- */
body .woocommerce ul.products li.product .price {
  color: #5a5248 !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  font-family: "Cormorant Garamond", serif !important;
  margin: 0 18px 14px !important;
  display: block !important;
  text-align: left !important;
  letter-spacing: 0.5px !important;
}

/* ---- ADD TO CART / VIEW DETAILS BUTTON ---- */
body .woocommerce ul.products li.product .button,
body .woocommerce ul.products li.product a.button {
  display: block !important;
  background: transparent !important;
  border: none !important;
  border-top: 1px solid rgba(201,170,113,0.2) !important;
  color: #2e2a26 !important;
  padding: 13px 18px !important;
  margin: auto 0 0 !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  text-align: center !important;
}

body .woocommerce ul.products li.product .button:hover,
body .woocommerce ul.products li.product a.button:hover {
  background: #2e2a26 !important;
  color: #c9aa71 !important;
  border-top-color: #2e2a26 !important;
}

/* ============================================================
   COLLECTION BANNER  (above the grid — like Aurum's hero strip)
   Add class="shivi-collection-banner" to a div above products
   ============================================================ */
.shivi-collection-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 40px;
}

.shivi-collection-banner img,
.shivi-collection-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shivi-collection-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.shivi-collection-banner-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 4px;
  margin: 0 0 10px;
  font-style: italic;
}

.shivi-collection-banner-text p {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,170,113,0.9);
  margin: 0;
}

/* ============================================================
   SECTION HEADER  (above the grid — "View New Collection" row)
   ============================================================ */
.shivi-shop-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  margin-top: 10px;
}

.shivi-shop-section-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 400;
  color: #2e2a26;
  letter-spacing: 1px;
  margin: 0;
}

.shivi-shop-section-header a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b89b5e;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.shivi-shop-section-header a:hover {
  color: #2e2a26;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.woocommerce-pagination {
  text-align: center;
  margin-top: 60px !important;
}

.woocommerce-pagination ul {
  display: inline-flex !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border: 1px solid rgba(201,170,113,0.3) !important;
  color: #2e2a26 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  transition: all 0.3s ease !important;
  background: #fff !important;
}

.woocommerce-pagination ul li .current,
.woocommerce-pagination ul li a:hover {
  background: #2e2a26 !important;
  color: #c9aa71 !important;
  border-color: #2e2a26 !important;
}

/* ============================================================
   RESPONSIVE — TABLET: 2 columns
   ============================================================ */
@media (max-width: 1024px) {
  .tax-product_cat .woocommerce,
  .post-type-archive-product .woocommerce {
    padding: 20px 30px 80px;
  }

  body .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.post-type-archive-product .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  body .woocommerce ul.products li.product a img {
    height: 260px !important;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE: 2 columns (matches the app screenshot)
   Compact cards like the mobile app UI reference
   ============================================================ */
@media (max-width: 640px) {
  .tax-product_cat .woocommerce,
  .post-type-archive-product .woocommerce {
    padding: 10px 14px 60px;
  }

  body .woocommerce ul.products,
  body.tax-product_cat .woocommerce ul.products,
  body.post-type-archive-product .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  body .woocommerce ul.products li.product a img {
    height: 180px !important;
    object-position: center center !important;
  }

  body .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body .woocommerce ul.products li.product h2 {
    font-size: 16px !important;
    margin: 10px 12px 4px !important;
  }

  body .woocommerce ul.products li.product .price {
    font-size: 14px !important;
    margin: 0 12px 10px !important;
  }

  body .woocommerce ul.products li.product .button,
  body .woocommerce ul.products li.product a.button {
    padding: 11px 12px !important;
    font-size: 9px !important;
    letter-spacing: 2px !important;
  }

  .shivi-cat-header {
    padding: 90px 16px 32px;
  }

  .shivi-collection-banner {
    height: 220px;
  }

  .shivi-collection-banner-overlay {
    padding: 0 24px;
  }

  .shivi-shop-section-header {
    flex-direction: column;
    gap: 6px;
  }
}

/* ============================================================
   PRODUCT CARD COLOUR SWATCH ROW (optional — add via JS/PHP)
   Matches the Aurum color swatch dots under each product
   Usage: <div class="shivi-swatches"><span style="background:#c9aa71"></span>...</div>
   ============================================================ */
.shivi-swatches {
  display: flex;
  gap: 6px;
  padding: 0 18px 14px;
  align-items: center;
}

.shivi-swatches span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shivi-swatches span:hover,
.shivi-swatches span.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #c9aa71;
}

/* ============================================================
   SHOP PAGE — COLLECTION ENTRY GRID (shiviperfumery.ca/shop)
   The two big cards (Vibes + Impressions) — make them better
   ============================================================ */
#shivi-collection-root {
  padding: 120px 60px 100px;
  background: #f6f3ef;
}

.shivi-collection-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.shivi-collection-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #2e2a26;
}

.shivi-collection-subtitle {
  font-size: 13px;
  color: #b89b5e;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 70px;
}

.shivi-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.shivi-collection-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  background: #111;
  border: 1px solid rgba(184,155,94,0.25);
  transition: all 0.45s ease;
  aspect-ratio: 4/3;
}

.shivi-collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.shivi-collection-card:hover img {
  transform: scale(1.05);
}

.shivi-collection-card:hover {
  border-color: #c9aa71;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* overlay on collection card */
.shivi-collection-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 50%);
  pointer-events: none;
}

/* label inside collection card */
.shivi-collection-card-label {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  color: #fff;
  pointer-events: none;
}

.shivi-collection-card-label h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0 0 8px;
  line-height: 1;
}

.shivi-collection-card-label p {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,170,113,0.9);
  margin: 0;
}

@media (max-width: 768px) {
  #shivi-collection-root {
    padding: 80px 16px 60px;
  }

  .shivi-collection-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shivi-collection-card {
    aspect-ratio: 3/2;
  }
}


/* ============================================================
   SHIVI — CATEGORY GRID FIX
   Paste this at the VERY BOTTOM of your style.css
   ============================================================ */

.shivi-cat-page {
    background: #f6f3ef !important;
    padding-top: 76px !important;
    overflow-x: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.shivi-cat-body {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 48px 60px 100px !important;
    box-sizing: border-box !important;
    width: 100% !important;
}

/* ── THE GRID ── */
ul.shivi-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
}

/* ── CARD ── */
li.shivi-card {
    background: #fff !important;
    border: 1px solid rgba(201,170,113,0.18) !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease !important;
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

li.shivi-card:hover {
    transform: translateY(-7px) !important;
    box-shadow: 0 22px 55px rgba(0,0,0,0.09) !important;
    border-color: rgba(201,170,113,0.5) !important;
}

/* ── Card image — fixed height ── */
a.shivi-card__img {
    display: block !important;
    overflow: hidden !important;
    height: 300px !important;
    width: 100% !important;
    flex-shrink: 0 !important;
    background: #f0ebe2 !important;
    text-decoration: none !important;
}

a.shivi-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
    transition: transform .55s ease !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

li.shivi-card:hover a.shivi-card__img img {
    transform: scale(1.05) !important;
}

/* ── Wishlist ── */
button.shivi-card__wish {
    position: absolute !important;
    top: 12px !important; right: 12px !important;
    z-index: 10 !important;
    width: 32px !important; height: 32px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.88) !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 15px !important;
    color: rgba(201,170,113,0.55) !important;
    cursor: pointer !important;
    transition: all .25s !important;
    padding: 0 !important;
}
li.shivi-card:hover button.shivi-card__wish {
    color: #c9aa71 !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1) !important;
}

/* ── Badge ── */
span.shivi-card__badge {
    font-size: 10px !important;
    color: #c9aa71 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    padding: 14px 18px 4px !important;
    display: block !important;
    background: transparent !important;
}

/* ── Title ── */
a.shivi-card__title {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    color: #2e2a26 !important;
    margin: 4px 18px 6px !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    display: block !important;
    padding: 0 !important;
}
a.shivi-card__title:hover { color: #c9aa71 !important; }

/* ── Price ── */
span.shivi-card__price {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 16px !important;
    color: #5a5248 !important;
    margin: 0 18px 14px !important;
    display: block !important;
}
span.shivi-card__price del { opacity: .45 !important; font-size: 13px !important; }
span.shivi-card__price ins { text-decoration: none !important; }

/* ── Swatches ── */
div.shivi-card__swatches {
    display: flex !important;
    gap: 6px !important;
    padding: 0 18px 14px !important;
    flex-wrap: wrap !important;
}
button.shivi-swatch {
    padding: 4px 11px !important;
    border: 1px solid rgba(201,170,113,0.35) !important;
    border-radius: 20px !important;
    font-size: 10px !important;
    letter-spacing: 1px !important;
    color: #b89b5e !important;
    cursor: pointer !important;
    background: transparent !important;
    font-family: inherit !important;
    transition: all .2s !important;
}
button.shivi-swatch.is-active,
button.shivi-swatch:hover {
    background: #2e2a26 !important;
    color: #c9aa71 !important;
    border-color: #2e2a26 !important;
}

/* ── CTA ── */
a.shivi-card__btn {
    display: block !important;
    background: transparent !important;
    border: none !important;
    border-top: 1px solid rgba(201,170,113,0.18) !important;
    color: #2e2a26 !important;
    padding: 14px 18px !important;
    margin-top: auto !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    font-family: "Jost","Inter",sans-serif !important;
    transition: all .3s !important;
    text-align: center !important;
    text-decoration: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}
a.shivi-card__btn:hover {
    background: #2e2a26 !important;
    color: #c9aa71 !important;
    border-top-color: #2e2a26 !important;
}

/* ── Hero ── */
.shivi-cat-hero {
    text-align: center !important;
    padding: 64px 20px 44px !important;
    background: #f6f3ef !important;
    border-bottom: 1px solid rgba(201,170,113,0.15) !important;
}
.shivi-cat-hero__eye {
    display: block !important; font-size: 11px !important;
    letter-spacing: 5px !important; text-transform: uppercase !important;
    color: #c9aa71 !important; margin-bottom: 14px !important;
}
.shivi-cat-hero__title {
    font-family: "Cormorant Garamond", serif !important;
    font-size: clamp(36px, 5vw, 64px) !important;
    font-weight: 300 !important; letter-spacing: 5px !important;
    text-transform: uppercase !important; color: #2e2a26 !important;
    margin: 0 0 10px !important;
}
.shivi-cat-hero__sub {
    font-size: 12px !important; letter-spacing: 3px !important;
    text-transform: uppercase !important; color: #c9aa71 !important;
    opacity: .8 !important; margin: 0 !important;
}

/* ── Section row ── */
.shivi-section-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    margin-bottom: 30px !important;
}
.shivi-section-row h2 {
    font-family: "Cormorant Garamond", serif !important;
    font-size: 28px !important; font-weight: 400 !important;
    color: #2e2a26 !important; letter-spacing: 1px !important;
    margin: 0 !important;
}

/* ── Pagination ── */
.shivi-pagination {
    margin-top: 60px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
}
.shivi-pagination .page-numbers {
    display: flex !important; align-items: center !important; justify-content: center !important;
    width: 42px !important; height: 42px !important;
    border: 1px solid rgba(201,170,113,0.3) !important;
    color: #2e2a26 !important; text-decoration: none !important;
    font-size: 13px !important; background: #fff !important; transition: all .3s !important;
}
.shivi-pagination .page-numbers.current,
.shivi-pagination .page-numbers:hover {
    background: #2e2a26 !important; color: #c9aa71 !important; border-color: #2e2a26 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .shivi-cat-body { padding: 40px 30px 80px !important; }
    ul.shivi-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
    a.shivi-card__img { height: 260px !important; }
}

@media (max-width: 640px) {
    .shivi-cat-body { padding: 20px 12px 60px !important; }
    .shivi-cat-hero { padding: 50px 16px 28px !important; }
    ul.shivi-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    a.shivi-card__img { height: 160px !important; }
    span.shivi-card__badge { font-size: 9px !important; padding: 10px 12px 2px !important; }
    a.shivi-card__title { font-size: 15px !important; margin: 4px 12px 4px !important; }
    span.shivi-card__price { font-size: 13px !important; margin: 0 12px 8px !important; }
    div.shivi-card__swatches { padding: 0 12px 10px !important; gap: 4px !important; }
    button.shivi-swatch { font-size: 9px !important; padding: 3px 8px !important; }
    a.shivi-card__btn { font-size: 9px !important; letter-spacing: 2px !important; padding: 11px 12px !important; }
    button.shivi-card__wish { width: 28px !important; height: 28px !important; top: 8px !important; right: 8px !important; }
}

/* ── Kill WooCommerce float/width overrides ── */
.shivi-cat-page ul.shivi-grid li,
.shivi-cat-page li.shivi-card {
    width: auto !important;
    float: none !important;
    clear: none !important;
}


/* ============================================================
   SHIVI PERFUMERY — ABOUT PAGE
   Add to bottom of style.css
   ============================================================ */

/* ── Shared Variables ── */
.about-page {
    --gold:      #c9aa71;
    --gold-soft: rgba(201,170,113,0.2);
    --dark:      #0b0b0b;
    --dark-2:    #111;
    --dark-3:    #0f0f0f;
    --cream:     #f6f3ef;
    --warm:      #f0ebe2;
    --text:      #2e2a26;
    --mid:       #7a7060;
    font-family: "Jost", "Inter", sans-serif;
    overflow-x: hidden;
}

/* ── Shared label ── */
.about-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0.9;
}
.about-label--light { color: rgba(201,170,113,0.7); }
.about-label--gold  { color: var(--gold); }

/* ── Shared section title ── */
.about-section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0 0 28px;
}
.about-section-title em  { font-style: italic; color: var(--gold); }
.about-section-title--light { color: #f5f2ec; }

/* ── Scroll animation ── */
.will-animate {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.will-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.about-hero-luxury {
    position: relative;
    min-height: 100vh;
    background: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 76px;
}

/* Noise texture overlay */
.about-hero__noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

/* Radial glow */
.about-hero-luxury::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(201,170,113,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 30%, rgba(201,170,113,0.06) 0%, transparent 45%);
    pointer-events: none;
}

/* Animated vertical lines */
.about-hero__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.about-hero__lines span {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,170,113,0.18), transparent);
    animation: about-line-rise 9s ease-in-out infinite;
}
.about-hero__lines span:nth-child(1) { left: 18%; height: 55%; top: 22%; animation-delay: 0s; }
.about-hero__lines span:nth-child(2) { left: 50%; height: 40%; top: 30%; animation-delay: 3s; }
.about-hero__lines span:nth-child(3) { left: 82%; height: 50%; top: 18%; animation-delay: 6s; }

@keyframes about-line-rise {
    0%, 100% { opacity: 0; transform: translateY(24px); }
    50%       { opacity: 1; transform: translateY(0); }
}

/* Hero content */
.about-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 860px;
}

.about-hero__eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    margin-bottom: 28px;
}

.about-hero__title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    color: #f5f2ec;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0 0 28px;
    animation: about-fade-up 1.2s ease both;
}
.about-hero__title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.about-hero__sub {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(245,242,236,0.55);
    margin: 0 auto 60px;
    max-width: 520px;
    animation: about-fade-up 1.2s 0.2s ease both;
}

/* Scroll indicator */
.about-hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: about-fade-up 1.2s 0.4s ease both;
}
.about-hero__scroll-line {
    display: block;
    width: 1px;
    height: 55px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: about-scroll-pulse 2.2s ease-in-out infinite;
}
.about-hero__scroll-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201,170,113,0.45);
}

@keyframes about-scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* Floating number accents */
.about-hero__accent {
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    color: rgba(201,170,113,0.08);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}
.about-hero__accent--1 {
    font-size: 220px;
    font-weight: 300;
    bottom: -20px;
    right: 5%;
    line-height: 1;
    letter-spacing: -10px;
}
.about-hero__accent--2 {
    font-size: 80px;
    top: 15%;
    left: 6%;
    animation: about-spin 20s linear infinite;
}

@keyframes about-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes about-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ══════════════════════════════════════════════
   INTRO
══════════════════════════════════════════════ */
.about-intro {
    position: relative;
    background: var(--cream);
    padding: 130px 8%;
    overflow: hidden;
}

.about-intro__number {
    position: absolute;
    top: 60px;
    right: 7%;
    font-family: "Cormorant Garamond", serif;
    font-size: 160px;
    font-weight: 300;
    color: rgba(46,42,38,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.about-intro__title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0;
}

.about-intro__right p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 22px;
}
.about-intro__right p:last-of-type { margin-bottom: 40px; }

/* Stats row */
.about-intro__stat-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(201,170,113,0.2);
    padding-top: 36px;
}

.about-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 30px;
}
.about-stat strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 400;
    color: var(--text);
    line-height: 1;
}
.about-stat span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
}

.about-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(201,170,113,0.25);
    flex-shrink: 0;
    margin: 0 30px;
}

/* ══════════════════════════════════════════════
   STATEMENT / QUOTE
══════════════════════════════════════════════ */
.about-statement {
    position: relative;
    background: var(--dark);
    padding: 140px 8%;
    overflow: hidden;
}

.about-statement__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(100px, 18vw, 260px);
    font-weight: 300;
    color: rgba(201,170,113,0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: 20px;
}

.about-statement__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.about-statement__line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.about-statement__quote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    color: #f5f2ec;
    line-height: 1.6;
    letter-spacing: 0.5px;
    margin: 0;
    font-style: normal;
}
.about-statement__quote em {
    font-style: italic;
    color: var(--gold);
}

.about-statement__sig {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201,170,113,0.55);
}

/* ══════════════════════════════════════════════
   EXPERIENCE
══════════════════════════════════════════════ */
.about-experience {
    position: relative;
    background: var(--warm);
    padding: 130px 8%;
    overflow: hidden;
}

.about-experience__number {
    position: absolute;
    top: 60px;
    left: 6%;
    font-family: "Cormorant Garamond", serif;
    font-size: 160px;
    font-weight: 300;
    color: rgba(46,42,38,0.04);
    line-height: 1;
    pointer-events: none;
}

.about-experience__header {
    max-width: 1300px;
    margin: 0 auto 70px;
}

.about-experience__body {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-experience__text p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 22px;
}

/* Scent profile cards */
.about-scents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-scent-card {
    background: #fff;
    border: 1px solid rgba(201,170,113,0.2);
    border-radius: 4px;
    padding: 24px 20px;
    transition: all 0.35s ease;
}
.about-scent-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201,170,113,0.5);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}
.about-scent-card__icon {
    font-size: 26px;
    margin-bottom: 12px;
    display: block;
}
.about-scent-card h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    margin: 0 0 6px;
}
.about-scent-card p {
    font-size: 13px;
    line-height: 1.65;
    color: var(--mid);
    margin: 0;
}

/* Takeaway box */
.about-experience__takeaway {
    max-width: 1300px;
    margin: 60px auto 0;
}

.about-takeaway-box {
    background: var(--dark);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
    padding: 32px 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 700px;
}
.about-takeaway-box__icon {
    color: var(--gold);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.about-takeaway-box p {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(245,242,236,0.75);
    margin: 0;
}
.about-takeaway-box strong { color: #f5f2ec; }

/* ══════════════════════════════════════════════
   VISION
══════════════════════════════════════════════ */
.about-vision {
    position: relative;
    background: var(--dark-3);
    padding: 130px 8%;
    overflow: hidden;
}

.about-vision__number {
    position: absolute;
    top: 60px;
    right: 6%;
    font-family: "Cormorant Garamond", serif;
    font-size: 160px;
    font-weight: 300;
    color: rgba(201,170,113,0.04);
    line-height: 1;
    pointer-events: none;
}

.about-vision__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

/* Glowing orb */
.about-vision__orb {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(201,170,113,0.15), transparent 70%);
    border: 1px solid rgba(201,170,113,0.15);
    margin-bottom: 50px;
    position: relative;
    animation: about-orb-pulse 4s ease-in-out infinite;
}
.about-vision__orb::after {
    content: "";
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(201,170,113,0.1);
}

@keyframes about-orb-pulse {
    0%, 100% { box-shadow: 0 0 40px rgba(201,170,113,0.1); }
    50%       { box-shadow: 0 0 80px rgba(201,170,113,0.2); }
}

/* Pillars */
.about-vision__pillars {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-pillar {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(201,170,113,0.1);
}
.about-pillar:last-child { border-bottom: none; padding-bottom: 0; }

.about-pillar__num {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-weight: 300;
    color: rgba(201,170,113,0.4);
    line-height: 1;
    padding-top: 4px;
}

.about-pillar h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    color: #f5f2ec;
    margin: 0 0 6px;
}

.about-pillar p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(245,242,236,0.45);
    margin: 0;
    grid-column: 2;
}

/* Right copy */
.about-vision__right {
    padding-top: 20px;
}

.about-vision__body {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(245,242,236,0.55);
    margin-bottom: 22px;
}
.about-vision__body em { color: var(--gold); font-style: italic; }

/* ══════════════════════════════════════════════
   LOCATION
══════════════════════════════════════════════ */
.about-location {
    background: var(--cream);
    padding: 130px 8%;
}

.about-location__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
}

.about-location__left p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--mid);
    margin-bottom: 32px;
}

.about-location__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1px solid rgba(201,170,113,0.35);
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 1.5px;
    color: var(--text);
    background: #fff;
}

/* SEO list styled as elegant pills */
.about-location__searches-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 24px;
    display: block;
}

.about-seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-seo-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text);
    padding: 16px 20px;
    background: #fff;
    border: 1px solid rgba(201,170,113,0.18);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.about-seo-list li:hover {
    border-color: rgba(201,170,113,0.5);
    transform: translateX(5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.about-seo-list li span:first-child {
    color: var(--gold);
    font-size: 10px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.about-cta-luxury {
    position: relative;
    background: var(--dark);
    padding: 160px 8%;
    text-align: center;
    overflow: hidden;
}

.about-cta__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(100px, 20vw, 280px);
    font-weight: 300;
    color: rgba(201,170,113,0.03);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 20px;
}

.about-cta__noise {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,170,113,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.about-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta__title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 300;
    color: #f5f2ec;
    line-height: 1.1;
    margin: 12px 0 24px;
}
.about-cta__title em { font-style: italic; color: var(--gold); display: block; }

.about-cta__sub {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(245,242,236,0.5);
    margin: 0 auto 50px;
}

.about-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.35s ease;
    border-radius: 3px;
}

.about-cta__btn--primary {
    background: linear-gradient(135deg, var(--gold), #b48a2c);
    color: #000000 !important;
    border: none;
    font-weight: 800 !important;
    text-shadow: none !important;
}
.about-cta__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(201,170,113,0.4);
    color: #000000 !important;
}
.about-cta__btn--primary,
.about-cta__btn--primary:link,
.about-cta__btn--primary:visited,
.about-cta__btn--primary:hover {
    color: #000000 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}
.about-cta__btn--primary .about-cta__arrow {
    transition: transform 0.3s ease;
}
.about-cta__btn--primary:hover .about-cta__arrow {
    transform: translateX(5px);
}

.about-cta__btn--ghost {
    background: transparent;
    color: rgba(245,242,236,0.65);
    border: 1px solid rgba(201,170,113,0.3);
}
.about-cta__btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,170,113,0.06);
}

/* Floating accent dots */
.about-cta__accent {
    position: absolute;
    font-size: 24px;
    color: rgba(201,170,113,0.15);
    animation: about-float 6s ease-in-out infinite;
    pointer-events: none;
}
.about-cta__accent--1 { top: 20%; left: 8%; animation-delay: 0s; }
.about-cta__accent--2 { bottom: 25%; right: 8%; animation-delay: 3s; font-size: 14px; }

@keyframes about-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50%       { transform: translateY(-12px) rotate(180deg); opacity: 0.3; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .about-intro,
    .about-experience,
    .about-vision,
    .about-location { padding: 100px 6%; }

    .about-intro__grid,
    .about-experience__body,
    .about-vision__grid,
    .about-location__inner { gap: 60px; }
}

@media (max-width: 900px) {
    .about-intro__grid,
    .about-experience__body,
    .about-vision__grid,
    .about-location__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-intro,
    .about-experience,
    .about-vision,
    .about-location,
    .about-statement,
    .about-cta-luxury { padding: 80px 6%; }

    .about-intro__number,
    .about-experience__number,
    .about-vision__number { font-size: 100px; }

    .about-vision__orb { display: none; }

    .about-hero__accent--1 { font-size: 130px; }
}

@media (max-width: 640px) {
    .about-hero-luxury { padding-top: 76px; }
    .about-hero__title { letter-spacing: -0.5px; }

    .about-intro,
    .about-experience,
    .about-vision,
    .about-location,
    .about-statement,
    .about-cta-luxury { padding: 70px 16px; }

    .about-scents { grid-template-columns: 1fr; }

    .about-intro__stat-row { flex-direction: column; align-items: flex-start; gap: 24px; }
    .about-stat-divider { width: 40px; height: 1px; margin: 0; }

    .about-cta__actions { flex-direction: column; align-items: center; }
    .about-cta__btn { width: 100%; max-width: 320px; justify-content: center; }

    .about-seo-list li { font-size: 14px; }

    .about-hero__accent--1 { font-size: 80px; }
    .about-hero__accent--2 { font-size: 50px; }

    .about-pillar { grid-template-columns: 36px 1fr; }
}


/* ============================================================
   SHIVI PERFUMERY — CONTACT PAGE
   Paste at the bottom of style.css
   ============================================================ */

.luxury-contact {
    --gold:      #c9aa71;
    --gold-soft: rgba(201,170,113,0.2);
    --dark:      #0b0b0b;
    --dark-2:    #111;
    --cream:     #f6f3ef;
    --warm:      #f0ebe2;
    --text:      #2e2a26;
    --mid:       #7a7060;
    overflow-x: hidden;
}

/* ── Shared label ── */
.lc-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    opacity: 0.9;
}
.lc-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.75;
    margin-bottom: 26px;
}
.lc-eyebrow--dark { color: var(--gold); }

/* ── Scroll animation ── */
.lc-will-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.lc-will-animate.lc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.lc-hero {
    position: relative;
    min-height: 100vh;
    background: #0b0b0b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 76px;
}

/* Radial gold glow */
.lc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 65%, rgba(201,170,113,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 25%, rgba(201,170,113,0.06) 0%, transparent 45%);
    pointer-events: none;
}

/* Noise */
.lc-hero__noise {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* Animated lines */
.lc-hero__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.lc-hero__lines span {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(201,170,113,0.18), transparent);
    animation: lc-line 9s ease-in-out infinite;
}
.lc-hero__lines span:nth-child(1) { left: 15%; height: 55%; top: 22%; animation-delay: 0s; }
.lc-hero__lines span:nth-child(2) { left: 50%; height: 40%; top: 30%; animation-delay: 3s; }
.lc-hero__lines span:nth-child(3) { left: 85%; height: 50%; top: 18%; animation-delay: 6s; }

@keyframes lc-line {
    0%, 100% { opacity: 0; transform: translateY(24px); }
    50%       { opacity: 1; transform: translateY(0); }
}

/* Hero inner */
.lc-hero__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 820px;
}

.lc-hero__title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(54px, 8vw, 96px);
    font-weight: 300;
    color: #f5f2ec;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 0 0 28px;
    animation: lc-fade-up 1.2s ease both;
}
.lc-hero__title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.lc-hero__sub {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(245,242,236,0.5);
    margin: 0 auto 60px;
    letter-spacing: 1px;
    animation: lc-fade-up 1.2s 0.15s ease both;
}

/* Scroll indicator */
.lc-hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: lc-fade-up 1.2s 0.3s ease both;
}
.lc-hero__scroll-line {
    display: block;
    width: 1px;
    height: 55px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: lc-pulse 2.2s ease-in-out infinite;
}
.lc-hero__scroll-label {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(201,170,113,0.4);
}

@keyframes lc-pulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* Accent stars */
.lc-hero__accent {
    position: absolute;
    font-size: 20px;
    color: rgba(201,170,113,0.12);
    animation: lc-float 7s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
.lc-hero__accent--1 { top: 22%; left: 7%; animation-delay: 0s; }
.lc-hero__accent--2 { bottom: 28%; right: 7%; animation-delay: 3.5s; font-size: 14px; }

/* Big ghost letter */
.lc-hero__bg-num {
    position: absolute;
    bottom: -40px;
    right: 4%;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(160px, 22vw, 300px);
    font-weight: 300;
    color: rgba(201,170,113,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

@keyframes lc-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes lc-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
    50%       { transform: translateY(-12px) rotate(180deg); opacity: 0.25; }
}

/* ══════════════════════════════════════════════
   MAIN CONTACT GRID
══════════════════════════════════════════════ */
.lc-main {
    background: var(--cream);
    padding: 120px 8%;
}

.lc-main__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: start;
}

/* ── INFO COLUMN ── */
.lc-info__title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.1;
    letter-spacing: 1px;
    margin: 0 0 50px;
}

/* Info blocks */
.lc-info__blocks {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lc-block {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 18px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(201,170,113,0.15);
    transition: all 0.3s ease;
}
.lc-block:first-child { border-top: 1px solid rgba(201,170,113,0.15); }
.lc-block:hover { padding-left: 6px; }

.lc-block__icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,170,113,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    transition: all 0.3s ease;
    margin-top: 2px;
}
.lc-block:hover .lc-block__icon {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}
.lc-block__icon svg {
    width: 16px;
    height: 16px;
}

.lc-block__content h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 8px;
    font-weight: 500;
}
.lc-block__content p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--mid);
    margin: 0;
}
.lc-block__content a {
    color: var(--mid);
    text-decoration: none;
    transition: color 0.2s ease;
}
.lc-block__content a:hover { color: var(--text); }

.lc-closed-tag {
    display: inline-block;
    margin-top: 8px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(201,170,113,0.7);
    border: 1px solid rgba(201,170,113,0.25);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Social row */
.lc-social {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(201,170,113,0.15);
}
.lc-social__label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    display: block;
    margin-bottom: 16px;
}
.lc-social__links {
    display: flex;
    gap: 12px;
}
.lc-social__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(201,170,113,0.3);
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}
.lc-social__link svg { width: 14px; height: 14px; color: var(--gold); }
.lc-social__link:hover {
    background: var(--text);
    color: var(--gold);
    border-color: var(--text);
}
.lc-social__link:hover svg { color: var(--gold); }

/* ── FORM COLUMN ── */
.lc-form-card {
    background: #fff;
    border: 1px solid rgba(201,170,113,0.2);
    border-radius: 6px;
    padding: 56px 50px;
    position: sticky;
    top: 100px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.06);
}

.lc-form-card__title {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.lc-form-card__intro {
    font-size: 15px;
    line-height: 1.8;
    color: var(--mid);
    margin: 0 0 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(201,170,113,0.15);
}

/* ── CF7 Form Override ── */
.lc-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lc-form-wrapper .wpcf7-form p {
    margin: 0 0 18px;
}

.lc-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9a8e82;
    margin-bottom: 8px;
    font-weight: 500;
}

.lc-form-wrapper .wpcf7-form input[type="text"],
.lc-form-wrapper .wpcf7-form input[type="email"],
.lc-form-wrapper .wpcf7-form input[type="tel"],
.lc-form-wrapper .wpcf7-form select,
.lc-form-wrapper .wpcf7-form textarea {
    width: 100% !important;
    background: #f9f7f4 !important;
    border: 1px solid rgba(201,170,113,0.25) !important;
    border-radius: 4px !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
    color: var(--text) !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.lc-form-wrapper .wpcf7-form input:focus,
.lc-form-wrapper .wpcf7-form textarea:focus,
.lc-form-wrapper .wpcf7-form select:focus {
    border-color: var(--gold) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(201,170,113,0.1) !important;
}

.lc-form-wrapper .wpcf7-form textarea {
    min-height: 130px !important;
    resize: vertical !important;
}

.lc-form-wrapper .wpcf7-form input[type="submit"] {
    width: 100% !important;
    background: #1a1a1a !important;
    color: var(--gold) !important;
    border: 1px solid rgba(201,170,113,0.3) !important;
    border-radius: 4px !important;
    padding: 16px 36px !important;
    font-size: 11px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.35s ease !important;
    margin-top: 8px !important;
    font-family: inherit !important;
}
.lc-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background: var(--gold) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(201,170,113,0.3) !important;
}

/* CF7 validation */
.lc-form-wrapper .wpcf7-not-valid-tip {
    font-size: 11px !important;
    color: #c0392b !important;
    margin-top: 4px !important;
    letter-spacing: 0.5px !important;
}
.lc-form-wrapper .wpcf7-response-output {
    margin-top: 16px !important;
    padding: 14px 18px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    border: 1px solid rgba(201,170,113,0.3) !important;
    color: var(--gold) !important;
    background: rgba(201,170,113,0.06) !important;
}

/* ══════════════════════════════════════════════
   MAP
══════════════════════════════════════════════ */
.lc-map {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.lc-map__frame {
    position: absolute;
    inset: 0;
}

.lc-map__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: grayscale(30%) contrast(1.05);
}

.lc-map__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(11,11,11,0.75) 0%,
        rgba(11,11,11,0.4) 45%,
        rgba(11,11,11,0.1) 100%
    );
    pointer-events: none;
}

.lc-map__card {
    position: relative;
    z-index: 2;
    padding: 60px 8%;
    max-width: 520px;
    pointer-events: none;
}

.lc-map__card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    color: #f5f2ec;
    line-height: 1.15;
    margin: 0 0 16px;
}
.lc-map__card h2 em { font-style: italic; color: var(--gold); }

.lc-map__card p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(245,242,236,0.55);
    margin: 0 0 32px;
}

.lc-map__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold), #b48a2c);
    color: #000000 !important;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 800;
    border-radius: 3px;
    transition: all 0.35s ease;
    pointer-events: auto;
    text-shadow: none !important;
}
.lc-map__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(201,170,113,0.4);
    color: #000000 !important;
}
.lc-map__btn,
.lc-map__btn:link,
.lc-map__btn:visited,
.lc-map__btn:hover {
    color: #000000 !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}
/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .lc-main { padding: 100px 6%; }
    .lc-main__inner { gap: 60px; }
    .lc-form-card { padding: 44px 36px; position: static; }
}

@media (max-width: 900px) {
    .lc-main__inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .lc-map { height: 700px; flex-direction: column; align-items: flex-start; }
    .lc-map__card { padding: 40px 6%; max-width: 100%; }
    .lc-map__overlay {
        background: linear-gradient(
            to top,
            rgba(11,11,11,0.85) 0%,
            rgba(11,11,11,0.4) 55%,
            rgba(11,11,11,0.1) 100%
        );
    }
}

@media (max-width: 640px) {
    .lc-main { padding: 70px 16px; }
    .lc-form-card { padding: 32px 22px; }
    .lc-hero__title { letter-spacing: -0.5px; }
    .lc-map { height: 620px; }
    .lc-map__card { padding: 32px 16px; }
    .lc-social__links { flex-wrap: wrap; }
    .lc-block { grid-template-columns: 38px 1fr; gap: 14px; }
}

/* ============================================================
   SHIVI PERFUMERY — HERO SECTION
   Paste at the bottom of style.css
   ============================================================ */

/* ── Hero wrapper ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Videos ── */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-video.mobile-video  { display: none; }
.hero-video.desktop-video { display: block; }

/* ── Layered overlay ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Dark vignette + gold undertone at the bottom */
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.28) 0%,
            rgba(0,0,0,0.18) 40%,
            rgba(0,0,0,0.55) 80%,
            rgba(11,8,4,0.72) 100%
        ),
        radial-gradient(ellipse at 50% 80%, rgba(201,170,113,0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ── Content block ── */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 820px;
    width: 100%;
    /* Subtle upward shift so content sits in the golden third */
    margin-top: -5vh;
}

/* Eyebrow line */
.hero-content::before {
    content: "✦  Shivi Perfumery  ✦";
    display: block;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(201,170,113,0.7);
    margin-bottom: 22px;
    animation: hero-fade-up 1.2s ease both;
}

/* Headline */
.hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 300;
    color: #f5f2ec;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin: 0 0 24px;
    animation: hero-fade-up 1.2s 0.1s ease both;
}

/* Decorative rule under h1 */
.hero-content h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #c9aa71, transparent);
    margin: 22px auto 0;
}

/* Subtext */
.hero-content p {
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.85;
    color: rgba(245,242,236,0.65);
    max-width: 560px;
    margin: 0 auto 40px;
    letter-spacing: 0.3px;
    animation: hero-fade-up 1.2s 0.2s ease both;
}

/* ── Buttons ── */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    animation: hero-fade-up 1.2s 0.3s ease both;
}

/* Primary — solid white */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: #f5f2ec;
    color: #0b0b0b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.35s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}
.btn-primary:hover {
    background: transparent;
    color: #f5f2ec;
    border-color: rgba(245,242,236,0.6);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Outline — ghost */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: transparent;
    color: rgba(245,242,236,0.75);
    border: 1px solid rgba(201,170,113,0.45);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.35s ease;
    white-space: nowrap;
}
.btn-outline:hover {
    background: rgba(201,170,113,0.1);
    border-color: #c9aa71;
    color: #c9aa71;
    transform: translateY(-2px);
}

/* ── Scroll hint (optional — add <div class="hero-scroll-hint"></div> after buttons) ── */
.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: hero-fade-up 1.4s 0.5s ease both;
}
.hero-scroll-hint::before {
    content: "";
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, #c9aa71, transparent);
    animation: hero-scroll-pulse 2.2s ease-in-out infinite;
}
.hero-scroll-hint::after {
    content: "Scroll";
    font-size: 9px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(201,170,113,0.4);
}

@keyframes hero-scroll-pulse {
    0%, 100% { opacity: 0.3; }
    50%       { opacity: 1; }
}

/* ── Animations ── */
@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* Swap to mobile video */
@media (max-width: 768px) {
    .hero-video.desktop-video { display: none; }
    .hero-video.mobile-video  { display: block; }

    .hero-content {
        padding: 0 20px;
        margin-top: 0;
    }

    .hero-content h1 {
        font-size: clamp(38px, 10vw, 56px);
        letter-spacing: 0;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .hero-content::before {
        letter-spacing: 4px;
        font-size: 9px;
    }
}

/* ============================================================
   HERO — TEXT VISIBILITY FIX
   Replace the matching rules in your hero.css with these
   ============================================================ */

/* ── Stronger overlay — the key fix ── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.45) 0%,       /* top: darker so eyebrow reads */
            rgba(0,0,0,0.35) 30%,      /* upper mid: slightly lighter */
            rgba(0,0,0,0.55) 65%,      /* lower mid: darkens around text */
            rgba(8,5,2,0.80) 100%      /* bottom: very dark for buttons */
        ),
        radial-gradient(ellipse at 50% 55%, rgba(8,5,2,0.40) 0%, transparent 65%);
    pointer-events: none;
}

/* ── Eyebrow — brighter gold ── */
.hero-content::before {
    content: "✦  Shivi Perfumery  ✦";
    display: block;
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #d4b87a;                    /* brighter gold, not faint */
    margin-bottom: 22px;
    animation: hero-fade-up 1.2s ease both;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

/* ── Headline — pure white with strong text shadow ── */
.hero-content h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 300;
    color: #ffffff;                    /* pure white, not cream */
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin: 0 0 24px;
    animation: hero-fade-up 1.2s 0.1s ease both;
    /* Multi-layer shadow creates depth + separation from video */
    text-shadow:
        0 2px 4px rgba(0,0,0,0.9),
        0 4px 20px rgba(0,0,0,0.7),
        0 8px 40px rgba(0,0,0,0.5);
}

/* ── Gold italic — deeper, richer gold ── */
.hero-content h1 em {
    font-style: italic;
    /* Deep amber-gold that pops against warm video tones */
    color: #e8c97a;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.95),
        0 4px 20px rgba(0,0,0,0.8),
        0 0 40px rgba(201,150,0,0.3);  /* subtle warm glow */
}

/* ── Rule under h1 ── */
.hero-content h1::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4b87a, transparent);
    margin: 22px auto 0;
}

/* ── Body text — white with shadow ── */
.hero-content p {
    font-size: clamp(14px, 1.6vw, 17px);
    line-height: 1.85;
    color: rgba(255,255,255,0.88);     /* bright white, not faded cream */
    max-width: 560px;
    margin: 0 auto 40px;
    letter-spacing: 0.3px;
    animation: hero-fade-up 1.2s 0.2s ease both;
    text-shadow: 0 1px 12px rgba(0,0,0,0.75), 0 2px 4px rgba(0,0,0,0.9);
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: rgba(255,255,255,0.96);
    color: #0b0b0b;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.35s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4); /* lifts off video */
}
.btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    background: rgba(0,0,0,0.25);      /* semi-dark backing */
    color: #fff;
    border: 1px solid rgba(212,184,122,0.7); /* brighter gold border */
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.35s ease;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-outline:hover {
    background: rgba(212,184,122,0.15);
    border-color: #e8c97a;
    color: #e8c97a;
    transform: translateY(-2px);
}

/* ============================================================
   MOBILE MENU FIX — full screen, no cropping
   ============================================================ */

.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100vh !important;
    background: #0b0b0b !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden !important;
}

.mobile-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.mobile-menu-inner {
    width: 100% !important;
    text-align: center !important;
    padding: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.mobile-menu-inner a {
    display: block !important;
    font-family: "Cormorant Garamond", serif !important;
    font-size: 28px !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #e8dcc7 !important;
    padding: 16px 0 !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.mobile-menu-inner a:hover {
    color: #c9aa71 !important;
}

.mobile-close {
    position: fixed !important;
    top: 24px !important;
    right: 24px !important;
    font-size: 28px !important;
    background: none !important;
    border: none !important;
    color: #c9aa71 !important;
    cursor: pointer !important;
    z-index: 100000 !important;
    line-height: 1 !important;
    padding: 8px !important;
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden !important;
}

body.menu-open::after {
    display: none !important;
}

/* ============================================================
   SHOP COLLECTION CARDS — FIX CLICKS
   ============================================================ */

#shivi-collection-root .shivi-collection-card {
    cursor: pointer !important;
    pointer-events: all !important;
}

#shivi-collection-root .shivi-collection-card::after {
    pointer-events: none !important;
    z-index: 1 !important;
}

#shivi-collection-root .shivi-collection-card img {
    pointer-events: none !important;
    position: relative !important;
    z-index: 0 !important;
}


/* ============================================================
   HEADER FIX — CATEGORY & WOOCOMMERCE PAGES
   ============================================================ */

/* Ensure header stays gold/dark — not overridden on category pages */
body.tax-product_cat .site-header,
body.post-type-archive-product .site-header {
    background: #0b0b0b !important;
    border-bottom: 1px solid rgba(201,170,113,0.18) !important;
}

/* Fix body background so cream shows correctly under fixed header */
body.tax-product_cat,
body.post-type-archive-product {
    background: #f6f3ef !important;
    padding-top: 0 !important; /* shivi-cat-page handles its own padding */
}

/* Make sure the logo and nav colors are correct */
body.tax-product_cat .site-header .logo,
body.post-type-archive-product .site-header .logo {
    color: #c9aa71 !important;
}

body.tax-product_cat .site-header .desktop-nav a,
body.post-type-archive-product .site-header .desktop-nav a {
    color: rgba(201,170,113,0.85) !important;
    
    
    
}

/* ── Mobile menu ── */
.mobile-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: #0b0b0b !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

.mobile-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Fix for BOTH desktop and mobile */
.hero {
    background: #0b0b0b; /* eliminates white flash */
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

@media (max-width: 768px) {
    .hero {
        height: 100svh;
    }
    
    .hero-video.mobile-video {
        object-position: center center !important;
    }
}

/* FIX BEST SELLERS SLIDER OVERFLOW */
.bs-slider-section {
    overflow: hidden !important;
    max-width: 100% !important;
}

.bs-slider-viewport {
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

.bs-slider-track {
    width: max-content !important;
    max-width: none !important;
    overflow: visible !important;
}


/* REMOVE BODY MARGIN/PADDING GAPS */
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
}

/* Fix the WordPress default container */
.wp-site-blocks,
.wp-block-group,
#page,
#content,
#primary,
#main,
.site,
.site-content {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* GLOBAL LINK COLOUR FIX */
a,
a:link,
a:visited {
    color: #c9aa71 !important;
    text-decoration: none !important;
}

a:hover,
a:focus {
    color: #ffffff !important;
}

/* WooCommerce links */
.woocommerce a,
.woocommerce-page a {
    color: #c9aa71 !important;
}

.woocommerce a:hover,
.woocommerce-page a:hover {
    color: #ffffff !important;
}

.cf7-req {
    color: #d4af37;
    margin-left: 3px;
}

.cf7-row {
    margin-bottom: 18px;
}

.cf7-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #aaa;
    letter-spacing: 0.05em;
}

.corp-slider-section {
    background: #fff;
    padding: 70px 0 60px;
    overflow: hidden;
}

.corp-slider-header {
    text-align: center;
    margin-bottom: 50px;
}

.corp-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c9aa71;
    margin-bottom: 10px;
}

.corp-slider-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 400;
    color: #111;
    margin: 0;
}

.corp-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.corp-slider-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: corpScroll 30s linear infinite;
}

.corp-slider-track:hover {
    animation-play-state: paused;
}

.corp-logo-card {
    flex: 0 0 auto;
    width: 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
}

.corp-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.corp-logo-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

@keyframes corpScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.corp-slider-section {
    background: #fff;
    padding: 70px 0 60px;
    overflow: hidden;
}

.corp-slider-header {
    text-align: center;
    margin-bottom: 50px;
}

.corp-eyebrow {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #c9aa71;
    margin-bottom: 10px;
}

.corp-slider-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 400;
    color: #111;
    margin: 0;
}

.corp-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.corp-slider-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: corpScroll 30s linear infinite;
}

.corp-slider-track:hover {
    animation-play-state: paused;
}

.corp-logo-card {
    flex: 0 0 auto;
    width: 220px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
}

.corp-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.corp-logo-card:hover img {
    transform: scale(1.08);
    opacity: 1;
}

@keyframes corpScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .corp-slider-track {
        gap: 30px;
    }

    .corp-logo-card {
        width: 180px;
        height: 100px;
    }

    .corp-logo-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: scale(1.25);
    }
}

/* ============================================================
   SHIVI GIFT CARD SYSTEM — STYLES
   Paste at the very bottom of your style.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@200;300;400;500&display=swap');

:root {
  --gc-cream:      #F7F3EE;
  --gc-dark:       #1A1610;
  --gc-gold:       #C9A84C;
  --gc-gold-light: #E8D5A3;
  --gc-charcoal:   #2C2820;
  --gc-warm-grey:  #8A8078;
  --gc-accent:     #7A3B2E;
  --gc-border:     rgba(26,22,16,0.10);
}

/* ============================================================
   GIFT CARD LISTING PAGE (page-gift-cards.php)
   ============================================================ */

.gift-page {
  background: var(--gc-cream);
  font-family: 'Jost', sans-serif;
  color: var(--gc-dark);
  overflow-x: hidden;
}

/* ── Hero ── */
.gift-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--gc-dark);
  overflow: hidden;
}

.gift-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 60%, rgba(201,168,76,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(122,59,46,0.15) 0%, transparent 70%);
}

.gift-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: gcFadeUp 0.8s ease 0.2s forwards;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gc-gold);
  opacity: 0.6;
}

.gift-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--gc-cream);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: gcFadeUp 0.9s ease 0.4s forwards;
}

.gift-hero h1 em {
  font-style: italic;
  color: var(--gc-gold-light);
}

.gift-hero p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(247,243,238,0.65);
  max-width: 500px;
  margin: 0 auto 48px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: gcFadeUp 0.9s ease 0.6s forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gc-gold, #c9aa71);
  color: #000000 !important;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: all 0.3s ease;
  animation: gcFadeUp 0.9s ease 0.8s both;
}
.hero-cta:hover {
  background: var(--gc-gold-light, #d4b87a);
  gap: 16px;
  color: #000000 !important;
}
.hero-cta,
.hero-cta:link,
.hero-cta:visited,
.hero-cta:hover {
  color: #000000 !important;
  font-weight: 800 !important;
  text-shadow: none !important;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: gcFadeIn 1s ease 1.2s forwards;
}

.hero-scroll-hint span {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gc-gold), transparent);
  animation: gcScrollPulse 2s ease infinite;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: 20px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gc-gold);
  opacity: 0.5;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--gc-dark);
  letter-spacing: -0.01em;
}

.section-header h2 em {
  font-style: italic;
  color: var(--gc-accent);
}

/* ── Products Section ── */
.gift-products {
  padding: 100px 24px;
  background: var(--gc-cream);
}

.gift-products .container {
  max-width: 1100px;
  margin: 0 auto;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

@media (max-width: 700px) {
  .gift-grid { grid-template-columns: 1fr; }
}

.gift-card-item {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease;
}

.gift-card-item:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 24px 60px rgba(26,22,16,0.12);
}

.gift-card-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gc-gold), var(--gc-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 3;
}

.gift-card-item:hover::before {
  transform: scaleX(1);
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1A1610 0%, #2C2820 50%, #3A3028 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.card-visual {
  width: 80%;
  max-width: 280px;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(247,243,238,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.card-visual-bow { font-size: 2.2rem; line-height: 1; }

.card-visual-label {
  font-family: 'Jost', sans-serif;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gc-gold);
}

.card-visual-line {
  width: 40px;
  height: 1px;
  background: rgba(201,168,76,0.4);
}

.card-visual-dots { display: flex; gap: 6px; }

.card-visual-dots span {
  width: 20px;
  height: 6px;
  border-radius: 2px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.3);
}

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gc-gold);
  color: var(--gc-dark);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gift-card-item:hover .card-image-wrap img {
  transform: scale(1.04);
}

.card-body {
  padding: 36px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-type {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: 12px;
}

.card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--gc-dark);
  margin-bottom: 16px;
}

.card-body p.card-desc {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gc-warm-grey);
  margin-bottom: 28px;
  flex: 1;
}

.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--gc-border);
  padding-top: 24px;
  margin-top: auto;
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gc-dark);
  line-height: 1;
}

.card-price .woocommerce-Price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
}

.btn-gift {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gc-dark);
  color: var(--gc-cream);
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 24px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gift:hover {
  background: var(--gc-gold);
  color: var(--gc-dark);
  gap: 12px;
}

/* ── How It Works ── */
.gift-how {
  padding: 100px 24px;
  background: var(--gc-dark);
  position: relative;
  overflow: hidden;
}

.gift-how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.gift-how .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 700px) {
  .steps-grid { grid-template-columns: 1fr; }
}

.step-item {
  padding: 48px 40px;
  background: rgba(247,243,238,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s ease;
}

.step-item:hover {
  background: rgba(201,168,76,0.05);
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 24px;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: block;
}

.step-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gc-cream);
  margin-bottom: 12px;
}

.step-item p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(247,243,238,0.5);
}

/* ── Assurance Strip ── */
.gift-assurance {
  padding: 60px 24px;
  background: var(--gc-gold);
}

.assurance-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.assurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.assurance-item span:first-child { font-size: 1.5rem; }

.assurance-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gc-dark);
}

/* ============================================================
   GIFT CARD SINGLE PRODUCT PAGE
   ============================================================ */

/* ── Overall page background ── */
.single-product.posttype-product .site-main,
.single-product.posttype-product #main,
.single-product.posttype-product #page {
  background: var(--gc-cream);
}

/* ── Breadcrumb ── */
.single-product .woocommerce-breadcrumb {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gc-warm-grey);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

/* ── Product wrapper layout ── */
.single-product div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  align-items: start;
  font-family: 'Jost', sans-serif;
}

@media (max-width: 860px) {
  .single-product div.product {
    grid-template-columns: 1fr;
    padding: 24px 20px 60px;
  }
}

/* ── Image column ── */
.single-product div.product .woocommerce-product-gallery {
  grid-column: 1;
  grid-row: 1 / span 3;
  position: sticky;
  top: 80px;
  background: linear-gradient(135deg, #1A1610 0%, #2C2820 60%, #3A3028 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 860px) {
  .single-product div.product .woocommerce-product-gallery {
    grid-row: auto;
    position: static;
  }
}

/* ── Product gallery image ── */
.single-product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Floating card mock (shown when no product image) ── */
.gc-placeholder-wrap {
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gc-placeholder-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 70%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 75% 25%, rgba(122,59,46,0.14) 0%, transparent 60%);
}

.gc-placeholder-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(201,168,76,0.03) 50px, rgba(201,168,76,0.03) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(201,168,76,0.03) 50px, rgba(201,168,76,0.03) 51px);
}

.gc-card-mock {
  position: relative;
  z-index: 2;
  width: 72%;
  max-width: 320px;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(247,243,238,0.06));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.1);
  animation: gcCardFloat 4s ease-in-out infinite;
}

@keyframes gcCardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(1deg); }
}

.gc-card-mock .gc-mock-bow  { font-size: 2.5rem; }
.gc-card-mock .gc-mock-label {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gc-gold);
}
.gc-card-mock .gc-mock-line {
  width: 50px; height: 1px;
  background: rgba(201,168,76,0.4);
}
.gc-card-mock .gc-mock-dots { display: flex; gap: 6px; }
.gc-card-mock .gc-mock-dots span {
  width: 22px; height: 7px;
  border-radius: 2px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
}

/* ── Summary column ── */
.single-product div.product .summary {
  grid-column: 2;
  padding-left: 64px;
}

@media (max-width: 860px) {
  .single-product div.product .summary {
    grid-column: 1;
    padding-left: 0;
    padding-top: 36px;
  }
}

/* ── Eyebrow ── */
.gc-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gc-gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.gc-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gc-gold);
  opacity: 0.6;
}

/* ── Product title ── */
.single-product .summary .product_title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--gc-dark);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

/* ── Price ── */
.single-product .summary .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gc-dark);
  display: block;
  margin-bottom: 28px;
  line-height: 1;
}

.single-product .summary .price .woocommerce-Price-currencySymbol {
  font-size: 1.2rem;
  vertical-align: super;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
}

.single-product .summary .price .woocommerce-Price-amount {
  font-family: 'Cormorant Garamond', serif;
}

/* ── Short description ── */
.single-product .summary .woocommerce-product-details__short-description {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gc-warm-grey);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gc-border);
}

/* ── Feature pills ── */
.gc-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.gc-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gc-charcoal);
  background: #ffffff;
  border: 1px solid var(--gc-border);
  padding: 8px 14px;
}

.gc-feature-pill .pill-icon { font-size: 13px; }

/* ── Hide default WC quantity ── */
.single-product .quantity {
  display: none !important;
}

/* ── Custom quantity label ── */
.gc-qty-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gc-dark);
  margin-bottom: 12px;
  display: block;
}

/* ── Quantity row ── */
.gc-qty-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.gc-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--gc-dark);
  background: #ffffff;
}

.gc-qty-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 300;
  color: var(--gc-dark);
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
  line-height: 1;
  font-family: 'Jost', sans-serif;
}

.gc-qty-btn:hover {
  background: var(--gc-dark);
  color: var(--gc-cream);
}

.gc-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gc-qty-btn:disabled:hover {
  background: none;
  color: var(--gc-dark);
}

.gc-qty-display {
  width: 54px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gc-dark);
  border-left: 1.5px solid var(--gc-dark);
  border-right: 1.5px solid var(--gc-dark);
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.gc-qty-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--gc-warm-grey);
  letter-spacing: 0.04em;
}

/* ── Add to cart button ── */
.single-product .summary .single_add_to_cart_button {
  width: 100% !important;
  background: var(--gc-dark) !important;
  color: var(--gc-cream) !important;
  border: none !important;
  border-radius: 0 !important;
  font-family: 'Jost', sans-serif !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.3em !important;
  text-transform: uppercase !important;
  padding: 20px 32px !important;
  cursor: pointer !important;
  transition: background 0.3s ease, color 0.3s ease !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}

.single-product .summary .single_add_to_cart_button:hover {
  background: var(--gc-gold) !important;
  color: var(--gc-dark) !important;
}

/* ── Disclaimer panel ── */
.gc-disclaimer {
  display: none;
  margin-top: 16px;
  padding: 18px 20px;
  background: #FFFDF8;
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 3px solid var(--gc-gold);
  animation: gcDisclaimerIn 0.5s ease forwards;
}

.gc-disclaimer.visible {
  display: block;
}

@keyframes gcDisclaimerIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.gc-disclaimer-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: 10px;
}

.gc-disclaimer p {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gc-charcoal);
}

.gc-disclaimer a {
  color: var(--gc-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Trust badges row ── */
.gc-trust-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--gc-border);
  margin-top: 20px;
}

.gc-trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 10px;
  border-right: 1px solid var(--gc-border);
  text-align: center;
}

.gc-trust-item:last-child { border-right: none; }
.gc-trust-item .ti-icon   { font-size: 1.3rem; }

.gc-trust-item .ti-label {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gc-warm-grey);
  line-height: 1.4;
}

/* ── Toast notification ── */
.gc-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99999;
  background: var(--gc-dark);
  color: var(--gc-cream);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  min-width: 280px;
}

.gc-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.gc-toast-icon {
  width: 36px;
  height: 36px;
  background: var(--gc-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.gc-toast-content { flex: 1; }

.gc-toast-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gc-gold);
  margin-bottom: 3px;
}

.gc-toast-msg {
  font-size: 13px;
  font-weight: 300;
  color: rgba(247,243,238,0.75);
  line-height: 1.4;
}

.gc-toast-close {
  background: none;
  border: none;
  color: var(--gc-warm-grey);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
}

.gc-toast-close:hover { color: var(--gc-cream); }

/* ── WC Tabs ── */
.single-product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--gc-border);
}

.single-product .woocommerce-tabs ul.tabs {
  display: flex;
  border-bottom: 1px solid var(--gc-border);
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.single-product .woocommerce-tabs ul.tabs li {
  margin: 0;
  border: none;
  background: none;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gc-warm-grey);
  text-decoration: none;
  display: block;
  padding: 14px 28px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s ease;
}

.single-product .woocommerce-tabs ul.tabs li.active a,
.single-product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--gc-dark);
  border-bottom-color: var(--gc-gold);
}

/* ── Related products heading ── */
.single-product .related h2,
.single-product .up-sells h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gc-dark);
  margin-bottom: 36px;
}

/* ── Mobile tweaks ── */
@media (max-width: 480px) {
  .card-body { padding: 24px; }
  .card-footer-row { flex-direction: column; align-items: flex-start; }
  .btn-gift { width: 100%; justify-content: center; }
  .step-item { padding: 32px 24px; }
  .gc-trust-row { flex-wrap: wrap; }
  .gc-trust-item { min-width: 50%; }
  .gc-toast { bottom: 16px; right: 16px; left: 16px; min-width: unset; }
}

/* ── Keyframes ── */
@keyframes gcFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gcFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes gcScrollPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}


/* ================================================
   SHIVI — RELATED PRODUCTS GRID FIX
   Paste at very bottom of style.css
   ================================================ */

/* Related products section wrapper */
.single-product .related.products {
    width: 100% !important;
    grid-column: 1 / -1 !important;
    margin-top: 40px !important;
}

/* Related products grid — 4 cols desktop, responsive */
.single-product .related ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
}

@media (max-width: 1100px) {
    .single-product .related ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 560px) {
    .single-product .related ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/* Card */
.single-product .related ul.products li.shivi-card {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
}

/* Image link wrapper — fixed height, dark bg */
.single-product .related ul.products li.shivi-card a.shivi-card__img {
    display: block !important;
    height: 200px !important;
    width: 100% !important;
    background-color: #0a0a0a !important;
    overflow: hidden !important;
}

/* Image — contain so gold frame shows fully */
.single-product .related ul.products li.shivi-card a.shivi-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    padding: 8px !important;
    background-color: #0a0a0a !important;
    max-width: none !important;
}

/* ================================================
   SINGLE PRODUCT MAIN IMAGE FIX
   ================================================ */

.single-product div.product div.images img,
.single-product .woocommerce-product-gallery__image img {
    height: auto !important;
    max-height: 480px !important;
    width: 100% !important;
    object-fit: contain !important;
    background-color: #0a0a0a !important;
}

/* Mobile — image above title, no overlap */
@media (max-width: 1024px) {
    .single-product div.product {
        display: block !important;
    }
    .single-product div.product div.images {
        float: none !important;
        width: 100% !important;
        clear: both !important;
        margin-bottom: 0 !important;
        position: static !important;
    }
    .single-product div.product div.images img {
        max-height: 300px !important;
    }
    .single-product div.product div.summary {
        float: none !important;
        width: 100% !important;
        clear: both !important;
        padding-top: 20px !important;
        position: static !important;
    }
    .single-product h1.product_title {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
    }
}


/* ================================================
   SHIVI — CART POPUP CHECKOUT BUTTON FIX
   Paste at very bottom of style.css
   ================================================ */

.sct-btn--checkout,
a.sct-btn--checkout,
a.sct-btn--checkout:link,
a.sct-btn--checkout:visited {
    background: #c9aa71 !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    border: 1px solid #c9aa71 !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    padding: 10px 18px !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
}

.sct-btn--checkout:hover,
a.sct-btn--checkout:hover {
    background: #e8c97a !important;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    border-color: #e8c97a !important;
    transform: translateY(-1px) !important;
}

.sct-btn--checkout svg {
    stroke: #000000 !important;
    color: #000000 !important;
}

/* ===============================
   SEO LUXURY CONTENT SECTION
================================ */

.reservation-seo{
    background: #0b0b0c;
    padding: 110px 20px;
    position: relative;
    overflow: hidden;
}

/* subtle luxury glow */
.reservation-seo::before{
    content:"";
    position:absolute;
    top:-120px;
    left:-120px;
    width:420px;
    height:420px;
    background: radial-gradient(circle, rgba(201,170,113,0.15), transparent 70%);
    pointer-events:none;
}

.reservation-seo .container{
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* luxury heading */
.reservation-seo h2{
    font-size: 38px;
    letter-spacing: 1px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #f5f5f5;
    font-family: "Playfair Display", serif;
}

/* golden underline */
.reservation-seo h2::after{
    content:"";
    display:block;
    width:70px;
    height:1px;
    background:#c9aa71;
    margin:18px auto 0;
}

/* luxury paragraph */
.reservation-seo p{
    color:#cfcfcf;
    font-size:17px;
    line-height:1.9;
    margin-bottom:22px;
    font-weight:300;
    letter-spacing:0.3px;
}

/* subtle hover animation for depth */
.reservation-seo p:hover{
    color:#ffffff;
    transition: all .4s ease;
}

/* ===============================
   MOBILE
================================ */

@media (max-width:768px){

    .reservation-seo{
        padding:70px 18px;
    }

    .reservation-seo h2{
        font-size:26px;
        line-height:1.3;
    }

    .reservation-seo p{
        font-size:15px;
        line-height:1.8;
    }
}


.cart_totals table tr.shipping td section.shipping-calculator-form,
.cart_totals .shipping-calculator-form,
#shipping-calculator-form {
    background: #fff !important;
    border: 1px solid #C9A84C !important;
    border-radius: 10px !important;
    padding: 18px !important;
    margin-top: 12px !important;
    color: #1a1208 !important;
}
.cart_totals table tr.shipping td section.shipping-calculator-form *,
.cart_totals .shipping-calculator-form * {
    color: #1a1208 !important;
    background: transparent !important;
}
.cart_totals .shipping-calculator-form input#calc_shipping_postcode {
    background: #f9f5ee !important;
    color: #1a1208 !important;
    border: 1px solid rgba(201,168,76,0.6) !important;
    height: 44px !important;
    width: 100% !important;
    padding: 0 14px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    font-size: 15px !important;
}
.cart_totals .shipping-calculator-form button.button {
    background: #1a1208 !important;
    color: #C9A84C !important;
    width: 100% !important;
    height: 42px !important;
    border: none !important;
    border-radius: 8px !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    font-size: 10px !important;
    cursor: pointer !important;
    margin-top: 8px !important;
}


.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table tbody tr th,
.woocommerce-cart .cart_totals .shop_table th {
    color: #C8A858 !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.woocommerce-cart .cart_totals table tr.order-total th {
    color: #D4B868 !important;
}
.woocommerce-cart .cart_totals h2 {
    color: #8A7040 !important;
}

@media (max-width: 768px) {
    .woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table tbody tr th,
    .woocommerce-cart .cart_totals .shop_table th,
    .woocommerce-cart .cart_totals table td[data-title]::before {
        color: #E8C870 !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 11px !important;
        letter-spacing: 0.15em !important;
    }
    .woocommerce-cart .cart_totals table tr.order-total th {
        color: #F0D880 !important;
    }
    /* Data titles on mobile (WC adds these as pseudo elements) */
    .woocommerce-cart .cart_totals table td::before {
        color: #E8C870 !important;
    }
}


