/* ==========================================================================
   Main Stylesheet - AFEEM Fragrances (Vanilla CSS)
   ========================================================================== */

/* 1. Global Reset & Base Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    line-height: var(--line-height-normal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    width: 100%;
}

/* 2. Utility Classes */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.text-center {
    text-align: center;
}

.bold-text {
    font-weight: var(--font-weight-bold);
}

.hidden {
    display: none !important;
}

.flex-justify-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-padding {
    padding: var(--spacing-xl);
}

/* Typography Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    line-height: var(--line-height-tight);
    margin-bottom: var(--spacing-sm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--border-radius-none);
    transition: var(--transition-normal);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border: 1px solid var(--color-bg-dark);
}

.btn-primary:hover {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.btn-secondary {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    border: 1px solid var(--color-text-primary);
}

.btn-secondary:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: var(--font-size-xs);
}

.btn-text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--color-text-primary);
    padding-bottom: 2px;
}

.btn-text:hover {
    color: var(--color-text-muted);
    border-color: var(--color-border);
}

/* Form Fields */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
    font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: var(--font-size-sm);
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-text-primary);
}

/* ==========================================================================
   3. Header, Navigation and Announcement
   ========================================================================== */
.topbar {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    text-align: center;
    padding: 8px 0;
    letter-spacing: 0.05em;
    height: var(--topbar-height);
    overflow: hidden;
    position: relative;
    z-index: var(--z-index-header);
}

.topbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main-header {
    background-color: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: var(--z-index-header);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 8px var(--spacing-lg);
    min-height: var(--header-height);
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Hamburger + MENU text — always visible (afeem.in style) */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover {
    color: var(--color-text-muted);
}

.menu-label-text {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Desktop Nav — hidden (navigation via hamburger, like afeem.in) */
.desktop-nav {
    display: none;
}

.desktop-nav .nav-list {
    display: flex;
    gap: var(--spacing-xl);
}

.desktop-nav .nav-link {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 8px 0;
    position: relative;
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-text-primary);
    transition: var(--transition-normal);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.15em;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    justify-content: flex-end;
}

.action-btn {
    position: relative;
    padding: 6px;
    transition: var(--transition-fast);
}

.action-btn:hover {
    color: var(--color-text-muted);
}

.badge-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-size: 9px;
    width: 15px;
    height: 15px;
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
}

/* ==========================================================================
   4. Hero + Deals Layout (afeem.in style: slider left + sidebar right)
   ========================================================================== */

/* Outer wrapper: 2-col grid */
/* Full-Width Luxury Hero Slider Section (100% Full Screen Viewport Coverage) */
.hero-slider-section.full-width-hero {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: calc(100vh - 90px);
    min-height: 560px;
    max-height: 800px;
    overflow: hidden;
    background-color: #f8fafc;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 38%; /* Ensures top cap & bottom pedestal both fit 100% in viewport */
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.6s;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content-wrap {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Image 3 Clean Un-boxed Typography Layout */
.slide-content.clean-hero-text {
    text-align: left;
    color: #0f172a;
    max-width: 520px;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    transform: translateX(-30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.hero-brand-mark {
    margin-bottom: 22px;
}

.hero-logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}

.slide-content.clean-hero-text .slide-subtitle {
    color: #2eaaa0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.slide-content.clean-hero-text .slide-title {
    color: #0b0f19;
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.06;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.slide-content.clean-hero-text .slide-tagline {
    font-size: 16px;
    color: #475569;
    font-weight: 500;
    margin-bottom: 16px;
}

.slide-content.clean-hero-text .slide-offer {
    font-size: 14px;
    color: #2eaaa0;
    font-weight: 700;
    margin-bottom: 28px;
}

.slide.active .slide-content {
    transform: translateX(0);
}

.slide-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 12px;
    font-weight: 800;
    color: #2eaaa0;
}

.slide-title {
    font-size: 3.2rem;
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #111111;
}

.slide-offer {
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    color: #555555;
    font-weight: 500;
}

.hero-cta-btn {
    background: #111111 !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    border-radius: 6px !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

.hero-cta-btn:hover {
    background: #2eaaa0 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(46, 170, 160, 0.35) !important;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
}

.slider-nav:hover {
    background-color: #111111;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 24px;
}

.slider-nav.next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    padding: 8px 18px;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active {
    background-color: #2eaaa0;
    width: 28px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(46, 170, 160, 0.6);
}

/* RIGHT: Deals Sidebar */
.deals-sidebar {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-left: 1px solid var(--color-border);
    overflow: hidden;
}

.deals-sidebar-header {
    background-color: #4ABAAB;
    color: #ffffff;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: capitalize;
    letter-spacing: 0.02em;
    padding: 14px var(--spacing-lg);
    flex-shrink: 0;
}

.deals-sidebar-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.deal-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: inherit;
    transition: background-color var(--transition-fast);
    flex: 1;
}

.deal-item:last-child {
    border-bottom: none;
}

.deal-item:hover {
    background-color: #f9f9f9;
}

.deal-img-wrap {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    background-color: #f0eeec;
}

.deal-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.deal-item:hover .deal-img-wrap img {
    transform: scale(1.05);
}

.deal-info {
    flex: 1;
}

.deal-name {
    font-size: var(--font-size-base);
    font-family: var(--font-heading);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.deal-discount {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Legacy promo section (kept for other pages if needed) */
.promo-banners-section {
    padding: var(--spacing-3xl) 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.promo-card {
    height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.promo-card:hover::before {
    background-color: rgba(0, 0, 0, 0.15);
}

.promo-content {
    position: relative;
    z-index: 2;
    color: var(--color-text-light);
}

.promo-tag {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xs);
    display: block;
}

.promo-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.promo-discount {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
}

/* ==========================================================================
   6. Afeem Product Sections (Best Seller + Hot Deal) — afeem.in style
   ========================================================================== */

/* ==========================================================================
   6. Afeem Luxury Product Sections & Cards — Dior/Chanel/Tom Ford Style
   ========================================================================== */

/* Section wrapper & continuous layout */
.afeem-product-section {
    padding: 56px 0 48px;
    background-color: #ffffff;
    position: relative;
}

.afeem-hotdeal-section {
    background-color: #ffffff;
    padding: 56px 0 56px;
    border-top: none;
    border-bottom: none;
}

/* Centered section heading */
.afeem-section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-teal);
    display: block;
    margin-bottom: 8px;
}

.section-tag.hot-tag {
    color: #c0392b;
}

.afeem-section-title {
    font-family: var(--font-heading), 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    margin-bottom: 10px;
}

.afeem-heading-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #111111, #2eaaa0);
    margin: 0 auto 14px;
    border-radius: 2px;
}

.afeem-section-subtitle {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
}

/* Flash Deal Countdown Bar */
.flash-countdown-bar {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
    background: #ffffff;
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-primary);
}

.countdown-boxes {
    display: flex;
    align-items: center;
    gap: 6px;
}

.c-unit {
    background: #111111;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.c-unit strong {
    font-size: 14px;
    font-weight: 700;
}

.c-unit small {
    font-size: 9px;
    color: #2eaaa0;
    font-weight: 700;
}

.c-sep {
    font-weight: 700;
    color: #111111;
}

/* Grids */
.afeem-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.afeem-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Luxury Product Card Container (Seamless Pure White Layout) */
.afeem-product-card {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.afeem-product-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

/* Image Wrapper */
.afeem-card-img-link {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 1 / 1;
    background-color: #f6f6f6;
}

.afeem-card-wide .afeem-card-img-link {
    aspect-ratio: 4 / 3;
}

.afeem-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.afeem-card-img.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.afeem-product-card:hover .afeem-card-img.main-image {
    transform: scale(1.06);
}

.afeem-product-card:hover .afeem-card-img.hover-image {
    opacity: 1;
    transform: scale(1.06);
}

/* Card Badges */
.card-badge {
    position: absolute;
    z-index: 4;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 0;
    padding: 4px 10px;
}

.sale-badge {
    top: 10px;
    left: 10px;
    background: #111111;
    color: #ffffff;
}

.stock-badge {
    top: 40px;
    left: 10px;
    background: rgba(46, 170, 160, 0.15);
    color: #238981;
}

/* Floating Action Buttons Overlay (Top Right) */
.afeem-card-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 5;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.afeem-product-card:hover .afeem-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.afeem-card-actions .action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.afeem-card-actions .action-btn:hover {
    background: #111111;
    color: #ffffff;
    transform: scale(1.1);
}

/* Slide-Up Add to Bag Button */
.card-slide-cart-btn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #111111;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, background 0.2s ease;
    z-index: 6;
    cursor: pointer;
}

.afeem-product-card:hover .card-slide-cart-btn {
    transform: translateY(0);
    opacity: 1;
}

.card-slide-cart-btn:hover {
    background: #2eaaa0;
    box-shadow: 0 10px 25px rgba(46, 170, 160, 0.4);
}

/* Card Meta Info */
.afeem-card-info {
    padding: 12px 0 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
}

.card-rating .stars {
    color: #f1c40f;
    font-size: 12px;
    letter-spacing: 1px;
}

.card-rating .rating-count {
    font-size: 11px;
    color: var(--color-text-muted);
}

.afeem-card-name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
    line-height: 1.35;
}

.afeem-card-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.afeem-card-name a:hover {
    color: #2eaaa0;
}

.afeem-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
}

.afeem-card-price .price-current {
    font-size: 15px;
    font-weight: 700;
    color: #2eaaa0;
}

.afeem-card-price .price-strike {
    font-size: 13px;
    color: #999999;
    text-decoration: line-through;
}

/* ==========================================================================
   3D Coverflow Showcase Carousel Section (Pure White Theme)
   ========================================================================== */
.afeem-3d-showcase-section {
    padding: 60px 0 70px;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.coverflow-3d-container {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    height: 560px;
    perspective: 1400px;
    perspective-origin: 50% 40%;
}

.coverflow-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.coverflow-card {
    position: absolute;
    width: 360px;
    height: 470px;
    top: 50%;
    left: 50%;
    margin-top: -235px;
    margin-left: -180px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, box-shadow 0.6s ease, z-index 0.6s ease;
    cursor: pointer;
    user-select: none;
    overflow: hidden;
}

.card-3d-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-3d-img {
    width: 100%;
    height: 310px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.card-3d-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.coverflow-card:hover .card-3d-img img {
    transform: scale(1.05);
}

.card-3d-bar {
    background: linear-gradient(90deg, #6c5ce7, #5a49e0);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 10px 0;
}

.c3d-action-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.c3d-action-btn:hover {
    transform: scale(1.25);
}

.card-3d-meta {
    padding: 14px 16px;
    text-align: center;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c3d-title {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
}

.c3d-title a {
    color: inherit;
    text-decoration: none;
}

.c3d-price {
    font-size: 15px;
    font-weight: 700;
    color: #2eaaa0;
}

/* Dots Pagination */
.coverflow-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.coverflow-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.coverflow-dots .dot.active {
    background: #6c5ce7;
    transform: scale(1.3);
}




    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.product-grid.columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.product-grid.columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Product Card Component */
.product-card {
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg-secondary);
    aspect-ratio: 1 / 1.25;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow) ease;
}

.product-image-container .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
}

.product-card:hover .product-image-container img.main-image {
    transform: scale(1.05);
}

.product-card:hover .product-image-container .hover-image {
    opacity: 1;
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.05em;
    z-index: 3;
}

.badge.sale {
    background-color: var(--color-sale);
    color: var(--color-text-light);
}

.product-actions {
    position: absolute;
    right: 12px;
    top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(20px);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 3;
}

.product-card:hover .product-actions {
    transform: translateX(0);
    opacity: 1;
}

.product-actions .action-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-circle);
    background-color: var(--color-bg-primary);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.product-actions .action-btn:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.quick-add-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background-color: rgba(17, 17, 17, 0.9);
    color: var(--color-text-light);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: translateY(100%);
    transition: var(--transition-normal);
    z-index: 3;
}

.product-card:hover .quick-add-btn {
    transform: translateY(0);
}

.product-info {
    padding: var(--spacing-md) 0 var(--spacing-sm);
}

.product-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: 4px;
}

.product-rating .stars {
    color: var(--color-rating);
    font-size: 13px;
    letter-spacing: 2px;
}

.product-rating .rating-count {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.product-price {
    display: flex;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.price-current {
    font-weight: var(--font-weight-semibold);
}

.price-compare {
    color: var(--color-text-muted);
    text-decoration: line-through;
}

/* ==========================================================================
   7. Newsletter Subscription Banner
   ========================================================================== */
.newsletter-section {
    background-color: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-3xl) 0;
    text-align: center;
}

.newsletter-container {
    max-width: 650px !important;
}

.newsletter-tag {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.newsletter-title {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.newsletter-subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    outline: none;
    font-family: inherit;
    font-size: var(--font-size-sm);
}

.newsletter-form input:focus {
    border-color: var(--color-text-primary);
}

/* ==========================================================================
   8. Footer Component
   ========================================================================== */
.main-footer {
    background-color: #000000; /* Solid Black Background */
    color: #ffffff;
    border-top: 1px solid #111111;
    padding: 40px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

.footer-logo-img {
    height: 120px; /* Constrain footer logo larger */
    width: auto;
    object-fit: contain;
    margin-bottom: var(--spacing-md);
    display: block;
}

.footer-about-text {
    font-size: 13px;
    color: #a0a0a0; /* Light grey text */
    line-height: var(--line-height-relaxed);
    max-width: 280px;
    margin-bottom: 16px;
}

/* Social Media Boxes */
.footer-social-icons {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.social-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    background-color: #121212;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    transition: all 0.2s ease;
}

.social-icon-box:hover {
    background-color: #222222;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Newsletter Section */
.footer-newsletter-section {
    margin-top: 20px;
}

.footer-newsletter-section .newsletter-sub-title {
    font-size: 11px;
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-newsletter-form {
    display: flex;
    height: 38px;
    max-width: 280px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #1a1a1a;
}

.footer-newsletter-form input {
    flex: 1;
    background-color: #121212;
    border: none;
    padding: 0 12px;
    color: #ffffff;
    font-size: 13px;
    outline: none;
}

.footer-newsletter-form button {
    background-color: #8b5cf6; /* Purple/violet brand button */
    color: #ffffff;
    border: none;
    padding: 0 16px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.footer-newsletter-form button:hover {
    background-color: #a78bfa;
}

/* Column Headings */
.footer-title {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
}

/* Quick Links with Caret */
.footer-links-arrow {
    list-style: none;
    padding: 0;
}

.footer-links-arrow li {
    margin-bottom: 12px;
}

.footer-links-arrow a {
    font-size: 14px;
    color: #a0a0a0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.footer-links-arrow a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.caret-arrow {
    color: #555555;
    font-size: 11px;
    font-weight: var(--font-weight-bold);
}

/* Contact Us Column */
.footer-contacts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-circle-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #121212;
    border: 1px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
}

.contact-text-meta {
    display: flex;
    flex-direction: column;
}

.contact-row-title {
    font-size: 9px;
    color: #555555;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-row-value {
    font-size: 13px;
    color: #ffffff;
    font-weight: var(--font-weight-semibold);
}

.contact-row-value.accent-teal {
    color: #338c9f;
}

/* Leadership Card Box */
.leadership-card {
    background-color: #0c0c0c;
    border: 1px solid #151515;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.leadership-profile-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.leadership-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #161616;
    border: 1px solid #222222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.leadership-info {
    display: flex;
    flex-direction: column;
}

.leadership-name {
    font-size: 12px;
    color: #ffffff;
    font-weight: var(--font-weight-bold);
}

.leadership-tagline {
    font-size: 11px;
    color: #f59e0b; /* Orange/gold */
    font-weight: var(--font-weight-bold);
}

.leadership-company {
    font-size: 10px;
    color: #555555;
}

.leadership-checkpoints {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.leadership-checkpoints li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 11px;
    color: #a0a0a0;
}

.green-check {
    color: #10b981; /* Green */
    font-weight: var(--font-weight-bold);
}

.leadership-card-btn {
    width: 100%;
    height: 34px;
    background-color: #121212;
    border: 1px solid #1e1e1e;
    color: #ffffff;
    font-size: 10px;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.leadership-card-btn:hover {
    background-color: #1c1c1c;
    border-color: #2b2b2b;
}

.footer-bottom {
    border-top: 1px solid #111111; /* Darker border */
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-xs);
    color: #444444; /* Darker copyright text */
}

.payment-icons {
    display: flex;
    gap: var(--spacing-md);
}

.payment-method {
    padding: 2px 6px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-semibold);
}

/* ==========================================================================
   9. Slide Drawers & Modals Overlay System
   ========================================================================== */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-index-drawer);
    visibility: hidden;
    transition: visibility var(--transition-normal);
}

.drawer[aria-hidden="false"] {
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-overlay);
    opacity: 0;
    transition: opacity var(--transition-normal) ease;
}

.drawer[aria-hidden="false"] .drawer-overlay {
    opacity: 1;
}

.drawer-content {
    position: absolute;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--color-bg-primary);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.drawer-left .drawer-content {
    left: 0;
    transform: translateX(-100%);
}

.drawer-right .drawer-content {
    right: 0;
    transform: translateX(100%);
}

.drawer[aria-hidden="false"] .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.drawer-close {
    font-size: var(--font-size-xl);
    color: var(--color-text-secondary);
}

.drawer-close:hover {
    color: var(--color-text-primary);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-lg);
}

.drawer-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    background-color: var(--color-bg-secondary);
}

/* Empty Drawer State */
.drawer-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: var(--spacing-md);
    color: var(--color-text-muted);
}

/* Mobile Nav List Drawer */
.mobile-nav-list li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-list a {
    display: block;
    padding: var(--spacing-md) 0;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: var(--font-weight-medium);
}

.mobile-nav-list a.active {
    font-weight: var(--font-weight-bold);
}

/* Search Panel Overlay (Slide Down) */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-index-drawer);
    visibility: hidden;
    transition: visibility var(--transition-normal);
}

.search-overlay[aria-hidden="false"] {
    visibility: visible;
}

.search-overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-overlay);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.search-overlay[aria-hidden="false"] .search-overlay-bg {
    opacity: 1;
}

.search-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-primary);
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    transition: transform var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.search-overlay[aria-hidden="false"] .search-container {
    transform: translateY(0);
}

.search-header {
    max-width: 650px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-title {
    font-size: var(--font-size-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-close {
    font-size: var(--font-size-xl);
}

.search-body {
    max-width: 650px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.search-form {
    display: flex;
    border-bottom: 2px solid var(--color-text-primary);
    align-items: center;
}

.search-form input {
    flex: 1;
    border: none;
    padding: 12px 0;
    font-size: var(--font-size-md);
    font-family: inherit;
    outline: none;
}

.search-submit-btn {
    padding: 8px;
}

/* Modal Dialogs */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-index-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    transition: visibility var(--transition-normal);
}

.modal[aria-hidden="false"] {
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-overlay);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.modal[aria-hidden="false"] .modal-overlay {
    opacity: 1;
}

.modal-container {
    position: relative;
    background-color: var(--color-bg-primary);
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    opacity: 0;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
    z-index: 2;
}

.modal[aria-hidden="false"] .modal-container {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: var(--font-size-xl);
    z-index: 3;
}

.modal-list li {
    margin-bottom: 12px;
}

/* Cookies Consent Banner */
.cookies-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    z-index: var(--z-index-popup);
    padding: var(--spacing-md) 0;
    font-size: var(--font-size-xs);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.cookies-bar.show {
    transform: translateY(0);
}

.cookies-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.cookies-container a {
    color: var(--color-text-light);
    text-decoration: underline;
}

/* ==========================================================================
   10. Product Detail Page Specific CSS
   ========================================================================== */
.product-navigation-bar {
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-sm) 0;
}

.breadcrumbs {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.breadcrumbs .separator {
    margin: 0 var(--spacing-xs);
}

.breadcrumbs a:hover {
    color: var(--color-text-primary);
}

.product-prev-next-links {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    display: flex;
    gap: var(--spacing-xs);
}

/* ==========================================================================
   Product Detail 3-Column Luxury Layout
   ========================================================================== */
.product-details-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 40px 0 !important;
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .product-details-section {
        padding: 12px 24px 0 !important;
    }
}

@media screen and (max-width: 768px) {
    .product-details-section {
        padding: 12px 16px 0 !important;
    }
}

.product-three-col-layout {
    display: grid;
    grid-template-columns: 27% 45% 28%;
    gap: 24px;
    align-items: start;
}

/* --- Column 1 (Left): Meta Details & Special Offers --- */
.product-col-left {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 130px;
    z-index: 10;
    max-height: calc(100vh - 145px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-col-left::-webkit-scrollbar {
    display: none;
}

.product-meta-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.title-wishlist-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.product-col-left .product-name {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.wishlist-btn-circle {
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-circle);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.wishlist-btn-circle:hover {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.product-col-left .product-price-block {
    display: flex;
    flex-direction: row;
    gap: var(--spacing-md);
    align-items: center;
    font-size: var(--font-size-md);
}

/* Selected Size Badge replacing Price in Left Column */
.product-selected-size-block {
    margin-top: 6px;
}

.size-badge-pill {
    display: inline-block;
    padding: 6px 14px;
    background: #eef8f7;
    border: 1px solid #2eaaa0;
    color: #111111;
    font-size: 12px;
    border-radius: 20px;
    font-weight: 500;
}

.size-badge-pill strong {
    color: #2eaaa0;
    font-weight: 800;
}

/* Left Column Section 2: Fragrance Notes Section (Clean Borderless Container) */
.fragrance-notes-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 22px;
    box-shadow: none;
}

.notes-card-title,
.occasions-card-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-bottom: none;
}

.notes-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.note-card-sketch {
    background: #ffffff;
    border: 1.5px solid #111111;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.note-card-sketch:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.note-card-top-bar {
    padding: 6px 4px;
    background: #2eaaa0;
    color: #ffffff;
    border-bottom: 1.5px solid #111111;
    text-align: center;
}

.note-card-sketch:nth-child(1) .note-card-top-bar {
    background: #2eaaa0;
}

.note-card-sketch:nth-child(2) .note-card-top-bar {
    background: #111111;
}

.note-card-sketch:nth-child(3) .note-card-top-bar {
    background: #338c9f;
}

.note-top-text {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
}

/* Edge-to-Edge Center Image Cover */
.note-card-center-img {
    width: 100%;
    height: 68px;
    padding: 0;
    overflow: hidden;
    background: #f8fafc;
}

.note-card-center-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.note-card-bottom-bar {
    padding: 6px 4px;
    background: #f8fafc;
    border-top: 1.5px solid #111111;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-bottom-name {
    font-size: 9.5px;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    display: block;
}

/* Left Column Section 3: BEST FOR Compact Fit-Content Pill Section */
.best-for-occasions-card {
    background: transparent;
    border: none;
    border-top: 1px solid #e2e8f0;
    border-radius: 0;
    padding: 16px 0 0 0;
    margin-top: 18px;
    margin-bottom: 22px;
    box-shadow: none;
}

.occasions-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.occasion-card {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-sizing: border-box;
    width: fit-content;
}

.occasion-card.is-recommended {
    background: #eef8f7;
    border: 1.5px solid #2eaaa0;
    color: #111111;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(46, 170, 160, 0.15);
}

.recommend-check-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2eaaa0;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(46, 170, 160, 0.3);
}

.occ-icon {
    font-size: 13px;
}

.occ-name {
    font-size: 10.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.best-tag {
    font-size: 9px;
    background: #111111;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 800;
}

/* Special Offer Panel */
.special-offer-box {
    border: 1px solid #e5e5e5;
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    background-color: var(--color-bg-primary);
    border-radius: 8px;
}

.special-offer-box .offer-title {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    color: #27ae60; /* Darker clean green */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.offer-list li {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.offer-list li:last-child {
    margin-bottom: 0;
}

.bullet-arrow {
    color: #27ae60;
    margin-right: 6px;
    font-size: 10px;
}

/* ==========================================================================
   Image 3 Wireframe: Top Horizontal Dropdown Filters Bar & 2-Col Layout
   ========================================================================== */
.top-horizontal-filters-section {
    padding: 16px 0 24px;
}

.top-filters-bar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.filter-dropdown-wrapper {
    position: relative;
}

.filter-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 9px 16px;
    font-size: 11.5px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-dropdown-btn:hover,
.filter-dropdown-wrapper.open .filter-dropdown-btn {
    background: #ffffff;
    border-color: #2f889a;
    color: #2f889a;
    box-shadow: 0 2px 8px rgba(47, 136, 154, 0.15);
}

.filter-dropdown-btn svg {
    transition: transform 0.2s ease;
}

.filter-dropdown-wrapper.open .filter-dropdown-btn svg {
    transform: rotate(180deg);
}

.filter-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.05);
    z-index: 500;
}

.filter-dropdown-wrapper.open .filter-dropdown-menu {
    display: block;
    animation: dropdownPopIn 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes dropdownPopIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-header-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #f1f5f9;
}

/* Size Popover Grid */
.dropdown-menu-size-popover {
    min-width: 260px;
}

.luxury-size-pills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.luxury-size-pill {
    padding: 10px 14px !important;
    background: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
}

.luxury-size-pill:hover {
    background: #ffffff !important;
    border-color: #2f889a !important;
    color: #2f889a !important;
}

.luxury-size-pill.active {
    background: #0f172a !important;
    border-color: #0f172a !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2) !important;
}

/* Checkbox & Scent List items in dropdown */
.dropdown-menu-options-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-menu-options-list .custom-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: background 0.15s ease;
}

.dropdown-menu-options-list .custom-filter-checkbox:hover {
    background: #f8fafc;
    color: #2f889a;
}

.luxury-scent-list li {
    padding: 8px 10px !important;
    border-radius: 6px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    transition: all 0.15s ease !important;
}

.luxury-scent-list li:hover,
.luxury-scent-list li.active {
    background: #f1f5f9 !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

.top-filters-right-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.reset-filters-btn {
    background: transparent;
    border: 1px solid #cbd5e1;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reset-filters-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

/* 2-Column Main Layout: Left Sidebar + Right Products Grid */
.shop-main-2col-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
    padding-bottom: 60px;
}

.shop-left-sidebar {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 100px;
}

.sidebar-category-title {
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #0f172a;
    text-transform: uppercase;
    padding-bottom: 12px;
    border-bottom: 1.5px solid #2f889a;
    margin-bottom: 14px;
}

.shop-left-sidebar .filter-link-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shop-left-sidebar .filter-pill-link {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: #475569;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.shop-left-sidebar .filter-pill-link:hover {
    background: #f8fafc;
    color: #2f889a;
}

.shop-left-sidebar .filter-pill-link.active {
    background: #eef8f7;
    color: #2f889a;
    font-weight: 800;
    border-left: 3px solid #2f889a;
}

/* Visitor counter ticker */
.visitor-ticker {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.visitor-ticker strong {
    color: #338c9f; /* Highlight ticker numbers in teal */
}

/* --- Column 2 (Center): Gallery Main Image & Thumbnails --- */
.product-col-center {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.product-gallery-wrapper {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.product-thumbnails-nav-strip {
    width: 72px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: sticky;
    top: 130px;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    scrollbar-width: none;
    z-index: 5;
}

.product-thumbnails-nav-strip::-webkit-scrollbar {
    display: none;
}

.thumb-card {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    background: #f8fafc;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    box-sizing: border-box;
}

.thumb-card:hover,
.thumb-card.active {
    border-color: #2eaaa0;
    box-shadow: 0 4px 12px rgba(46, 170, 160, 0.3);
    transform: scale(1.04);
}

.thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-video-card {
    border-color: #e74c3c;
}

.thumb-video-card:hover,
.thumb-video-card.active {
    border-color: #e74c3c;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.35);
}

.thumb-video-poster {
    position: relative;
    width: 100%;
    height: 100%;
}

.thumb-play-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(231, 76, 60, 0.95);
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-align: center;
    padding: 3px 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.product-main-media-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.gallery-stacked-image {
    width: 100%;
    background-color: var(--color-bg-secondary);
    scroll-margin-top: 130px;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-stacked-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gallery-stacked-video {
    width: 100%;
    background: #000000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    margin-top: 10px;
    scroll-margin-top: 130px;
}

.video-media-header {
    background: #111111;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.video-badge {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-feature-video {
    width: 100%;
    max-height: 520px;
    display: block;
    object-fit: cover;
    background: #000000;
}

/* --- Column 3 (Right): Urgency, Selectors & Actions --- */
.product-col-right {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 130px;
    z-index: 10;
    max-height: calc(100vh - 145px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-col-right::-webkit-scrollbar {
    display: none;
}

/* Active Wishlist Heart State */
.wishlist-btn-circle.active,
.add-to-wishlist.active {
    color: #e74c3c !important;
    border-color: #e74c3c !important;
    background-color: #fdf2f2 !important;
}

.wishlist-btn-circle.active svg,
.add-to-wishlist.active svg {
    fill: #e74c3c !important;
    stroke: #e74c3c !important;
}

.sold-stat {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.sold-stat strong {
    color: #338c9f;
}

.inventory-stat {
    margin-bottom: var(--spacing-xl);
}

.inventory-stat .red-text {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    color: var(--color-sale);
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
}

.inventory-progress-bar {
    width: 100%;
    height: 4px;
    background-color: var(--color-bg-tertiary);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-sale);
    transition: width var(--transition-normal) ease;
}

/* Sizing Options selection */
.size-headers {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-xs);
}

.size-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.size-selector {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.size-swatch {
    cursor: pointer;
}

.size-swatch span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid var(--color-border);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-fast);
}

.size-swatch input[type="radio"]:checked + span {
    border-color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

/* Sizing/Help Modals Links row */
.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
    margin-bottom: var(--spacing-xl);
}

.quick-link-item {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    border-right: 1px solid var(--color-border);
    text-align: center;
    background: none;
    border-top: none;
    border-bottom: none;
    border-left: none;
    padding: 0;
}

.quick-link-item:last-child {
    border-right: none;
}

.quick-link-item:hover {
    color: #338c9f;
}

/* Purchase Add to Cart & Buy Now styling */
.purchase-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.quantity-picker {
    display: flex;
    border: 1px solid var(--color-border);
    align-items: center;
    height: 48px;
}

.qty-btn {
    width: 32px;
    height: 100%;
    font-size: var(--font-size-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-picker input {
    width: 36px;
    height: 100%;
    border: none;
    text-align: center;
    font-family: inherit;
    font-size: var(--font-size-sm);
    outline: none;
}

.add-to-cart-teal-btn {
    flex: 1;
    height: 48px;
    background-color: #338c9f; /* Deep teal brand color for cart button */
    color: var(--color-text-light);
    border: 1px solid #338c9f;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
}

.add-to-cart-teal-btn:hover {
    background-color: var(--color-bg-dark);
    border-color: var(--color-bg-dark);
}

.buy-now-btn {
    width: 100%;
    height: 48px;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    border: 1px solid var(--color-bg-dark);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
}

.buy-now-btn:hover {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
}

.shiprocket-tag {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-light);
    opacity: 0.8;
}

/* Category footer tags */
.categories-meta-row {
    font-size: var(--font-size-xs);
    color: var(--color-text-primary);
}

.categories-meta-row .muted-text {
    color: var(--color-text-muted);
}

/* Brand Feature Highlights Section (3 Luxury Badges) */
.brand-feature-badges-section {
    padding: 32px 0 20px;
    margin: 20px auto;
    border-top: 1px solid #e2e8f0;
}

.brand-feature-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .brand-feature-badges-grid {
        grid-template-columns: 1fr;
    }
}

.brand-badge-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.brand-badge-card:hover {
    transform: translateY(-4px);
    border-color: #2eaaa0;
    box-shadow: 0 8px 24px rgba(46, 170, 160, 0.15);
}

.badge-img-wrapper {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.brand-badge-img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.brand-badge-card:hover .brand-badge-img {
    transform: scale(1.06);
}

.brand-badge-img.badge-wide {
    max-width: 210px;
    max-height: 90px;
}

.badge-feature-title {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #111111;
    text-transform: uppercase;
    margin: 0 0 6px 0;
}

.badge-feature-sub {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* --- Trust Badges Section --- */
.trust-badges-section {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin: var(--spacing-2xl) auto;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.trust-badge-card {
    border: 1px solid var(--color-border);
    padding: var(--spacing-xl) var(--spacing-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    background-color: var(--color-bg-primary);
}

.badge-icon {
    color: #338c9f; /* Icon badge color matches teal accent */
}

.trust-badge-card h4 {
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 0;
    color: var(--color-text-primary);
}

/* --- Centered Tabbed Sections --- */
.product-info-tabs .tabs-nav-centered {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    margin-bottom: var(--spacing-xl);
}

.tabs-nav-centered .tab-btn {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    padding-bottom: 12px;
    position: relative;
}

.tabs-nav-centered .tab-btn.active,
.tabs-nav-centered .tab-btn:hover {
    color: var(--color-text-primary);
}

.tabs-nav-centered .tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: var(--transition-normal);
}

.tabs-nav-centered .tab-btn.active::after {
    width: 100%;
}

/* Tab Panel Display Rules */
.product-info-tabs .tab-panel {
    display: none;
    animation: fadeInTab 0.35s ease;
}

.product-info-tabs .tab-panel.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-body-paragraph {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    font-size: var(--font-size-sm);
}

/* Social Share footer row */
.social-share-row {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-3xl);
}

.share-icon-btn {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.share-icon-btn:hover {
    color: var(--color-text-primary);
    border-color: var(--color-text-primary);
}

.specs-table {
    max-width: 600px;
    margin: 0 auto;
}

.specs-table th {
    text-align: left;
    padding: var(--spacing-sm) var(--spacing-md);
    width: 200px;
    font-weight: var(--font-weight-medium);
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
}

.specs-table td {
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

/* 2-Column Split Reviews System Layout (50%-50% Equal Split) */
.reviews-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .reviews-split-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Left Column: Summary Card & In-Place Form */
.reviews-left-col {
    position: sticky;
    top: 130px;
}

.rating-summary-card,
.review-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.summary-heading,
.form-card-header h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #111111;
    text-transform: uppercase;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #2eaaa0;
}

.form-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.close-form-btn {
    background: #f1f5f9;
    border: none;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-form-btn:hover {
    background: #e2e8f0;
    color: #111111;
}

.summary-score-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.big-rating-number {
    font-size: 44px;
    font-weight: 800;
    color: #111111;
    line-height: 1;
}

.summary-stars-column {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gold-stars {
    color: #f59e0b;
    font-size: 18px;
    letter-spacing: 2px;
    text-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
}

.total-reviews-count {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.rating-bars-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.r-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #475569;
    font-weight: 600;
}

.r-bar-track {
    flex: 1;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.r-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    border-radius: 10px;
}

.write-review-cta-btn {
    width: 100%;
    padding: 13px;
    background: #111111;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.08em;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.write-review-cta-btn:hover {
    background: #2eaaa0;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 170, 160, 0.3);
}

/* Compact In-Place Review Form (No scrolling needed!) */
.compact-review-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.single-media-upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: #eef8f7;
    border: 2px dashed #2eaaa0;
    border-radius: 8px;
    cursor: pointer;
    color: #2eaaa0;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.2s ease;
}

.single-media-upload-btn:hover {
    background: #dcfce7;
    transform: translateY(-1px);
}

.media-preview-row {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.interactive-star-picker-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fffdf5;
    border: 1px solid #fef3c7;
    padding: 8px 12px;
    border-radius: 8px;
}

.rating-feedback-text {
    font-size: 11px;
    font-weight: 700;
    color: #d97706;
}

.compact-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
}

.compact-input:focus {
    border-color: #2eaaa0;
}

.submit-review-btn {
    width: 100%;
    padding: 12px;
    background: #2eaaa0;
    color: #ffffff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.08em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(46, 170, 160, 0.3);
}

/* Right Column: Customer Reviews Cards List */
.reviews-right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.review-card-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.review-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.reviewer-profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2eaaa0 0%, #1c6d66 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 3px 8px rgba(46, 170, 160, 0.25);
}

.reviewer-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: #111111;
}

.verified-badge {
    background: #eef8f7;
    color: #2eaaa0;
    border: 1px solid #2eaaa0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
}

.review-date {
    font-size: 11px;
    color: #94a3b8;
    display: block;
    margin-top: 2px;
}

.review-stars-display-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fffdf5;
    border: 1px solid #fef3c7;
    padding: 6px 12px;
    border-radius: 8px;
}

.review-numeric-score {
    font-size: 16px;
    font-weight: 800;
    color: #d97706;
}

.review-bold-gold-stars {
    font-size: 20px;
    color: #f59e0b;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.review-title {
    font-size: 15px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px 0;
}

.review-body-text {
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.review-body-text.clamp-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-body-text.expanded {
    display: block;
    -webkit-line-clamp: none;
    overflow: visible;
}

.read-more-toggle-btn {
    background: none;
    border: none;
    color: #2eaaa0;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    padding: 0;
    margin-top: 4px;
    display: inline-block;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.read-more-toggle-btn:hover {
    color: #111111;
}

/* Customer Media Thumbnails Gallery & Fullscreen Lightbox */
.review-customer-media-strip {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.review-customer-media-strip.inline-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
}

.media-strip-label-inline {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #64748b;
    text-transform: uppercase;
    white-space: nowrap;
}

.media-thumbs-grid-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-wrap: wrap;
}

.customer-media-thumb.compact-thumb {
    width: 36px;
    height: 36px;
    border-radius: 6px;
}

.view-all-reviews-wrap {
    text-align: center;
    margin-top: 16px;
}

.view-all-reviews-btn {
    width: 100%;
    padding: 14px;
    background: #ffffff;
    color: #111111;
    border: 2px solid #111111;
    border-radius: 10px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.view-all-reviews-btn:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* All Reviews Pop Modal Overlay */
.all-reviews-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.all-reviews-modal-overlay.hidden {
    display: none !important;
}

.all-reviews-modal-dialog {
    background: #ffffff;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.all-reviews-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fafafa;
}

.modal-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #111111;
    margin: 0;
}

.close-all-modal-btn {
    background: #f1f5f9;
    border: none;
    font-size: 24px;
    font-weight: 700;
    color: #64748b;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-all-modal-btn:hover {
    background: #e74c3c;
    color: #ffffff;
}

.all-reviews-modal-body {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.media-strip-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #64748b;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.media-thumbs-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.customer-media-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
    background: #000000;
}

.customer-media-thumb:hover {
    border-color: #2eaaa0;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(46, 170, 160, 0.3);
}

.customer-media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.thumb-hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.customer-media-thumb:hover .thumb-hover-icon {
    opacity: 1;
}

.video-thumb-content {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.video-play-icon {
    font-size: 16px;
    color: #e74c3c;
    margin-bottom: 2px;
}

.video-thumb-tag {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

/* Fullscreen Media Lightbox Modal Styling */
.review-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-lightbox-modal.hidden {
    display: none !important;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.lightbox-dialog {
    position: relative;
    z-index: 10000;
    max-width: 92vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close-btn {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 28px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}

/* Modern Interactive Star Rating Picker */
.interactive-star-picker {
    display: flex;
    gap: 8px;
    font-size: 32px;
    cursor: pointer;
    margin: 8px 0 16px;
    user-select: none;
}

.star-pick {
    color: #dddddd;
    transition: color 0.15s ease, transform 0.15s ease;
}

.star-pick.active,
.star-pick.hovered {
    color: #f1c40f;
}

.star-pick:hover {
    transform: scale(1.25);
}

.picker-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #333333;
    display: block;
}

.modern-review-form {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.form-heading {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 4px;
}

.form-subheading {
    font-size: 13px;
    color: #777777;
    margin-bottom: 24px;
}

/* Modern Review Cards List */
.reviews-grid-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-card-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.review-card-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.review-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #2eaaa0);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-author-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
}

.verified-badge {
    font-size: 11px;
    font-weight: 600;
    color: #27ae60;
    background: #e8f8f0;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars-gold {
    color: #f1c40f;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-date {
    font-size: 12px;
    color: #999999;
}

.review-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 6px;
}

.review-card-body {
    font-size: 14px;
    color: #555555;
    line-height: 1.6;
}

/* Related Products 3-Column Grid Layout (afeem.in Style) */
.related-products-section {
    padding: 60px 0 70px;
    background-color: #ffffff;
}

#related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 32px;
}


/* ==========================================================================
   11. Shop Catalog Page Specific CSS
   ========================================================================== */
.page-header {
    padding: var(--spacing-2xl) 0;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--spacing-xl);
}

.page-title {
    font-size: var(--font-size-2xl);
    margin-top: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

/* Filters Sidebar */
.shop-sidebar .sidebar-header {
    display: none; /* Desktop hidden */
}

.filter-group {
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-md) 0;
}

.filter-group:first-child {
    padding-top: 0;
}

.filter-title-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 0;
}

.filter-content {
    padding: var(--spacing-sm) 0;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    cursor: pointer;
}

.filter-input {
    width: 16px;
    height: 16px;
    border: 1px solid var(--color-border);
    accent-color: var(--color-bg-dark);
}

.size-swatch-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.size-swatch-btn {
    border: 1px solid var(--color-border);
    padding: 6px 12px;
    font-size: var(--font-size-xs);
    background-color: var(--color-bg-primary);
    transition: var(--transition-fast);
}

.size-swatch-btn:hover,
.size-swatch-btn.active {
    border-color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

/* Catalog Grid Listing toolbar */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.mobile-filter-trigger {
    display: none; /* Desktop hidden */
}

.product-results-count {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: var(--font-size-sm);
    background-color: var(--color-bg-primary);
    outline: none;
}

.catalog-pagination {
    margin-top: var(--spacing-3xl);
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    gap: var(--spacing-xs);
}

.pagination-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.pagination-link.active,
.pagination-link:hover {
    border-color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

/* ==========================================================================
   Modern Single Screen Fit Contact Page CSS
   ========================================================================== */
.contact-page-main {
    background-color: #ffffff;
    padding: 24px 0 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.modern-contact-section {
    width: 100%;
}

.modern-contact-card-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

/* Left Panel: Contact Info */
.contact-info-panel {
    background: linear-gradient(145deg, #111111, #1a1a1a);
    color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.c-info-header .c-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #2eaaa0;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.c-info-header .c-title {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.c-info-header .c-sub {
    font-size: 13px;
    color: #aaaaaa;
    line-height: 1.5;
    margin-bottom: 24px;
}

.c-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.c-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.c-icon-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2eaaa0;
    flex-shrink: 0;
}

.c-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.c-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #888888;
    text-transform: uppercase;
}

.c-val {
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

.c-val a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-val a:hover {
    color: #2eaaa0;
}

.concierge-live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 170, 160, 0.12);
    border: 1px solid rgba(46, 170, 160, 0.25);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #2eaaa0;
    font-weight: 500;
}

.concierge-live-status .live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

/* Right Panel: Form */
.contact-form-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.c-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 20px;
}

.compact-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.c-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.c-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.c-form-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #444444;
}

.c-form-group input,
.c-form-group select,
.c-form-group textarea {
    width: 100%;
    padding: 10px 14px;
    background: #f9f9f9;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: #111111;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.c-form-group input:focus,
.c-form-group select:focus,
.c-form-group textarea:focus {
    border-color: #2eaaa0;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(46, 170, 160, 0.1);
}

.c-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 46px;
    background: linear-gradient(135deg, #111111, #2eaaa0);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 4px;
}

.c-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 170, 160, 0.25);
}

.about-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-3xl);
    padding: var(--spacing-3xl) 0;
    align-items: center;
}

.about-text-block h2,
.contact-info-block h2,
.contact-form-block h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
}

.about-text-block p,
.contact-subtitle {
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-md);
}

.about-metrics {
    display: flex;
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: var(--font-size-2xl);
    font-family: var(--font-heading);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

.metric-label {
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.about-image-block {
    background-color: var(--color-bg-secondary);
    aspect-ratio: 1/1;
    overflow: hidden;
}

.about-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: var(--spacing-3xl) 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.value-card {
    background-color: var(--color-bg-primary);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border);
}

.value-card h4 {
    font-size: var(--font-size-md);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.value-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: var(--line-height-normal);
}

/* Contact Info list */
.info-details-list {
    margin-top: var(--spacing-2xl);
}

.info-detail-item {
    margin-bottom: var(--spacing-lg);
}

.info-detail-item h4 {
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-xs);
}

.info-detail-item p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.info-detail-item a {
    text-decoration: underline;
}

.account-panel {
    display: none;
}

.account-panel.active {
    display: block;
    animation: fadeIn var(--transition-normal);
}

.account-panel h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
}

.account-form .form-helper {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-md);
    font-size: var(--font-size-xs);
    text-decoration: underline;
    color: var(--color-text-secondary);
}

/* ==========================================================================
   11. Related Products Layout Styling
   ========================================================================== */
.related-products-section {
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid var(--color-border);
    margin-top: var(--spacing-3xl);
}

.section-title-centered {
    text-align: center;
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-2xl);
    position: relative;
    padding-bottom: var(--spacing-sm);
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.section-title-centered::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1.5px;
    background-color: #338c9f; /* Deep teal underline matching reference */
}

#related-products-grid.product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--spacing-lg);
}

/* ==========================================================================
   12. Pinned Bottom Action Bar & Variant Swatches Styling
   ========================================================================== */

/* Right column rating summary */
.product-right-rating-row {
    margin-bottom: var(--spacing-md);
}

.right-column-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
}

.rating-stars-gold {
    color: #f59e0b; /* Golden stars */
    font-size: var(--font-size-md);
    letter-spacing: 2px;
}

.rating-value-count {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
}

/* Scent Variant swatches grid */
.scents-variant-selector {
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-lg);
}

.variant-label {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    color: var(--color-text-primary);
    text-transform: uppercase;
    display: block;
    margin-bottom: var(--spacing-md);
}

.scents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.scent-swatch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    background-color: var(--color-bg-primary);
    transition: all 0.2s ease;
}

.scent-swatch-card:hover {
    border-color: var(--color-text-primary);
    transform: translateY(-2px);
}

.scent-swatch-thumb {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    margin-bottom: 4px;
}

.scent-swatch-name {
    font-size: 11px;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    text-transform: capitalize;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Sticky Bottom Action Bar container */
body.has-sticky-bar {
    padding-bottom: 75px;
}

.sticky-bottom-action-bar {
    position: fixed;
    bottom: -120px; /* Slide animations hidden state backup */
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.05);
    z-index: 999;
    padding: 12px 0;
}

.sticky-bottom-action-bar.visible {
    bottom: 0 !important; /* Force permanent display */
}

.sticky-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-xl);
}

.sticky-bar-product-info {
    display: flex;
    flex-direction: column;
}

.sticky-product-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
}

.sticky-product-price {
    font-size: var(--font-size-sm);
    color: #338c9f; /* Accent Teal */
    font-weight: var(--font-weight-bold);
    margin-top: 2px;
}

.sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Sizing select list in sticky bar */
.sticky-size-select {
    height: 38px;
    padding: 0 28px 0 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: var(--font-size-sm);
    background-color: #ffffff;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath fill='%23555' d='M0 2l4 4 4-4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* Sticky Quantity picker */
.sticky-quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    height: 38px;
    background-color: #ffffff;
}

.sticky-qty-btn {
    border: none;
    background: none;
    width: 32px;
    height: 100%;
    cursor: pointer;
    font-size: 16px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.1s;
}

.sticky-qty-btn:hover {
    background-color: var(--color-bg-secondary);
}

.sticky-quantity-picker input {
    width: 30px;
    border: none;
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    outline: none;
    background: none;
}

/* Sticky add to cart button */
.sticky-add-to-cart-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    height: 38px;
    padding: 0 var(--spacing-xl);
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.05em;
    font-size: var(--font-size-xs);
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-add-to-cart-btn:hover {
    background-color: #222222;
}

/* WhatsApp Icon btn */
.whatsapp-sticky-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #25d366; /* WhatsApp Green */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}

.whatsapp-sticky-icon-btn:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
}

/* ==========================================================================
   Catalog / Shop Page Redesign (Matching Reference Screenshot)
   ========================================================================== */
.catalog-page-main {
    background-color: #ffffff;
    padding-bottom: 50px;
}

.catalog-header-section {
    padding: 30px 0 10px;
    background-color: #ffffff;
    text-align: center;
}

.catalog-main-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 500;
    color: #111111;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.catalog-breadcrumbs {
    font-size: 13px;
    color: #777777;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.catalog-breadcrumbs a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.catalog-breadcrumbs a:hover {
    color: #2eaaa0;
}

.crumb-separator {
    color: #aaaaaa;
    font-size: 11px;
}

.crumb-current {
    color: #111111;
    font-weight: 500;
}

/* Toolbar Bar */
.catalog-toolbar-section {
    margin-top: 20px;
    margin-bottom: 30px;
}

.catalog-toolbar-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.catalog-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2f889a;
    color: #ffffff;
    border: 1px solid #2f889a;
    border-radius: 2px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.catalog-filter-btn:hover {
    background: #246d7c;
    border-color: #246d7c;
}

/* Top Collapsible Filter Panel (Luxury Pure White Design) */
.top-collapsible-filter-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
    opacity: 0;
    margin-top: 10px;
}

.top-collapsible-filter-panel.open {
    max-height: 600px;
    opacity: 1;
    margin-bottom: 24px;
}

.filter-panel-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.filter-panel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.filter-col-title {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #111111;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #2eaaa0;
}

.filter-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-pill-link {
    font-size: 13px;
    color: #475569;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: block;
    font-weight: 500;
}

.filter-pill-link.active,
.filter-pill-link:hover {
    background: #eef8f7;
    color: #2eaaa0;
    font-weight: 700;
    transform: translateX(4px);
}

.filter-checkbox-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.custom-filter-checkbox {
    font-size: 13px;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    user-select: none;
}

.custom-filter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #2eaaa0;
    cursor: pointer;
}

/* Square Size Swatch Boxes */
.size-swatch-boxes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-box {
    padding: 8px 16px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #1e293b;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-box.active,
.size-box:hover {
    background: #2eaaa0;
    color: #ffffff;
    border-color: #2eaaa0;
    box-shadow: 0 4px 12px rgba(46, 170, 160, 0.3);
}

/* Color & Scent Dots List */
.color-dots-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.color-dots-list li {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.color-dots-list li.active,
.color-dots-list li:hover {
    background: #eef8f7;
    color: #2eaaa0;
    font-weight: 700;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.catalog-toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.catalog-select {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

.view-btn {
    background: none;
    border: none;
    color: #111111;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/* Section Badges */
.catalog-section-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 8px;
}

.catalog-section-badge .badge-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #111111;
    text-transform: uppercase;
}

/* Grids */
.bestsellers-catalog-section {
    margin-bottom: 50px;
}

.all-products-catalog-section {
    margin-bottom: 40px;
}

/* Pagination Bar */
.catalog-pagination-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.page-btn.active,
.page-btn:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

/* Slide-Out Filter Drawer */
.catalog-filter-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.catalog-filter-drawer.open {
    opacity: 1;
    visibility: visible;
}

.filter-drawer-content {
    position: absolute;
    top: 0;
    left: -380px;
    width: 380px;
    height: 100%;
    background: #ffffff;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
}

.catalog-filter-drawer.open .filter-drawer-content {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eeeeee;
}

.drawer-header h3 {
    font-size: 18px;
    font-weight: 600;
}

.close-drawer-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.drawer-body {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

.filter-section {
    margin-bottom: 24px;
}

.filter-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    color: #111111;
}

.filter-options {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-options label {
    font-size: 13px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.size-swatches {
    display: flex;
    gap: 10px;
}

.swatch-btn {
    padding: 8px 16px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.swatch-btn.active {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.drawer-footer {
    padding: 20px 24px;
    border-top: 1px solid #eeeeee;
    display: flex;
    gap: 12px;
}

/* Medium & Compact Grid Card Sizes */
.product-grid-medium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-grid-medium .afeem-card-img-link {
    aspect-ratio: 1 / 1;
    max-height: 320px;
    border-radius: 8px;
    overflow: hidden;
}

.product-grid-compact .afeem-card-img-link {
    aspect-ratio: 1 / 1;
    max-height: 250px;
    border-radius: 8px;
    overflow: hidden;
}

.product-grid-medium .afeem-card-name,
.product-grid-compact .afeem-card-name {
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

/* Best Sellers 5-Item Carousel Slider System */
.bestsellers-slider-wrapper {
    position: relative;
    padding: 0 45px;
}

.bestsellers-slider-track-container {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}

.bestsellers-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.bestsellers-slider-track .afeem-product-card {
    flex: 0 0 calc((100% - (24px * 3)) / 4);
    min-width: calc((100% - (24px * 3)) / 4);
}

@media (max-width: 1200px) {
    .bestsellers-slider-track .afeem-product-card {
        flex: 0 0 calc((100% - (24px * 2)) / 3);
        min-width: calc((100% - (24px * 2)) / 3);
    }
}

@media (max-width: 992px) {
    .bestsellers-slider-track .afeem-product-card {
        flex: 0 0 calc((100% - 24px) / 2);
        min-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 576px) {
    .bestsellers-slider-track .afeem-product-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

.slider-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    font-size: 26px;
    line-height: 1;
    color: #111;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background: #2f889a;
    color: #ffffff;
    border-color: #2f889a;
    box-shadow: 0 8px 20px rgba(47, 136, 154, 0.35);
}

.prev-arrow {
    left: -10px;
}

.next-arrow {
    right: -10px;
}

/* Global Announcement Topbar Hidden Override */
.topbar,
#announcement-bar,
.announcement-bar {
    display: none !important;
}

/* ==========================================================================
   Luxury User Profile Page Layout System
   ========================================================================== */
.profile-hero-banner {
    background: linear-gradient(135deg, #111111 0%, #1a2529 100%);
    color: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #222222;
}

.profile-user-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.profile-avatar-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-avatar-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2eaaa0 0%, #1c6d66 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(46, 170, 160, 0.3);
    border: 2px solid #ffffff;
}

.profile-name-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 0 0 4px 0;
    color: #ffffff;
}

.profile-vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 170, 160, 0.15);
    border: 1px solid #2eaaa0;
    color: #2eaaa0;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.profile-main-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 50px 0 80px;
}

.profile-sidebar-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.profile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.profile-nav-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #444444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.profile-nav-btn:hover,
.profile-nav-btn.active {
    background: #eef8f7;
    color: #2eaaa0;
    font-weight: 600;
}

.profile-nav-btn.active svg {
    stroke: #2eaaa0;
}

.profile-tab-panel {
    display: none;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.profile-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.profile-section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Order Tracking Progress Bar */
.order-tracking-card {
    border: 1px solid #eef0f2;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    background: #fafafa;
}

.tracking-stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    position: relative;
}

.tracking-stepper::before {
    content: '';
    position: absolute;
    top: 14px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: #e0e0e0;
    z-index: 1;
}

.tracking-stepper-progress {
    position: absolute;
    top: 14px;
    left: 40px;
    width: 66%;
    height: 3px;
    background: #2eaaa0;
    z-index: 1;
}

.tracking-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
}

.step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #888;
}

.tracking-step.completed .step-dot {
    background: #2eaaa0;
    border-color: #2eaaa0;
    color: #ffffff;
}

.tracking-step.completed {
    color: #2eaaa0;
}

/* Bottom Sticky ADD TO CART High-Visibility Yellow-Orange Button */
.sticky-add-to-cart-btn,
#sticky-add-to-cart-submit-btn {
    background: linear-gradient(135deg, #ffaa00 0%, #ff5500 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    letter-spacing: 0.08em !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 12px 28px !important;
    box-shadow: 0 4px 16px rgba(255, 120, 0, 0.45) !important;
    transition: all 0.25s ease !important;
}

.sticky-add-to-cart-btn:hover,
#sticky-add-to-cart-submit-btn:hover {
    background: linear-gradient(135deg, #ffbb00 0%, #ff6600 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 120, 0, 0.55) !important;
}

/* Footer Concierge Email Pure White Color Override */
.footer-contacts-list .contact-row-value,
.footer-contacts-list .contact-row-value.accent-teal,
.contact-text-meta .accent-teal,
a[href^="mailto:afeemlifestyle@gmail.com"],
a[href^="mailto:support@afeem.in"] {
    color: #ffffff !important;
}

/* Header Icon Badge Pop & Blink Animation */
@keyframes iconBadgePop {
    0% { transform: scale(1); }
    30% { transform: scale(1.45) rotate(-10deg); color: #2eaaa0; }
    60% { transform: scale(1.25) rotate(10deg); }
    100% { transform: scale(1); }
}

.badge-icon-pop {
    animation: iconBadgePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Shopping Bag Drawer Footer Full Width Vertical Layout */
.drawer-footer,
#cart-drawer-footer {
    display: flex !important;
    flex-direction: column !important;
    padding: 16px !important;
    background: #ffffff !important;
    border-top: 1px solid #eef0f2 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.cart-totals {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* Saved Addresses Add New Address Button Styling */
#add-address-btn {
    background-color: #2f889a !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(47, 136, 154, 0.25);
    transition: all 0.2s ease;
}

#add-address-btn:hover {
    background-color: #246d7c !important;
    color: #ffffff !important;
}

/* Sticky Bottom Bar Action Row & Relocated Price Styling */
.sticky-bar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-bar-actions .sticky-product-price {
    font-size: 17px;
    font-weight: 800;
    color: #111111;
    margin: 0 4px;
    white-space: nowrap;
}

.sticky-stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #15803d;
    white-space: nowrap;
}

.stock-green-dot {
    font-size: 10px;
}

/* Sticky Bottom Bar Wishlist Button */
.sticky-wishlist-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1.5px solid #111111;
    background: #ffffff;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 4px;
}

.sticky-wishlist-btn:hover,
.sticky-wishlist-btn.active {
    background: #fdf2f2 !important;
    border-color: #e74c3c !important;
    color: #e74c3c !important;
}

.sticky-wishlist-btn.active svg {
    fill: #e74c3c !important;
    stroke: #e74c3c !important;
}

/* ==========================================================================
   Continuous Infinite Marquee Social Video Showcase (Right-to-Left Auto Scroll)
   ========================================================================== */
.social-video-showcase-section {
    padding: 30px 0 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.video-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.video-marquee-track {
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    animation: videoMarqueeScroll 28s linear infinite;
}

.video-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes videoMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.social-video-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    background: #111111;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-video-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    border-color: #2eaaa0;
}

.social-video-card.video-card-landscape {
    width: 270px;
    height: 170px;
}

.social-video-card.video-card-portrait {
    width: 130px;
    height: 170px;
}

.video-preview-iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
    object-fit: cover;
    transform: scale(1.35);
    transition: transform 0.4s ease;
}

.social-video-card:hover .video-preview-iframe {
    transform: scale(1.45);
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-video-card:hover .video-play-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.play-icon-triangle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding-left: 3px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.social-video-card:hover .play-icon-triangle {
    background: #2eaaa0;
    color: #ffffff;
    transform: scale(1.15);
}

/* Social Video YouTube Modal Styling */
.social-video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-video-modal-overlay.hidden {
    display: none !important;
}

.social-video-modal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.social-video-modal-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 800px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.social-video-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    z-index: 20;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.social-video-modal-close:hover {
    background: #e74c3c;
    color: #ffffff;
}

.social-video-iframe-wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.social-video-iframe-wrap.portrait-wrap {
    padding-top: 140%;
    max-width: 360px;
    margin: 0 auto;
}

.social-video-iframe-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ==========================================================================
   Interactive Social Feed Hub (Below Contact Form & Above Footer)
   Matching User's 4-Box Sketch
   ========================================================================== */
.social-feed-hub-section {
    margin: 40px auto 50px;
    padding: 0;
}

.social-hub-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: stretch;
}

@media (max-width: 992px) {
    .social-hub-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Left Box (Platform Selector & Follow Button) */
.social-hub-left-box {
    background: #ffffff;
    border: 2px solid #111111;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.hub-subtitle {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #2eaaa0;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.hub-title {
    font-size: 16px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.hub-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 20px;
}

.hub-platform-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.hub-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.hub-tab-btn:hover {
    border-color: #2eaaa0;
    color: #111111;
    background: #ffffff;
}

.hub-tab-btn.active {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hub-follow-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #2eaaa0 0%, #246d7c 100%);
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(46, 170, 160, 0.3);
    transition: all 0.25s ease;
}

.hub-follow-btn:hover {
    background: #111111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* 3 Right Rounded Feed Cards */
.social-hub-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .social-hub-cards-grid {
        grid-template-columns: 1fr;
    }
}

.social-feed-card {
    background: #ffffff;
    border: 2px solid #111111;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    min-height: 380px;
}

.social-feed-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.card-thumb-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #111111;
}

.card-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.social-feed-card:hover .card-post-img {
    transform: scale(1.08);
}

.card-platform-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(6px);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.card-hover-overlay {
    display: none !important;
}

.card-info-wrap {
    padding: 18px 20px 20px;
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.card-post-title {
    font-size: 14px;
    font-weight: 800;
    color: #111111;
    line-height: 1.45;
    margin: 0;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-action-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: #111111;
    border: 1px solid #111111;
    border-radius: 10px;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.card-action-link:hover,
.social-feed-card:hover .card-action-link {
    background: #2eaaa0;
    color: #ffffff !important;
    border-color: #2eaaa0;
    box-shadow: 0 6px 16px rgba(46, 170, 160, 0.35);
}
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Coming Soon Fallback Card Rule (Requested by User) */
.social-feed-card.coming-soon-card {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border: 2px dashed #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-coming-soon-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px;
}

.cs-icon {
    font-size: 28px;
}

.cs-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #111111;
}

.cs-sub {
    font-size: 11px;
    color: #64748b;
}

/* ==========================================================================
   Shoppable Video Reels Section (Below Hot Deals) & Lightbox Split Modal
   Matching Reference Screenshots 1 & 2
   ========================================================================== */
.shoppable-reels-section {
    padding: 60px 0;
    background: #ffffff;
}

.reels-carousel-wrapper {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    margin-top: 30px;
}

.reels-carousel-track-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 16px 24px;
    cursor: grab;
}

.reels-carousel-track-container::-webkit-scrollbar {
    display: none;
}

.reels-carousel-track-container.active-drag {
    cursor: grabbing;
    user-select: none;
}

.reels-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.reels-carousel-track:hover {
    animation-play-state: paused !important;
}

@keyframes reelsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Reel Card Item (Image 2 Style) */
.reel-item-card {
    flex: 0 0 210px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    user-select: none;
    transition: transform 0.3s ease;
}

.reel-item-card:hover {
    transform: translateY(-6px);
}

.reel-video-box {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    background: #111111;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.reel-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.reel-item-card:hover .reel-card-img {
    transform: scale(1.06);
}

.reel-card-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-size: 14px;
    padding-left: 3px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    z-index: 5;
    transition: transform 0.3s ease, background 0.3s ease;
}

.reel-item-card:hover .reel-card-play-icon {
    transform: translate(-50%, -50%) scale(1.15);
    background: #ffffff;
}

.reel-iframe-cropper {
    position: absolute;
    top: -35%;
    left: -35%;
    width: 170%;
    height: 170%;
    pointer-events: none;
}

.reel-card-video {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

/* Touch Shield prevents YouTube overlay play/pause/rewind controls from ever appearing */
.reel-video-touch-shield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent;
    cursor: pointer;
}

/* Overlaid Square Product Thumbnail Badge at Bottom Center (Image 2) */
.reel-badge-thumb {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 6;
}

.reel-badge-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.reel-play-icon-overlay {
    display: none !important;
}

/* Card Meta Below Reel Video (Image 2) */
.reel-item-meta {
    padding: 10px 2px 0;
}

.reel-item-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 5px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.reel-item-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
}

.reel-curr-price {
    font-weight: 800;
    color: #0f172a;
    font-size: 14.5px;
}

.reel-old-price {
    color: #64748b;
    text-decoration: line-through;
    font-size: 12.5px;
}

.reel-disc-badge {
    color: #0284c7;
    font-weight: 800;
    font-size: 11.5px;
    background: #f0f9ff;
    padding: 2px 6px;
    border-radius: 4px;
}

/* ==========================================================================
   Shoppable Reel Lightbox Split Modal (Image 1 Style)
   ========================================================================== */
.shoppable-reel-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shoppable-reel-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.reel-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.reel-modal-dialog {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 820px;
    height: 85vh;
    max-height: 600px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.reel-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    color: #111111;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.reel-modal-close:hover {
    transform: scale(1.1);
    background: #e2e8f0;
}

.reel-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .reel-modal-body {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }
}

/* Left: Vertical Video Panel */
.reel-video-panel {
    position: relative;
    background: #000000;
    height: 100%;
    overflow: hidden;
}

.reel-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    pointer-events: none;
}

.reel-modal-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    pointer-events: none;
}

.reel-sound-toggle {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.85);
    color: #ffffff;
    border: 1px.5px solid rgba(255, 255, 255, 0.4);
    font-size: 20px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    transition: all 0.25s ease;
    pointer-events: auto;
}

.reel-sound-toggle:hover {
    transform: scale(1.1);
    background: #111111;
}

/* Floating Share Redirect Button Bottom Right Over Video */
.reel-video-share-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 17, 17, 0.75);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
    pointer-events: auto;
}

.reel-video-share-btn:hover {
    background: #2f889a;
    border-color: #2f889a;
    color: #ffffff;
    transform: scale(1.1);
}

.reel-video-share-btn svg,
.reel-panel-wishlist-top-btn svg {
    transition: transform 0.2s ease;
}

.reel-video-share-btn:hover svg,
.reel-panel-wishlist-top-btn:hover svg {
    transform: scale(1.15);
}

/* Right: Product Details Panel */
.reel-product-panel {
    position: relative;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #ffffff;
    height: 100%;
}

.reel-modal-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
}

/* Wishlist Heart Button Directly Below Close (X) Button */
.reel-panel-wishlist-top-btn {
    position: absolute;
    top: 62px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.reel-panel-wishlist-top-btn:hover,
.reel-panel-wishlist-top-btn.active {
    background: #e11d48;
    border-color: #e11d48;
    color: #ffffff;
    transform: scale(1.1);
}

.reel-product-img-box {
    width: 200px;
    height: 200px;
    margin: 10px auto 16px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.reel-product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-prod-title {
    font-size: 21px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.reel-prod-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.reel-price-current {
    font-size: 23px;
    font-weight: 800;
    color: #0f172a;
}

.reel-price-strike {
    font-size: 15px;
    color: #64748b;
    text-decoration: line-through;
}

.reel-price-discount {
    font-size: 13px;
    font-weight: 800;
    color: #0284c7;
    background: #f0f9ff;
    padding: 3px 8px;
    border-radius: 6px;
}

.reel-prod-desc {
    font-size: 13px;
    color: #334155;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



.btn-reel-add-cart {
    flex: 1.4;
    padding: 14px 20px;
    background: #e2b13c; /* Golden Yellow Button Matching Product Page */
    color: #111111;
    border: none;
    border-radius: 10px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(226, 177, 60, 0.35);
}

.btn-reel-add-cart:hover {
    background: #d4a029;
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(226, 177, 60, 0.45);
}

.btn-reel-wishlist {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-reel-wishlist:hover,
.btn-reel-wishlist.active {
    background: #e11d48;
    border-color: #e11d48;
    color: #ffffff;
}

.btn-reel-view-product {
    flex: 1.4;
    padding: 14px 20px;
    background: #111111; /* Dark Luxury Secondary Button */
    color: #ffffff !important;
    border: 1px solid #111111;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-reel-view-product:hover {
    background: #2f889a;
    border-color: #2f889a;
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* ==========================================================================
   Grand Professional About Us Page Styling (about.html)
   ========================================================================== */

/* 1. Hero Banner & Stats Counter Bar */
.about-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #0b0f19 0%, #172554 40%, #090d16 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    overflow: hidden;
}

.about-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(226, 177, 60, 0.15), transparent 70%);
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(226, 177, 60, 0.18);
    border: 1px solid rgba(226, 177, 60, 0.4);
    color: #e2b13c;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.about-hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-sub {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto 40px;
}

.about-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #e2b13c;
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 11.5px;
    color: #cbd5e1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* 2. Story Chapter Split Sections */
.about-chapter-section {
    padding: 70px 0;
}

.about-chapter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-chapter-grid.reverse {
    direction: rtl;
}

.about-chapter-grid.reverse > * {
    direction: ltr;
}

.chapter-badge {
    font-size: 11px;
    font-weight: 800;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 8px;
    display: block;
}

.chapter-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.chapter-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.chapter-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.chapter-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.chapter-img-box:hover img {
    transform: scale(1.04);
}

/* 3. Artisanal 4-Step Crafting Timeline */
.crafting-section {
    background: #f8fafc;
    padding: 80px 0;
}

.section-head-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.section-head-tag {
    font-size: 11px;
    font-weight: 800;
    color: #e2b13c;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.section-head-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-head-desc {
    font-size: 14.5px;
    color: #64748b;
    line-height: 1.6;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.timeline-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid #e2e8f0;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.timeline-num {
    font-size: 36px;
    font-weight: 900;
    color: #e2b13c;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.9;
}

.timeline-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* 4. Olfactory Pyramid Showcase */
.pyramid-section {
    padding: 80px 0;
    background: #ffffff;
}

.pyramid-container {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pyramid-tier {
    border-radius: 16px;
    padding: 28px 32px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pyramid-tier:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.pyramid-tier.top-notes {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #bae6fd;
}

.pyramid-tier.heart-notes {
    background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
    border-color: #fef08a;
}

.pyramid-tier.base-notes {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border-color: #e9d5ff;
}

.tier-badge {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.top-notes .tier-badge { background: #0284c7; color: #ffffff; }
.heart-notes .tier-badge { background: #ca8a04; color: #ffffff; }
.base-notes .tier-badge { background: #7e22ce; color: #ffffff; }

.tier-details h4 {
    font-size: 18px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.tier-details p {
    font-size: 13.5px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

/* 5. 6 Core Brand Pillars Grid */
.pillars-section {
    background: #0f172a;
    color: #ffffff;
    padding: 80px 0;
}

.pillars-section .section-head-title {
    color: #ffffff;
}

.pillars-section .section-head-desc {
    color: #94a3b8;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 24px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(226, 177, 60, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.pillar-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: inline-block;
}

.pillar-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.pillar-card p {
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* 6. Leadership & Founder's Statement */
.founder-section {
    padding: 80px 0;
    background: #ffffff;
}

.founder-card {
    max-width: 860px;
    margin: 0 auto;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px 50px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.founder-quote {
    font-size: 18px;
    font-style: italic;
    color: #1e293b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.founder-meta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.founder-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #e2b13c;
    color: #111111;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-name {
    font-size: 16px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.founder-role {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* 7. Brand FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-accordion {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 15.5px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-toggle-icon {
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* 8. Grand Call To Action Banner */
.about-cta-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.cta-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.cta-sub {
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.btn-about-gold-cta {
    display: inline-block;
    padding: 16px 36px;
    background: linear-gradient(135deg, #e2b13c 0%, #d4a029 100%);
    color: #111111 !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(226, 177, 60, 0.4);
    transition: all 0.3s ease;
}

.btn-about-gold-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(226, 177, 60, 0.55);
}

/* Responsive Rules for About Us Page */
@media (max-width: 992px) {
    .about-hero-title { font-size: 34px; }
    .about-stats-bar { grid-template-columns: repeat(2, 1fr); }
    .about-chapter-grid { grid-template-columns: 1fr; gap: 30px; }
    .timeline-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .pyramid-tier { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    .about-hero-title { font-size: 28px; }
    .about-stats-bar { grid-template-columns: 1fr; }
    .timeline-grid { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .founder-card { padding: 30px 20px; }
}

/* ==========================================================================
   Image 2 Full-Width 3-Column Fragrance Notes Component (No Borders)
   ========================================================================== */
.fragrance-notes-image2-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    margin: 30px 0 20px;
    padding: 10px 0;
    border: none !important;
    background: transparent;
}

.note-column-image2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: none !important;
}

.note-column-title-clean {
    font-family: 'Oswald', 'Bebas Neue', var(--font-heading), sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b0f19;
    margin: 0 0 16px 0;
    text-align: center;
}

.note-column-ingredients-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.note-ingredient-single {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.note-ingredient-img-box {
    width: 76px;
    height: 66px;
    margin-bottom: 6px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.note-ingredient-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.note-ingredient-name-text {
    font-size: 13px;
    font-weight: 600;
    color: #4a1525;
    line-height: 1.25;
}

@media (max-width: 768px) {
    .fragrance-notes-image2-row-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
