/* CSS Reset & Variables */
:root {
    /* Colors */
    --accent: #0b1a30;
    /* Deeper Luxury Dark Blue */
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    /* Softer, more premium light gray */
    --border-color: #eaeaea;
    --red: #d32f2f;
    /* Slightly darker, richer red */

    /* Typography */
    --font-main: 'Instrument Sans', sans-serif;

    /* Spacing */
    --container-max-width: 1500px;
    /* Slightly wider for modern monitors */
    --container-padding: 2.5rem;

    /* Shadows */
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-red {
    color: var(--red) !important;
}

.text-xs {
    font-size: 0.75rem;
}

.w-100 {
    width: 100%;
    display: block;
    object-fit: cover;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 3rem;
}

.bg-light {
    background-color: var(--bg-secondary);
}

/* Buttons */
.btn {
    padding: 14px 36px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    display: inline-block;
    border-radius: 2px;
}

.btn-dark {
    background-color: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
}

.btn-dark:hover {
    background-color: #fff;
    color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-light {
    background-color: #fff;
    color: var(--accent);
    border: 1px solid #fff;
}

.btn-light:hover {
    background-color: var(--accent);
    color: #fff;
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--accent);
}

.btn-light-sm {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--accent);
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 2px;
}

.btn-light-sm:hover {
    background-color: var(--accent);
    color: #fff;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    padding: 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    position: relative;
    /* Changed from absolute */
    width: 100%;
    z-index: 101;
}

/* Header */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    /* Changed from fixed */
    top: 0;
    /* Changed from 42px */
    width: 100%;
    z-index: 100;
    padding: 5px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    /* Remove or keep minimal if you want shadow on scroll */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 70px;
    transition: transform 0.3s ease;
    filter: brightness(0);
    /* Elegant pure black logo to match black fonts */
}

.logo:hover img {
    transform: scale(1.03);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #000000;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

/* Navigation */
.main-nav {
    margin-top: 0;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
}

.nav-links li a {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
    color: #000000;
}

/* Hover underline effect */
.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: #000000;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links li a.text-red::after {
    background-color: var(--red);
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 42px);
    /* Adjust for announcement bar height */
    min-height: 500px;
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-position: 45% 58%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 8%;
    left: 5%;
    color: #fff;
    text-align: left;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 2.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

/* Double Banner */
.double-banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.banner-wrapper {
    position: relative;
    height: 100%;
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

.banner-wrapper:hover img {
    transform: scale(1.05);
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1s ease;
}

.banner-wrapper:hover img {
    transform: scale(1.05);
}

.double-banner-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent);
    opacity: 0.3;
}

/* Product Grid 5 Columns */
.product-grid-5 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Hide scrollbar for Firefox */
    -ms-overflow-style: none;
    /* Hide scrollbar for IE and Edge */
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 10px;
    /* Optional padding for scrollbar area */
    padding-right: 2rem;
    /* Fixes last item cutoff issue */
    cursor: grab;
}

.product-grid-5.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.product-grid-5::-webkit-scrollbar {
    display: none;
}

.product-card {
    flex: 0 0 20%;
    min-width: 280px;
    scroll-snap-align: start;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    background: #ffffff;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 1.5rem;
}

.product-card:last-child {
    border-right: none;
}

.product-card:hover {
    /* Removed the hover shadow to match the screenshot */
}

.product-image {
    background-color: transparent;
    /* Changed to transparent to blend with section background */
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    overflow: hidden;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s ease-in-out;
}

.product-image .img-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.product-image:hover .img-primary {
    opacity: 0;
}

.product-image:hover .img-hover {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.quick-add {
    display: none !important;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background-color: #fff;
    border: none;
    border-radius: 2px;
    color: var(--accent);
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-image:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.quick-add:hover {
    background-color: var(--accent);
    color: #fff;
}

.product-info h3 {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #222;
}

.tags {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: #888;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.product-info .price {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    align-items: center;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
}

.sale-price {
    color: var(--red);
    font-weight: 500;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.85rem;
}

/* Quad Banners */
.quad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.quad-item {
    overflow: hidden;
    position: relative;
}

.quad-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.quad-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9;
    transition: transform 0.8s ease;
}

.quad-item:hover img {
    transform: scale(1.04);
}

/* Specific Cropping Control for Quad Banners */
#quad-img-1 {
    object-position: 50% 40%;
}

#quad-img-2 {
    object-position: 50% 60%;
    /* transform: scale(1); */
    /* Zoom: Change this to zoom in/out (e.g. 0.8 to zoom out, 1.1 to zoom in) */
}

/* Individual Hover Rules to match custom zoom scales */
.quad-item:hover #quad-img-1 {
    transform: scale(1.04);
    /* Normal zoom (1.0) * 1.04 */
}

.quad-item:hover #quad-img-2 {
    transform: scale(1.04);
    /* Custom zoom (1.0) * 1.04 (change this to zoom + 0.04) */
}

.quad-item:hover #quad-img-3 {
    transform: scale(1.04);
    /* Normal zoom (1.0) * 1.04 */
}

.quad-item:hover #quad-img-4 {
    transform: scale(1.04);
    /* Normal zoom (1.0) * 1.04 */
}

#quad-img-3 {
    object-position: 50% 50%;
}

#quad-img-4 {
    object-position: 50% 93%;
}

/* Zimaya Banner */
.zimaya-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}

.zimaya-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
}

/* Gift Sets Banner */
.gift-sets-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100vh;
}

.gift-sets-content {
    position: absolute;
    bottom: 15%;
    left: 5%;
    text-align: left;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.gift-sets-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* Our Story Grid */
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
}

.story-image {
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border-radius: 2px;
}

.story-image img {
    transition: transform 1s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-product {
    padding: 3rem;
    background: #fff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.story-product-img {
    max-width: 200px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

/* Our Looks Section */
.looks-slider-container {
    position: relative;
    width: 100%;
    padding: 0 40px;
}

.looks-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.looks-image-container {
    flex: 0 0 45%;
    position: relative;
}

.looks-main-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
}

.hotspot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hotspot-dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.hotspot.active {
    background: rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.2);
}

.hotspot:hover {
    transform: translate(-50%, -50%) scale(1.2);
}

.looks-product-details {
    flex: 0 0 35%;
    background: transparent;
    padding: 2rem;
}

.look-product-image {
    max-width: 250px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    color: var(--accent);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--accent);
    color: #fff;
}

.slider-arrow.left {
    left: 0;
}

.slider-arrow.right {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--accent);
}

/* Discovery Kits Grid */
.kits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.kit-card {
    background: transparent;
    padding: 1rem 2rem;
}

.kit-card:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.kit-card .product-image {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Exquisite Collection */
.exquisite-grid {
    display: flex;
    width: 100%;
    height: 80vh;
}

.exquisite-card {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: flex 0.5s ease;
    cursor: pointer;
}

.exquisite-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.exquisite-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.exquisite-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.exquisite-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.exquisite-btn {
    background: #fff;
    color: #000;
    border: none;
    padding: 12px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    align-self: flex-start;
    transition: background 0.3s ease, color 0.3s ease;
}

.exquisite-btn:hover {
    background: var(--accent);
    color: #fff;
}

.exquisite-card:hover .exquisite-img {
    transform: scale(1.05);
}

/* Instagram Feed */
.insta-grid {
    display: flex;
}

.insta-grid img {
    flex: 1;
    width: 20%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: filter 0.4s ease;
}

.insta-grid:hover img {
    filter: brightness(0.7);
}

.insta-grid img:hover {
    filter: brightness(1);
}

/* Our Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding: 2rem 0;
}

.service-item {
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-item i {
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.service-item p {
    font-weight: 600;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--accent);
}

/* Footer */
.main-footer {
    background-color: var(--bg-secondary);
    padding: 5rem 0 0 0;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
}

.social-icons a {
    color: var(--accent);
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding: 1.8rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

/* Fade Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Cart Drawer */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-header h2 {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.close-cart {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

/* Global Typography */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 0;
}

.section-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    color: #555;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
}

/* Our Looks Responsive Layout */
.looks-layout {
    max-width: 1100px;
    display: flex;
    background: transparent;
    position: relative;
    height: 600px;
}

.looks-side {
    height: 100%;
}

.looks-left {
    flex: 0 0 55%;
    position: relative;
}

.looks-right {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 2rem 3rem 3rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    /* Removed grid-template-columns overrides as we use flex scroll */
}

@media (max-width: 1024px) {
    .boutique-grid {
        flex-direction: column;
        height: auto;
    }

    .boutique-item {
        height: 300px;
    }

    .insta-grid {
        flex-wrap: wrap;
    }

    .insta-grid img {
        width: 33.33%;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .kits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .quad-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quad-content .btn {
        padding: 6px 12px;
        font-size: 0.65rem;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        background-color: #ffffff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--border-color);
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .hero-content {
        bottom: 8%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        width: 90%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-col.text-right {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .section {
        padding: 3rem 0;
    }

    .looks-layout {
        flex-direction: column;
        height: auto;
    }

    .looks-side {
        flex: 1 1 100%;
        width: 100%;
        height: auto;
    }

    .looks-left {
        height: 400px;
    }

    .looks-right {
        padding: 2rem 1rem;
    }

    .gift-sets-content {
        left: 5%;
        bottom: 10%;
        transform: none;
        width: auto;
    }

    .gift-sets-title {
        font-size: 1.2rem;
    }

    .gift-sets-banner,
    .zimaya-banner {
        height: auto;
    }

    .gift-sets-banner .banner-wrapper,
    .zimaya-banner .banner-wrapper {
        height: auto;
    }

    .gift-sets-banner .banner-wrapper img {
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .zimaya-banner .banner-wrapper img {
        height: auto;
        aspect-ratio: 4/3;
        object-fit: cover;
    }

    .gift-sets-content .btn,
    .zimaya-content .btn {
        padding: 8px 18px;
        font-size: 0.65rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 0.7rem;
    }

    .exquisite-grid {
        flex-direction: row;
        height: 450px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .exquisite-grid::-webkit-scrollbar {
        display: none;
    }

    .exquisite-card {
        flex: 0 0 85%;
        height: 100%;
        width: auto;
        scroll-snap-align: center;
        border-right: 2px solid #fff;
        /* minor separator */
    }
}

/* Center product grids when items are few */
@media (min-width: 992px) {
    .product-grid-5.center-items {
        justify-content: center;
    }
}

/* Fix for images that were created too small (zoomed out) */
.product-image .img-hover.scale-fixed,
.product-image:hover .img-hover.scale-fixed {
    transform: translate(-50%, -50%) scale(1.07) !important;
}

.product-image .img-hover.scale-fixed-nolimit,
.product-image:hover .img-hover.scale-fixed-nolimit {
    transform: translate(-50%, -50%) scale(1.09) !important;
}

.product-image .img-hover.scale-fixed-harmony,
.product-image:hover .img-hover.scale-fixed-harmony {
    transform: translate(-50%, -50%) scale(0.94) !important;
}

.product-image .img-hover.scale-fixed-pineapple,
.product-image:hover .img-hover.scale-fixed-pineapple {
    transform: translate(-50%, -50%) scale(0.81) !important;
}

/* Category Page Header Styles */
.page-header {
    background-color: var(--accent);
    color: #ffffff;
    text-align: center;
    padding: 5rem 1rem;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
}

.page-header p {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    margin-bottom: 0;
}

/* Product Card Smooth Anchor Scrolling Offset */
[id] {
    scroll-margin-top: 140px; /* Offset for sticky header */
}

/* Highlight Animation for targeted products */
@keyframes productHighlight {
    0% {
        box-shadow: 0 0 0 0 rgba(11, 26, 48, 0.6);
        transform: scale(1);
    }
    25% {
        box-shadow: 0 0 30px 10px rgba(11, 26, 48, 0.4);
        transform: scale(1.02);
    }
    75% {
        box-shadow: 0 0 30px 10px rgba(11, 26, 48, 0.4);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(11, 26, 48, 0);
        transform: scale(1);
    }
}

.highlight-product {
    animation: productHighlight 3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    border: 1px solid var(--accent) !important;
    position: relative;
    z-index: 10;
}

/* Large Full-Row Product Layout Styles */
.large-product-row {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-primary);
}

.large-product-row-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 6rem var(--container-padding);
    width: 100%;
}

.large-product-row .product-image {
    width: 100%;
    max-width: 480px;
    height: 480px;
    aspect-ratio: 1/1;
    margin-bottom: 0;
    flex-shrink: 0;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-product-row .product-image img {
    mix-blend-mode: multiply;
}

.large-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.large-product-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.large-product-title {
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.large-product-notes {
    margin-bottom: 2rem;
    width: 100%;
}

.large-note-row {
    display: flex;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    padding-bottom: 0.4rem;
}

.large-note-label {
    font-weight: 700;
    min-width: 130px;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}

.large-note-text {
    color: var(--text-secondary);
    flex: 1;
}

.large-product-price {
    display: flex;
    align-items: baseline;
    gap: 1.2rem;
    margin-bottom: 2.2rem;
}

.large-product-price .sale-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
}

.large-product-price .original-price {
    font-size: 1.3rem;
    text-decoration: line-through;
    color: #999;
}

.large-product-btn {
    padding: 15px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background-color: var(--accent);
    color: #fff;
    border: 1px solid var(--accent);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
}

.large-product-btn:hover {
    background-color: transparent;
    color: var(--accent);
}

/* Responsive Styles for Large Product Row */
@media (max-width: 991px) {
    .large-product-row-content {
        flex-direction: column;
        gap: 3rem;
        padding: 4rem 1.5rem;
    }
    
    .large-product-row .product-image {
        max-width: 380px;
        height: 380px;
    }
    
    .large-product-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 575px) {
    .large-product-row .product-image {
        max-width: 280px;
        height: 280px;
    }
    
    .large-product-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
    }
    
    .large-note-row {
        flex-direction: column;
        gap: 2px;
    }
    
    .large-note-label {
        min-width: auto;
    }
}

/* Sample Themes: Light Navy & Dark Navy Rows */
.theme-light-navy {
    background-color: #f0f4f8 !important; /* Soft, elegant light navy tint */
    color: var(--text-primary) !important;
}

.theme-light-navy .large-note-row {
    border-bottom: 1px solid rgba(11, 26, 48, 0.08) !important;
}

.theme-dark-navy {
    background-color: #e8f3fc !important; /* Lightest Sky Blue */
    color: var(--text-primary) !important;
}

.theme-dark-navy .large-product-title {
    color: var(--accent) !important;
}

.theme-dark-navy .large-note-label {
    color: var(--accent) !important;
}

.theme-dark-navy .large-note-text {
    color: var(--text-secondary) !important;
}

.theme-dark-navy .large-note-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.theme-dark-navy .large-product-price .original-price {
    color: #999 !important;
}

.theme-dark-navy .large-product-price .sale-price {
    color: var(--red) !important;
}

.theme-dark-navy .large-product-btn {
    background-color: var(--accent) !important;
    color: #ffffff !important;
    border: 1px solid var(--accent) !important;
}

.theme-dark-navy .large-product-btn:hover {
    background-color: transparent !important;
    color: var(--accent) !important;
}

.large-product-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: -0.8rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: 'Instrument Sans', sans-serif;
    max-width: 600px;
}

/* Gift Sets Styling */
.sets-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: left;
    margin-top: 2rem;
}

.set-grid-item {
    background: #ffffff;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.set-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.set-grid-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent);
    margin-bottom: 0.8rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 5px;
    display: inline-block;
}

.set-item-desc {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .sets-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sets-details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .set-grid-item {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Our Story Page Premium Redesign
   ========================================================================== */

/* Font & Global Variables */
:root {
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --font-serif: 'Cormorant Garamond', serif;
}

.serif-heading {
    font-family: var(--font-serif);
    font-weight: 500;
}

/* Hero Section */
.ourstory-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.ourstory-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(11, 26, 48, 0.9) 0%, rgba(11, 26, 48, 0.4) 60%, rgba(11, 26, 48, 0.1) 100%);
    z-index: 1;
}

.ourstory-hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding-left: 2rem;
}

.ourstory-hero-content h1 {
    font-size: 5rem;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--gold-light);
}

.ourstory-hero-content p {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #e5edf7;
    font-weight: 300;
    line-height: 1.6;
}

/* Editorial Story Grid */
.story-editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.story-editorial-visual img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    mix-blend-mode: multiply;
}

.story-editorial-text {
    padding-right: 1.5rem;
}

.story-editorial-text h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.2;
}

.story-editorial-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.editorial-highlight {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 700;
    color: var(--gold);
    display: inline-block;
    padding: 0 2px;
}

/* Journey Timeline */
.journey-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.journey-timeline-line {
    position: absolute;
    left: 31px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(212, 175, 55, 0.1) 100%);
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
    z-index: 2;
}

.timeline-card-content {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-card-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.timeline-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.timeline-card-content p {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Glassmorphism Mission & Vision */
.glass-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.glass-card-icon {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.glass-card h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.glass-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e5edf7;
    font-weight: 300;
}

/* Quality Promise Grid */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

.promise-card {
    background: #ffffff;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.promise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.promise-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(11, 26, 48, 0.03);
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
    transition: var(--transition);
}

.promise-card:hover .promise-card-icon {
    background: var(--accent);
    color: var(--gold-light);
}

.promise-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
}

.promise-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Redesigned Team Section */
.premium-team-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.premium-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.premium-team-section .container {
    position: relative;
    z-index: 2;
}

.team-grid-redesigned {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.premium-team-card {
    background: var(--accent); /* Luxurious dark navy */
    padding: 3.5rem 2rem;
    text-align: center;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.premium-team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.team-avatar-wrap {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    border: 2px solid var(--gold);
    padding: 4px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-team-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.premium-team-card p {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: #e5edf7;
    text-transform: uppercase;
    font-weight: 600;
}

/* CTA Conversion Section */
.cta-section-redesigned {
    background: linear-gradient(135deg, #0b1a30 0%, #060f1c 100%);
    padding: 6.5rem 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.cta-section-redesigned h2 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.cta-section-redesigned p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    color: #b0c2d9;
    font-weight: 300;
    line-height: 1.6;
}

.premium-cta-btn {
    background: var(--accent);
    color: var(--gold-light);
    border: 2px solid var(--gold);
    padding: 1rem 3.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    display: inline-block;
    border-radius: 0;
}

.premium-cta-btn:hover {
    background: var(--gold);
    color: var(--accent);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Responsiveness adjustments */
@media (max-width: 991px) {
    .story-editorial-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .promise-grid, .team-grid-redesigned {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .glass-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .ourstory-hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .ourstory-hero {
        height: 60vh;
        min-height: auto;
    }
    .ourstory-hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        text-align: center;
        margin: 0 auto;
    }
    .ourstory-hero-content h1 {
        font-size: 2.4rem !important;
        letter-spacing: 0.05em;
    }
    .ourstory-hero-content p {
        font-size: 1rem !important;
        letter-spacing: 0.05em;
        line-height: 1.5;
    }
    .looks-right {
        align-items: center !important;
        text-align: center !important;
    }
    #looks-slider-container {
        max-width: 100% !important;
    }
    #looks-dots {
        max-width: 100% !important;
    }
    .story-editorial-text h2 {
        font-size: 2.4rem;
    }
    .journey-timeline-line {
        left: 20px;
    }
    .timeline-item {
        padding-left: 3.8rem;
    }
    .timeline-icon-wrap {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .timeline-card-content {
        padding: 1.8rem;
    }
    .promise-grid, .team-grid-redesigned {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .glass-card {
        padding: 3rem 1.5rem;
    }
    .cta-section-redesigned h2 {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   Contact Us Styles
   ========================================================================== */
.contact-hero {
    height: 70vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 26, 48, 0.6) 0%, rgba(11, 26, 48, 0.85) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero-content h1 {
    font-size: 5.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    font-family: var(--font-serif);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.contact-hero-content p {
    font-size: 1.35rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 2rem;
}

/* Info Side Styling */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-intro-text h2 {
    font-size: 2.8rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.contact-intro-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-methods-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-method-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.contact-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-method-card:hover .contact-icon-wrap {
    background-color: var(--gold);
    color: var(--accent);
}

.contact-details-wrap h3 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.contact-details-wrap p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-details-wrap a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.contact-details-wrap a:hover {
    color: var(--gold);
}

/* FAQ Accordion Styling */
.faq-wrap {
    margin-top: 3.5rem;
}

.faq-title {
    font-size: 2.2rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.faq-question {
    padding: 1.8rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--accent);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: var(--transition);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.85rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(180deg);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-answer {
    padding: 0 1.8rem 1.8rem 1.8rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    margin-top: -0.5rem;
    padding-top: 1.2rem;
}

/* Form Side Styling */
.contact-form-card {
    background: linear-gradient(135deg, #0b1a30 0%, #12253f 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(11, 26, 48, 0.15);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.contact-form-card h2 {
    font-size: 2.6rem;
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-form-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
}

.form-group-wrap label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.form-input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    padding: 1.1rem 1.4rem;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Instrument Sans', sans-serif;
    transition: var(--transition);
}

.form-input-field:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.form-input-field::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    background-color: var(--gold);
    color: var(--accent);
    border: 1px solid var(--gold);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.form-submit-btn:hover {
    background-color: transparent;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
}

/* Toast Success Message Styling */
.form-success-toast {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 1.5rem;
    border-radius: 2px;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
    margin-top: 2rem;
    display: none;
}

/* Responsive Overrides for Contact */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-form-card {
        padding: 3rem;
    }
    
    .contact-hero-content h1 {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 3.2rem;
    }
    
    .contact-hero-content p {
        font-size: 1.1rem;
    }
    
    .contact-intro-text h2 {
        font-size: 2.2rem;
    }
    
    .contact-form-card {
        padding: 2.5rem 1.8rem;
    }
}


/* Dark Promise Section Styles (Genzie Dark Gradient) */
.promise-section-dark {
    background: linear-gradient(135deg, #0b1a30 0%, #060f1c 100%) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.promise-section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.02) 0%, transparent 80%);
    pointer-events: none;
}

.promise-section-dark .section-subtitle {
    color: var(--gold) !important;
}

.promise-section-dark h2 {
    color: #ffffff !important;
}

.promise-section-dark .promise-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px);
}

.promise-section-dark .promise-card:hover {
    border-color: rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15) !important;
    transform: translateY(-8px);
}

.promise-section-dark .promise-card-icon {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--gold-light) !important;
}

.promise-section-dark .promise-card:hover .promise-card-icon {
    background: var(--gold) !important;
    color: var(--accent) !important;
}

.promise-section-dark .promise-card h3 {
    color: var(--gold-light) !important;
}

.promise-section-dark .promise-card p {
    color: #b0c2d9 !important;
}


/* ==========================================================================
   Discovery Kits Grid & Separator Lines
   ========================================================================== */
.kits-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 6rem;
    align-items: start;
}

.kit-divider-col {
    position: relative;
    border-right: 1px solid rgba(11, 26, 48, 0.15);
    padding-right: 4rem;
}

/* Horizontal dividers between product rows */
.section-divider {
    border: 0;
    height: 1px;
    background: rgba(11, 26, 48, 0.08);
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
    display: block;
}

@media (max-width: 991px) {
    .kits-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .kit-divider-col {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(11, 26, 48, 0.15);
        padding-bottom: 4rem;
    }
}


/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}


/* WhatsApp ordering steps responsive layout */
.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 991px) {
    .order-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Bestsellers and Sets More Details Button Styling */
.btn-more-details-sets {
    background-color: #ffffff !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
    transition: all 0.3s ease !important;
}

.btn-more-details-sets:hover {
    background-color: var(--accent) !important;
    color: #ffffff !important;
}

/* Product Page Features Grid (Occasion, Personality, Premium Standards) */
.features-grid-container {
    background: #ffffff;
    border: 1px solid rgba(11, 26, 48, 0.08);
    padding: 3.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
}

.features-grid-item-bottom {
    border-top: 1px solid rgba(11, 26, 48, 0.08);
    padding-top: 2.5rem;
}

@media (max-width: 768px) {
    .features-grid-container {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2.5rem;
    }
    .features-grid-item-bottom {
        border-top: 1px solid rgba(11, 26, 48, 0.08);
        padding-top: 2rem;
    }
}











