/* ===========================
   LUMINA LUXE - GLOBAL VARIABLES
   =========================== */
:root {
    --primary-black: #0a0a0a;
    --luxury-gold: #c5a059;
    --soft-gray: #f8f8f8;
    --border-color: #eeeeee;
    --text-main: #333333;
    --text-muted: #888888;
    --text-white: #ffffff;
    --site-font: 'Inter', sans-serif;
    --heading-font: 'Playfair Display', serif;
}

body {
    font-family: var(--site-font);
    color: var(--text-main);
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--primary-black);
}

/* ===========================
   HOME PAGE SPECIFIC STYLES
   =========================== */

/* --- Scroll Reveal Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(139, 21, 56, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 6px rgba(139, 21, 56, 0.15);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 500px;
    max-height: 800px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: var(--text-white);
    z-index: 2;
    padding: 0 var(--spacing-sm);
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    opacity: 0.85;
    background: rgba(255, 255, 255, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 6px 20px;
    border-radius: 30px;
}

.hero-title {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 400;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.85;
}

.hero-buttons .btn,
.hero-actions .btn {
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.white-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: none;
    text-decoration: none;
}

.white-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    color: var(--text-dark) !important;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-lg);
}

.hero-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 52px;
    height: 52px;
    font-size: 22px;
    color: white;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    border-radius: 50%;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

.hero-controls button:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Menu Visibility Utilities */
.mobile-nav-only {
    display: none !important;
}

/* Hide mobile-only elements on desktop by default */
.mobile-menu-close {
    display: none;
}

/* Hide overlay on desktop, it will be display:block inside mobile media query where opacity/visibility controls it */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .mobile-nav-only {
        display: flex !important;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .mobile-menu-close {
        display: block;
    }

}

/* Promotional Banners */
/* Category Slider */
.category-slider-section {
    padding: 60px 0 20px;
    background-color: var(--soft-gray);
}

.category-slider-section .section-header {
    margin-bottom: 30px;
}

.category-slider-container {
    position: relative;
    overflow: hidden;
    margin: 0 -15px;
    /* Offset to hide horizontal scrollbar */
    padding: 0 15px;
}

.category-track {
    display: flex;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 20px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-track::-webkit-scrollbar {
    display: none;
}

.category-slide {
    flex: 0 0 calc(20% - 16px);
    min-width: 180px;
    scroll-snap-align: start;
    text-align: center;
}

.category-link {
    display: block;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.category-link:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 130px;
    height: 130px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.category-link:hover .category-image {
    border-color: var(--luxury-gold);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.2);
}

.category-name {
    font-family: var(--site-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    transition: color 0.3s ease;
}

.category-link:hover .category-name {
    color: var(--luxury-gold);
}

.slider-btn {
    position: absolute;
    top: calc(50% - 15px);
    /* Adjusted for image position */
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: 1px solid var(--border-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn.prev-btn {
    left: 5px;
}

.slider-btn.next-btn {
    right: 5px;
}

.slider-btn:hover {
    background: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
}

@media (max-width: 991px) {
    .category-slide {
        flex: 0 0 calc(25% - 15px);
    }
}

@media (max-width: 768px) {
    .category-slide {
        flex: 0 0 calc(33.333% - 13.33px);
    }

    .category-image {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 576px) {
    .category-slide {
        flex: 0 0 calc(50% - 10px);
    }

    .category-image {
        width: 90px;
        height: 90px;
    }

    .category-name {
        font-size: 12px;
    }
}

.promo-banners {
    padding: var(--spacing-xl) 0;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.promo-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.promo-content {
    text-align: center;
    color: white;
    z-index: 2;
}

.promo-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    opacity: 0.85;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.promo-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.promo-code {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.promo-card .btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.35s ease;
}

.promo-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Products Grid */
.featured-products,
.latest-products {
    padding: 60px 0 70px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-all:hover {
    transform: translateX(5px);
    color: var(--primary-dark);
}

.products-grid,
.products-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.products-grid::-webkit-scrollbar,
.products-slider::-webkit-scrollbar {
    display: none;
}

.products-grid .product-card,
.products-slider .product-card {
    flex: 0 0 calc(25% - 18px);
    scroll-snap-align: start;
    min-width: 250px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 21, 56, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Force 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: #f8f8f8;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the square without distortion */
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.2);
}



.btn-quick-add {
    background: white;
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-quick-add:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}



.product-cat {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #aaa;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-cat a {
    color: inherit;
    text-decoration: none;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-dark);
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-price-box {
    margin-top: auto;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.product-price-box .amount {
    color: var(--primary-color) !important;
}

.product-price-box ins {
    text-decoration: none;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Home Page Product Price Specific Styles */
.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.product-price .amount {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.product-price ins {
    text-decoration: none;
    color: var(--primary-color);
    margin-left: 5px;
}

.product-card-variations {
    margin-bottom: 15px;
}

.swatch-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.swatch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.swatch-color {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #ddd;
    /* Fallback */
}

.swatch-size {
    font-size: 11px;
    font-weight: 600;
    padding: 5px 8px;
    min-width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #f5f5f5;
    color: var(--text-dark);
}

.swatch:hover {
    border-color: var(--primary-color);
}

.add-to-cart {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    background: var(--text-dark);
    color: white;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(-45deg, var(--primary-color), var(--primary-dark), #4a0e2b, var(--primary-color));
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
    opacity: 0.85;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-content .btn {
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: 2px solid white;
    background: transparent;
    color: white;
    text-decoration: none;
}

.cta-content .btn:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Social Gallery */
.social-gallery {
    padding: 70px 0;
    background-color: var(--secondary-color);
    color: white;
}

.social-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-header .section-title {
    color: white;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 2px;
}

.social-header .section-title::after {
    display: none;
}

.social-header p {
    max-width: 600px;
    margin: 12px auto 0;
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
}

.social-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 21, 56, 0.75);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.social-item:hover .social-overlay {
    opacity: 1;
}

.social-item:hover img {
    transform: scale(1.12);
}

/* ===========================
   LUMINA LUXE - HEADER STYLES
   =========================== */
.site-header {
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    /* Softer shadow */
    font-size: 14px;
    position: sticky;
    top: 0;
}

/* --- Top Row --- */
.header-top {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    /* Lighter border */
}

.header-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Left: Phone & Email Contact */
.header-top-left {
    display: flex;
    align-items: center;
    gap: 25px;
    /* More spacing */
    flex: 1;
}

.header-top-left .header-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px !important;
    font-weight: 500;
    color: var(--text-muted);
    /* More subtle text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

a.header-contact-link.header-phone,
a.header-contact-link.header-email {
    font-size: 13px !important;
}

.header-contact-link:hover {
    color: var(--primary-black);
    /* Hover to black */
}

.header-contact-link svg {
    flex-shrink: 0;
}

/* Center: Logo */
.site-branding {
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.site-branding img,
.custom-logo-link img {
    margin: 0;
    padding: 0;
    display: block;
}

.site-title {
    margin-bottom: 0;
    line-height: 1;
}

.site-title a {
    font-family: var(--heading-font);
    /* Playfair Display */
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: -0.5px;
    white-space: nowrap;
    text-decoration: none;
}

/* Right: Search + Icons */
.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

/* Search Bar - Minimalist */
.header-search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-bar form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.header-search-bar form:focus-within {
    border-bottom-color: var(--primary-black);
}

.header-search-bar input[type="search"] {
    border: none;
    background: transparent;
    padding: 8px 0;
    width: 150px;
    /* Compact */
    font-family: var(--site-font);
    font-size: 13px;
    color: var(--primary-black);
    outline: none;
    transition: width 0.3s ease;
}

.header-search-bar input[type="search"]::placeholder {
    color: #bbb;
    font-style: italic;
}

.header-search-bar input[type="search"]:focus {
    width: 200px;
}

.header-search-bar button {
    background: none;
    border: none;

}

.header-search-bar button:hover {
    color: var(--primary-color);
}

/* Live Search Dropdown */
.live-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 320px;
    overflow-y: auto;
    z-index: 999;
}

.live-search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background var(--transition-fast);
    border-bottom: 1px solid #f0f0f0;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.search-result-item img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-result-title {
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-result-price {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 600;
}

.search-loading,
.search-no-results {
    padding: 14px;
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    transition: color var(--transition-fast);
    position: relative;
}

.header-icon:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--primary-color);
    color: white;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* --- Bottom Row: Centered Navigation --- */
.header-bottom {
    border-bottom: 1px solid #eee;
}

.header-bottom .main-navigation {
    text-align: center;
    margin-left: 0;
}

.primary-menu {
    display: flex;
    gap: 0;
    list-style: none;
    justify-content: center;
}

.primary-menu a {
    font-weight: 500;
    text-transform: capitalize;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: var(--text-dark);
    display: block;
    padding: 14px 18px;
    transition: color var(--transition-fast);
}

.primary-menu a:hover {
    color: var(--primary-color);
}

/* Submenu Styles */
.primary-menu li {
    position: relative;
}

.primary-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    z-index: 100;
    list-style: none;
}

.primary-menu li:hover>.sub-menu {
    display: block;
    animation: menuFadeIn 0.25s ease;
}

.primary-menu .sub-menu a {
    padding: 8px 18px;
    text-transform: none;
    font-size: 14px;
    color: var(--text-dark);
}

.primary-menu .sub-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

@keyframes menuFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Category / Shop Archive Page
   =========================== */

/* Category Hero Header */
.category-hero {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 50px 0 40px;
    border-bottom: 3px solid var(--primary-color);
}

.category-hero-title {
    font-family: var(--font-primary);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.category-hero-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 24px;
    border-radius: 6px;
}

/* Sub-Categories Grid */
.subcategory-section {
    background: #2a2a2a;
    padding: 40px 0;
}

.subcategory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.subcategory-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    background: linear-gradient(145deg, #3a3a3a, #2e2e2e);
    border-radius: 10px;
    padding: 16px 12px 12px;
    width: 110px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.subcategory-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(145deg, #444, #383838);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-color);
}

.subcategory-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.subcategory-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subcategory-name {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
}

/* Shop Layout (Sidebar + Products) */
.shop-layout {
    padding: 30px 0 60px;
    background: var(--bg-white);
}

.shop-layout-inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: start;
}

/* Shop Sidebar */


.sidebar-toggle-close {
    display: none;
}



.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-heading {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-dark);
}

/* Price Filter */
/* Old price filter styles removed */

.price-sep {
    color: #ccc;
    font-size: 14px;
    padding-top: 18px;
}

.price-filter-btn {
    width: 100%;
    padding: 9px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s;
}

.price-filter-btn:hover {
    background: var(--primary-color);
}

/* Sidebar Category List */
/* Old Sidebar Category List styles removed - replaced by Category Tree Redesign */

/* Shop Topbar */
.shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-toggle-btn {
    display: none;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.sidebar-toggle-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.results-count {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Category Products Grid */
.cat-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Pagination */

.shop-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.shop-pagination .page-numbers {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-pagination .page-numbers li {
    list-style: none;
}

.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.25s;
}

.shop-pagination .page-numbers a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(139, 21, 56, 0.04);
}

.shop-pagination .page-numbers .current {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 700;
}

.shop-pagination .page-numbers .prev,
.shop-pagination .page-numbers .next {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 15px;
}

/* Responsive: Category Page */
@media (max-width: 1024px) {
    .shop-layout-inner {
        grid-template-columns: 220px 1fr;
        gap: 24px;
    }

    .cat-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-layout-inner {
        grid-template-columns: 1fr;
    }

    /* Mobile sidebar overlay */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        z-index: 1000;
        border-radius: 0;
        overflow-y: auto;
        transition: left 0.35s ease;
        box-shadow: none;
    }

    .shop-sidebar.open {
        left: 0;
        box-shadow: 100vw 0 0 rgba(0, 0, 0, 0.5);
    }

    .sidebar-toggle-close {
        display: block;
        position: absolute;
        top: 14px;
        right: 14px;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        color: #666;
        line-height: 1;
    }

    .sidebar-toggle-btn {
        display: flex;
    }

    .cat-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .category-hero {
        padding: 35px 0 30px;
    }

    .subcategory-card {
        width: 90px;
        padding: 12px 8px 10px;
    }

    .subcategory-img {
        width: 48px;
        height: 48px;
    }

    .subcategory-name {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .cat-products-grid {
        gap: 10px;
    }

    .subcategory-grid {
        gap: 10px;
    }

    .subcategory-card {
        width: 80px;
        padding: 10px 6px 8px;
    }
}

/* Category Integrated Main Content (Description + Key Features) */
.category-main-content {
    margin: 60px 0 20px;
    padding: 50px;
    background: #685d5d;
    /* Updated Background Color */
    border-radius: 20px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category-overview-title {
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 24px;
    /* Slightly smaller */
    font-weight: 800;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 5px solid #ff007f;
    padding-left: 20px;
    line-height: 1;
}

.cat-description-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-description-block p {
    margin-bottom: 18px;
    font-size: 13.5px;
    /* Smaller font */
    line-height: 1.8;
    color: #ffffff;
    font-weight: 400;
}

.cat-description-block h2,
.cat-description-block h3,
.cat-key-features-block h2,
.cat-key-features-block h3 {
    color: #ff007f;
    /* Vibrant Pink */
    font-family: var(--font-primary);
    font-size: 20px;
    /* Smaller headings */
    font-weight: 700;
    margin: 35px 0 20px;
}

.cat-description-block h2:first-child,
.cat-description-block h3:first-child,
.cat-key-features-block h2:first-child,
.cat-key-features-block h3:first-child {
    margin-top: 0;
}

/* Key Features Block */
.cat-key-features-block p {
    margin-bottom: 16px;
    font-size: 13.5px;
    /* Smaller font */
    color: #ffffff;
}

.cat-key-features-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-key-features-block li {
    margin-bottom: 24px;
    position: relative;
    padding-left: 20px;
    font-size: 13.5px;
    /* Smaller font */
    line-height: 1.7;
    color: #ffffff;
}

.cat-key-features-block li::before {
    content: "•";
    color: #ff007f;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
    top: 2px;
}

/* Yellow Highlighted Content */
.cat-key-features-block strong,
.cat-key-features-block b,
.cat-description-block strong,
.cat-description-block b {
    color: #ffcc00;
    /* Brilliant Yellow */
    font-weight: 700;
}

.cat-key-features-block a,
.cat-description-block a {
    color: #ff007f;
    text-decoration: underline;
    transition: all 0.2s;
}

.cat-key-features-block a:hover,
.cat-description-block a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

@media (max-width: 768px) {
    .category-main-content {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .category-overview-title {
        font-size: 20px;
    }
}

/* ===========================
   MAIN SHOP PAGE — PREMIUM REDESIGN
   =========================== */

/* ── Root variables used in shop ── */
:root {
    --primary-color: #8B1538;
    --primary-dark: #6a0f2a;
    --text-dark: #1a1a1a;
    --text-light: #888888;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #eeeeee;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, .10);
    --transition-fast: .25s ease;
}

/* ──────────────────────────────
   1. SHOP BANNER
────────────────────────────── */
.shop-banner {
    position: relative;
    height: 420px;
    background-color: #1a1a1a;
    /* dark fallback when no image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

.shop-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, .55) 0%,
            rgba(0, 0, 0, .40) 50%,
            rgba(0, 0, 0, .70) 100%);
    z-index: 1;
}

.shop-banner-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 20px;
}

.shop-banner-title {
    font-size: clamp(2rem, 7vw, 4.2rem);
    font-weight: 900;
    color: #fff !important;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1.05;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .6);
}

.shop-banner-desc {
    font-size: clamp(.95rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, .92) !important;
    margin-bottom: 32px;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.shop-banner-btn {
    display: inline-block;
    padding: 15px 44px;
    background: var(--primary-color);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all .35s ease;
    box-shadow: 0 8px 24px rgba(139, 21, 56, .35);
}

.shop-banner-btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .25);
}

/* ──────────────────────────────
   2. CATEGORY TABS
────────────────────────────── */
.shop-category-tabs {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.tabs-scroll-wrapper {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.tabs-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.category-tabs-list {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 4px 4px 4px;
    margin: 0;
    flex-wrap: nowrap;
    justify-content: center;
}

.category-tabs-list .tab-item button {
    display: block;
    padding: 10px 24px;
    background: #fff;
    color: #555;
    border: 1.5px solid #e0e0e0;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    cursor: pointer;
    font-family: inherit;
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.category-tabs-list .tab-item.active button,
.category-tabs-list .tab-item button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 21, 56, .2);
}

/* ──────────────────────────────
   3. SHOP CONTENT AREA LAYOUT
────────────────────────────── */
.shop-content-area {
    padding: 40px 0 80px;
    background: var(--bg-light);
}

.shop-layout-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ──────────────────────────────
   4. SIDEBAR
────────────────────────────── */
.shop-sidebar {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 90px;
    /* below sticky tabs */
}

.sidebar-inner {
    padding: 0;
}

.widget-sidebar {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.widget-sidebar:last-child {
    border-bottom: none;
}

.widget-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Price Filter Widget */
.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.price-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1.5px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .25s;
}

.price-field:focus-within {
    border-color: var(--primary-color);
}

.price-field span {
    padding: 0 10px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 600;
    border-right: 1px solid #e8e8e8;
    background: #fff;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.price-field input[type="number"] {
    border: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
    outline: none;
    color: var(--text-dark);
    appearance: textfield;
    -moz-appearance: textfield;
}

.price-field input[type="number"]::-webkit-outer-spin-button,
.price-field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.price-sep {
    color: #ccc;
    font-size: 18px;
    font-weight: 300;
    flex-shrink: 0;
}

.btn-filter {
    width: 100%;
    padding: 11px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: background .25s, transform .2s;
}

.btn-filter:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.clear-price {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: color .2s;
}

.clear-price:hover {
    color: var(--primary-color);
}

/* Category Tree Widget */
.cat-tree {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cat-item {
    border-radius: 8px;
    overflow: hidden;
}

.cat-row {
    display: flex;
    align-items: center;
}

.sidebar-cat-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 10px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: #444;
    font-family: inherit;
    cursor: pointer;
    border-radius: 8px;
    transition: all .25s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-cat-btn:hover {
    background: rgba(139, 21, 56, .06);
    color: var(--primary-color);
}

.cat-item.active .sidebar-cat-btn {
    background: rgba(139, 21, 56, .1);
    color: var(--primary-color);
    font-weight: 700;
}

.cat-count {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    background: #f0f0f0;
    padding: 2px 7px;
    border-radius: 20px;
    flex-shrink: 0;
}

.cat-item.active .cat-count {
    background: rgba(139, 21, 56, .15);
    color: var(--primary-color);
}

/* ──────────────────────────────
   5. PRODUCTS AREA
────────────────────────────── */
.shop-products {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Results meta bar */
.shop-results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 14px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.woocommerce-result-count {
    margin: 0;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.woocommerce-ordering select {
    padding: 8px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    background: #fff;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    transition: border-color .25s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23888' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.woocommerce-ordering select:focus {
    border-color: var(--primary-color);
}

/* ──────────────────────────────
   6. PRODUCTS GRID (Shop page - fixed grid, NOT slider)
────────────────────────────── */
.main-shop-page .products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    flex-wrap: unset !important;
    flex: unset !important;
    overflow-x: unset !important;
    scroll-snap-type: unset !important;
    padding-bottom: 0 !important;
}

/* Override the home page slider card width that was set via flex */
.main-shop-page .products-grid .product-card-wrap,
.main-shop-page .products-grid .type-product {
    flex: unset !important;
    min-width: unset !important;
    width: 100% !important;
    scroll-snap-align: unset !important;
}

.main-shop-page .products-grid .product-card {
    height: 100%;
}

/* ──────────────────────────────
   7. PRODUCT CARD (Shop page)
────────────────────────────── */
.main-shop-page .product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .06);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
}

.main-shop-page .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
    border-color: rgba(139, 21, 56, .15);
}

/* Product image — taller ratio for shop */
.main-shop-page .product-image {
    position: relative;
    width: 100%;
    padding-top: 110%;
    /* slightly taller than square */
    overflow: hidden;
    background: #f6f6f6;
}

.main-shop-page .product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.main-shop-page .product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Sale badge */
.main-shop-page .sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 5;
}

/* Product info area */
.main-shop-page .product-info {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}

/* Star rating */
.main-shop-page .product-info .star-rating {
    font-size: 12px;
    margin-bottom: 6px;
    color: #f4a72a;
}

/* Product title */
.main-shop-page .product-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    line-height: 1.45;
    margin: 0 0 8px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-shop-page .product-title a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.main-shop-page .product-title a:hover {
    color: var(--primary-color);
}

/* Price + wishlist row */
.main-shop-page .product-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0 14px;
}

.main-shop-page .product-price {
    font-size: 17px !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    line-height: 1;
}

.main-shop-page .product-price .woocommerce-Price-amount {
    color: var(--primary-color) !important;
}

.main-shop-page .product-price del {
    opacity: .55;
    font-weight: 400;
    font-size: 13px;
    margin-right: 4px;
}

.main-shop-page .product-price ins {
    text-decoration: none;
}

/* Wishlist button */
.main-shop-page .wishlist-btn {
    width: 34px !important;
    height: 34px !important;
    border-radius: 50% !important;
    border: 1.5px solid #e8e8e8 !important;
    background: #fff !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
    box-shadow: none !important;
    position: static !important;
}

.main-shop-page .wishlist-btn:hover {
    border-color: var(--primary-color) !important;
    background: rgba(139, 21, 56, .06) !important;
}

.main-shop-page .wishlist-btn svg {
    color: #bbb;
    transition: color .25s;
}

.main-shop-page .wishlist-btn:hover svg,
.main-shop-page .wishlist-btn.wishlisted svg {
    color: var(--primary-color);
    fill: var(--primary-color);
}

/* Add to Cart — full width pill button */
.main-shop-page .btn-quick-add {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 16px !important;
    border: none;
    cursor: pointer;
    margin-top: auto;
    font-family: inherit;
    box-shadow: none !important;
    transform: none !important;
    transition: background .3s, transform .25s, box-shadow .3s !important;
}

.main-shop-page .btn-quick-add:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(139, 21, 56, .25) !important;
    color: #fff !important;
}

/* Product card wrap for filter animation */
.product-card-wrap {
    transition: opacity .3s ease, transform .3s ease;
}

.product-card-wrap.shop-hidden {
    display: none;
}

/* ──────────────────────────────
   8. NO PRODUCTS STATE
────────────────────────────── */
.no-products-found {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 15px;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

/* ──────────────────────────────
   9. SHOP PAGINATION
────────────────────────────── */
.shop-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.shop-pagination .page-numbers {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.shop-pagination .page-numbers li {
    list-style: none;
}

.shop-pagination .page-numbers a,
.shop-pagination .page-numbers span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all .25s;
    background: #fff;
}

.shop-pagination .page-numbers a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(139, 21, 56, .04);
}

.shop-pagination .page-numbers .current {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* ──────────────────────────────
   10. RESPONSIVE
────────────────────────────── */
@media (max-width: 1100px) {
    .shop-layout-grid {
        grid-template-columns: 230px 1fr;
        gap: 24px;
    }

    .main-shop-page .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .shop-layout-grid {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        order: 2;
        position: static;
    }

    .shop-products {
        order: 1;
    }

    .shop-banner {
        height: 300px;
    }

    .shop-banner-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .main-shop-page .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .shop-banner {
        height: 260px;
    }

    .shop-banner-desc {
        font-size: 14px;
    }

    .shop-content-area {
        padding: 24px 0 60px;
    }

    .main-shop-page .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .category-tabs-list {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .main-shop-page .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .shop-banner-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .shop-results-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}


/* Footer Styles */
.site-footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-xl) 0 0;
    font-size: 16px;
}

.footer-widgets {
    padding-bottom: var(--spacing-xl);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.footer-column h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

/* Override WordPress widget styles in footer */
.footer-column .widget {
    margin-bottom: 16px;
}

.footer-column .widget-title,
.footer-column .widgettitle,
.footer-column h2,
.footer-column h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px !important;
    color: rgba(255, 255, 255, 0.9);
}

.footer-column .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column .widget ul li {
    margin-bottom: 5px;
}

.footer-column .widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-column .widget ul li a:hover {
    color: white;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 6px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color var(--transition-fast);
    text-decoration: none;
}

.footer-menu a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    font-size: 14px;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Contact Info List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact-list li i {
    flex-shrink: 0;
    width: 16px;
    margin-top: 2px;
    color: var(--primary-color, #8B1538);
    font-size: 14px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-list li a:hover {
    color: #fff;
}



.newsletter-form {
    margin-top: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.newsletter-form input[type="email"]:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.13);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-form button[type="submit"] {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .products-grid,
    .products-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-controls button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Hide elements on mobile */
    .header-search-bar {
        display: none;
    }

    /* On mobile, hide contact text, show only icons */
    .header-contact-link .contact-text {
        display: none;
    }

    .header-top-left {
        flex: 0;
        gap: 12px;
    }

    .site-branding {
        flex: 1;
        text-align: left;
    }

    .header-top-right {
        flex: 0;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }




    .main-navigation {
        display: block;
        padding: 20px 0;
        position: relative;
    }

    .mobile-menu-close {
        display: block;
        position: absolute;
        top: -10px;
        right: 15px;
        background: none;
        border: none;
        color: var(--text-dark);
        padding: 5px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-close svg {
        transition: stroke 0.2s;
    }

    .mobile-menu-close:hover svg {
        stroke: var(--primary-color);
    }

    .primary-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .primary-menu li {
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .primary-menu li a {
        padding: 15px 20px;
        display: block;
    }

    .primary-menu li:last-child {
        border-bottom: none;
    }

    .primary-menu .sub-menu {
        display: block;
        position: static;
        box-shadow: none;
        padding-left: 15px;
        background: transparent;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .products-grid,
    .products-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        min-height: 280px;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }

    .section-header::after {
        width: 40px;
    }

    .featured-products,
    .latest-products {
        padding: 40px 0 50px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 45vh;
        min-height: 300px;
    }

    .products-grid,
    .products-slider {
        gap: 12px;
    }

    .product-info {
        padding: 12px 14px 14px;
    }
}

/* ===========================
   SIDEBAR REDESIGN & GRID UNIFICATION
   =========================== */

/* Shop Content Area */
.shop-content-area {
    padding: 40px 0 80px;
    background: #fdfdfd;
}

.shop-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Styling */
.shop-sidebar {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 30px;
    transition: all 0.3s ease;
}

.shop-sidebar:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.widget-title {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Price Filter Redesign */
.price-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.price-field {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.price-field span {
    font-weight: 600;
    font-size: 14px;
    color: #888;
}

.price-field input {
    background: transparent;
    border: none;
    width: 100%;
    padding: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.price-field input:focus {
    outline: none;
    background: transparent;
}

.btn-filter {
    width: 100%;
    margin-bottom: 20px;
    background: var(--text-dark);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Category Tree Redesign */
.cat-tree {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cat-item {
    margin-bottom: 8px;
}

.cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cat-row:hover {
    background: #f9f9f9;
}

.cat-item.active>.cat-row {
    background: rgba(139, 21, 56, 0.05);
}

.sidebar-cat-btn {
    flex: 1;
    background: none;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.sidebar-cat-btn .cat-count {
    font-size: 11px;
    color: #999;
    background: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.cat-item.active>.cat-row .sidebar-cat-btn {
    color: var(--primary-color);
    font-weight: 700;
}

.cat-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    margin-left: 8px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.cat-toggle.open {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.sidebar-sub-list {
    margin-left: 20px;
    padding-left: 16px;
    border-left: 2px solid #f0f0f0;
    margin-top: 5px;
    display: none;
}

.sidebar-sub-list.expanded {
    display: block;
    animation: fadeIn 0.3s ease;
}

.sidebar-sub-list li a {
    font-size: 13px;
    color: #666;
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
}

.sidebar-sub-list li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.sidebar-sub-list li.active a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Product Grid Unification */
/* ================================
   UNIVERSAL PRODUCT GRID RESET
================================ */
.products-grid,
.cat-products-grid {
    display: grid !important;
    grid-auto-rows: 1fr !important;
    align-items: stretch !important;
    gap: 30px;
}

/* ================================
   DESKTOP (4 COLUMNS)
================================ */
@media (min-width: 1200px) {

    .products-grid,
    .cat-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ================================
   TABLET (3 COLUMNS)
================================ */
@media (max-width: 1199px) {

    .products-grid,
    .cat-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ================================
   MOBILE LANDSCAPE (2 COLUMNS)
================================ */
@media (max-width: 768px) {
    .shop-layout-grid {
        display: block;
        /* Stack on mobile */
    }

    .shop-sidebar {
        display: none;
        /* Hidden by default, toggled via JS */
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        border-radius: 0;
        overflow-y: auto;
    }

    .shop-sidebar.open {
        display: block;
        box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
    }

    .products-grid,
    .cat-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ================================
   MOBILE PORTRAIT (2 COLUMNS)
================================ */
@media (max-width: 480px) {

    .products-grid,
    .cat-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ================================
   ADD TO CART IMPROVEMENTS
================================ */

/* Container for the buttons to keep them aligned */
/* Container for the buttons to keep them aligned */
/* Container for the buttons to keep them aligned */
.product-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: transparent;
    z-index: 10;
    margin-top: auto;
    /* Push to bottom */
    position: relative;
    /* Ensure z-index works */
}

/* Ensure product info takes available space */
.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 20px;
    padding-bottom: 0;
    text-align: left;
    /* Actions have their own padding */
}

/* Star Ratings */
.woocommerce .star-rating,
.product-info .star-rating {
    overflow: hidden;
    position: relative;
    height: 1.2em;
    font-size: 14px;
    line-height: 1.2;
    width: 75px;
    display: block;
    margin-bottom: 8px;
    color: var(--luxury-gold, #c5a059);
}

.woocommerce .star-rating::before,
.product-info .star-rating::before {
    content: '★★★★★';
    color: #e6e6e6;
    left: 0;
    position: absolute;
    top: 0;
    letter-spacing: 2px;
}

.woocommerce .star-rating span,
.product-info .star-rating span {
    overflow: hidden;
    left: 0;
    position: absolute;
    top: 0;
    padding-top: 2em;
    /* Hide original text */
}

.woocommerce .star-rating span::before,
.product-info .star-rating span::before {
    content: '★★★★★';
    left: 0;
    position: absolute;
    top: 0;
    color: var(--luxury-gold, #c5a059);
    letter-spacing: 2px;
}

/* Remove hover effect as it is now static */


/* Base Button Style (Add to Cart & View Cart) */
/* Base Button Style (Add to Cart & View Cart) - MODERN MAD STYLE */
/* ================================
   GLOBAL CURSOR FIX
   ================================ */
html body a,
html body button,
html body input[type="button"],
html body input[type="submit"],
html body input[type="reset"],
html body .btn,
html body .button {
    cursor: pointer !important;
}

/* ================================
   GLOBAL BUTTON STYLES (RED & PLAIN)
   ================================ */
.btn-quick-add,
.added_to_cart,
.single_add_to_cart_button,
.button,
button.button,
input[type="submit"],
.wc-block-grid__product-add-to-cart.wp-block-button__link {
    display: inline-flex !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 20px;
    border-radius: 50px;
    background: var(--primary-color) !important;
    color: white !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: none !important;
    border: none !important;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
    box-shadow: none !important;
    text-shadow: none !important;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Fix for Search Button inheriting global styles */
.site-header .header-search-bar button,
.site-header .header-search-bar button[type="submit"],
.site-header .header-search-bar input[type="submit"] {
    background: transparent !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    max-width: none !important;
    font-size: 0 !important;
    cursor: pointer !important;
    /* Hide any "Search" text */
    font-weight: normal !important;
    color: transparent !important;
    /* Ensure text is invisible */
}

/* Ensure SVG icon inside is visible */
.site-header .header-search-bar button svg,
.site-header .header-search-bar button[type="submit"] svg {
    width: 18px !important;
    height: 18px !important;
    color: var(--text-dark) !important;
    /* Restore icon color */
    display: block !important;
}

/* Hide any fallback "Search" submit input if present */
.site-header .header-search-bar input[value="Search"] {
    display: none !important;
}

/* Hover Effects (None as requested) */
.btn-quick-add:hover,
.added_to_cart:hover,
.single_add_to_cart_button:hover,
.button:hover,
button.button:hover,
input[type="submit"]:hover,
.wc-block-grid__product-add-to-cart.wp-block-button__link:hover {
    background: #D32F2F !important;
    /* Ensure it stays red */
    color: white !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Active Click Effect */
.btn-quick-add:active,
.added_to_cart:active,
.single_add_to_cart_button:active,
.button:active,
button.button:active,
input[type="submit"]:active,
.wc-block-grid__product-add-to-cart.wp-block-button__link:active {
    transform: translateY(1px);
}

/* Success State (Added to Cart) - Keep Red & Plain */
.btn-quick-add.added-text-changed {
    background: #D32F2F !important;
    box-shadow: none !important;
    pointer-events: none;
}

/* Loading State */
.btn-quick-add.loading,
.single_add_to_cart_button.loading {
    opacity: 0.7;
    cursor: wait;
}

.btn-quick-add.loading::after {
    content: '';
    display: inline-block;
    width: 12px !important;
    height: 12px;
    margin-left: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* "View Cart" specifically */
/* "View Cart" specifically - HIDDEN per user request for cleaner UI */
.added_to_cart {
    display: none !important;
}

/* Hide the default checkmark if it's messing up layout */
.added_to_cart::before {
    display: none;
}

/* Hide the "Added" text if it appears as a separate text node */
.product-card-actions .added_to_cart+span {
    display: none;
}

/* Fix for "Fly" animation (Hide the flying image if it's a specific element) */
/* This is a guess, but standard WC fly plugins often use these classes */
.fly-to-cart,
.flying-image {
    display: none !important;
    opacity: 0 !important;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   PRODUCT ITEM FIX
================================ */
html body .products-grid .product,
html body .cat-products-grid .product,
html body.woocommerce .products-grid .product,
html body.woocommerce .cat-products-grid .product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* ================================
   PRODUCT CARD
================================ */
html body .product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Push buttons to bottom */
.product-card .product-info {
    flex-grow: 1;
}

/* ================================
   IMAGE FIX (1:1 RATIO)
================================ */
.product-card .product-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: #f5f5f5 !important;
    padding-top: 0 !important;
    /* Reset previous hack */
    position: relative !important;
}

.product-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: static !important;
    /* Reset previous absolute alignment if needed, or keep relative */
}

/* ================================
   REMOVE WC DEFAULT SPACING
================================ */
.woocommerce ul.products li.product {
    margin-bottom: 0 !important;
}

/* ================================
   SAFETY FIX
================================ */
.products-grid>*,
.cat-products-grid>* {
    min-width: 0;
}

/* Force grid items to fill the cell with high specificity */
html body .cat-products-grid .product,
html body.woocommerce .products-grid .product,
html body.woocommerce .cat-products-grid .product {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    float: none !important;
}

/* ================================
   WISHLIST ICON STYLES
================================ */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.2s ease;
    color: #767676;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    color: #ff4757;
}

.wishlist-btn.active {
    color: #ff4757;
    fill: #ff4757;
}

.wishlist-btn svg {
    stroke-width: 2px;
}

.wishlist-btn.active svg {
    fill: #ff4757;
    stroke: #ff4757;
}

html body.woocommerce .products-grid .product,
html body.woocommerce .cat-products-grid .product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    /* Ensure item takes full height of grid row */
}

html body .products-grid .product-card,
html body .cat-products-grid .product-card {
    width: 100% !important;
    height: 100% !important;
    /* Ensure card takes full height of item */
    flex-grow: 1;
    display: flex !important;
    flex-direction: column !important;
}

/* Force Image Aspect Ratio with high specificity */
html body .product-card .product-image {
    position: relative !important;
    width: 100% !important;
    height: 0 !important;
    padding-top: 100% !important;
    /* Force 1:1 Aspect Ratio */
    overflow: hidden !important;
    background-color: #f8f8f8;
}

html body .product-card .product-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

@media (min-width: 1400px) {

    .products-grid,
    .cat-products-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Large screens */
    }
}

@media (max-width: 1100px) {

    .products-grid,
    .cat-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-layout-grid {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   PRODUCT ITEM FIX
================================ */
html body .products-grid .product,
html body .cat-products-grid .product,
html body.woocommerce .products-grid .product,
html body.woocommerce .cat-products-grid .product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* ================================
   PRODUCT CARD
================================ */
html body .product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

/* Push buttons to bottom */
.product-card .product-info {
    flex-grow: 1;
}

/* ================================
   IMAGE FIX (1:1 RATIO)
================================ */
.product-card .product-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: #f5f5f5 !important;
    padding-top: 0 !important;
    /* Reset previous hack */
    position: relative !important;
}

.product-card .product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: static !important;
    /* Reset previous absolute alignment if needed, or keep relative */
}

/* ================================
   REMOVE WC DEFAULT SPACING
================================ */
.woocommerce ul.products li.product {
    margin-bottom: 0 !important;
}

/* ================================
   SAFETY FIX
================================ */
.products-grid>*,
.cat-products-grid>* {
    min-width: 0;
}

/* Force grid items to fill the cell with high specificity */
html body .cat-products-grid .product,
html body.woocommerce .products-grid .product,
html body.woocommerce .cat-products-grid .product {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    float: none !important;
}

/* ================================
   WISHLIST ICON STYLES
================================ */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: all 0.2s ease;
    color: #767676;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    color: #ff4757;
}

.wishlist-btn.active {
    color: #ff4757;
    fill: #ff4757;
}

.wishlist-btn svg {
    stroke-width: 2px;
}

.wishlist-btn.active svg {
    fill: #ff4757;
    stroke: #ff4757;
}

html body.woocommerce .products-grid .product,
html body.woocommerce .cat-products-grid .product {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    /* Ensure item takes full height of grid row */
}

html body .products-grid .product-card,
html body .cat-products-grid .product-card {
    width: 100% !important;
    height: 100% !important;
    /* Ensure card takes full height of item */
    flex-grow: 1;
    display: flex !important;
    flex-direction: column !important;
}

/* Force Image Aspect Ratio with high specificity */
html body .product-card .product-image {
    position: relative !important;
    width: 100% !important;
    height: 0 !important;
    padding-top: 100% !important;
    /* Force 1:1 Aspect Ratio */
    overflow: hidden !important;
    background-color: #f8f8f8;
}

html body .product-card .product-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    max-width: 100% !important;
    max-height: 100% !important;
}

@media (min-width: 1400px) {

    .products-grid,
    .cat-products-grid {
        grid-template-columns: repeat(4, 1fr);
        /* Large screens */
    }
}

@media (max-width: 1100px) {

    .products-grid,
    .cat-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-layout-grid {
        grid-template-columns: 250px 1fr;
        gap: 30px;
    }
}



/* Hide WP Admin Bar Search */
li#wp-admin-bar-search {
    display: none !important;
}

/* --- Toast Notifications --- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 250px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--primary-color);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left-color: #2ecc71;
}

.toast-info {
    border-left-color: var(--primary-color);
}

.toast-content {
    font-size: 14px;
    font-weight: 500;
}

.toast-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* --- Mini Cart Dropdown --- */
.header-cart-wrapper {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 20px;
}

.header-cart-wrapper:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-dropdown:before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.woocommerce-mini-cart {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-mini-cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.woocommerce-mini-cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.woocommerce-mini-cart-item a:not(.remove) {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.woocommerce-mini-cart-item .quantity {
    display: block;
    font-size: 13px;
    color: #777;
    margin-top: 4px;
}

.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999 !important;
}

.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    margin: 20px 0;
    padding-top: 10px;
    border-top: 2px solid #f5f5f5;
}

.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.woocommerce-mini-cart__buttons .button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: none;
    font-size: 15px;
    border: 2px solid #ff6b1d;
    transition: all 0.2s;
}

.woocommerce-mini-cart__buttons .button.checkout {
    background: #ff6b1d;
    color: white !important;
}

.woocommerce-mini-cart__buttons .button:not(.checkout) {
    background: white;
    color: #ff6b1d !important;
}

.woocommerce-mini-cart__buttons .button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* --- Modern Colorful About Us Page --- */
/* --- Refined Modern & Colorful About Us Page --- */
.about-page {
    background: #fff;
    overflow: hidden;
    font-family: var(--font-secondary);
}

/* Hero Section: Brand Gradient */
.about-hero-modern {
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.about-hero-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9) 0%, rgba(80, 10, 30, 0.8) 100%);
    z-index: 1;
}

.about-hero-modern .container {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 800;
    /* Max Poppins weight */
    text-transform: uppercase;
    letter-spacing: -3px;
    line-height: 0.85;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUpAbout 1s both;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 45px;
    font-weight: 500;
    opacity: 0.95;
    animation: fadeInUpAbout 1s 0.2s both;
}

.btn-hero {
    font-family: var(--font-primary);
    background: #fff !important;
    color: #8B1538 !important;
    border: none !important;
    padding: 20px 50px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.2) !important;
    transition: all 0.3s ease !important;
    animation: fadeInUpAbout 1s 0.4s both;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    background: #f8f8f8 !important;
    box-shadow: 0 20px 45px rgba(139, 21, 56, 0.3) !important;
}

/* 2-Column Grid: Elegant Color Blocks */
.about-grid-modern {
    padding: 120px 0;
    background: #fff;
}

.modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.modern-grid>* {
    min-width: 0;
}

@media (max-width: 991px) {
    .modern-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.grid-card-inner {
    border-radius: 60px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.grid-card-inner:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(139, 21, 56, 0.1);
    border-color: rgba(139, 21, 56, 0.1);
}

.card-image-box {
    height: 450px;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.grid-card-inner:hover .card-image-box img {
    transform: scale(1.1);
}

.card-text-box {
    padding: 60px;
    text-align: left;
}

.card-text-box h3 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
}

.card-text-box h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 6px;
    background: #8B1538;
    border-radius: 10px;
}

.card-text-box p {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    overflow-wrap: break-word;
    word-break: break-word;
}

/* Footer (Core Values): Refined & Colorful */
.about-footer-content {
    padding: var(--spacing-lg) 0;
    background: #fbf0f3;
    text-align: center;
}

.footer-content-inner {
    max-width: 1000px;
    margin: 0 auto;
    overflow-wrap: break-word;
    word-break: break-word;
    padding: 0 var(--spacing-md);
    text-align: center;
}

.footer-content-inner h2 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.footer-content-inner h2::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: #8B1538;
    border-radius: 10px;
}

.footer-text {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 4vw, 1.4rem);
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    text-align: center;
}

.btn-outline-about {
    font-family: var(--font-primary);
    background: #8B1538 !important;
    border: none !important;
    color: #fff !important;
    padding: 18px 45px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3) !important;
    display: inline-block;
}

.btn-outline-about:hover {
    background: #1a1a1a !important;
    transform: translateY(-3px);
}

/* FAQ: Professional & Clean with Color Accents */
.about-faq-section {
    padding: 120px 0;
    background: #fff;
}

.faq-container-inner {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 70px;
    text-align: center;
    position: relative;
}

.faq-section-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #8B1538;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee !important;
    border-radius: 25px !important;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #8B1538 !important;
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.05);
}

.faq-item.active {
    border-color: #8B1538 !important;
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.08);
}

.faq-question {
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-family: var(--font-primary);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.faq-item.active .faq-question h3 {
    color: #8B1538;
}

.faq-icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #8B1538;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-icon::after {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 40px 35px;
}

.faq-answer p {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* Transitions */
@keyframes fadeInUpAbout {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .modern-grid {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .about-grid-modern .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .about-hero-modern {
        height: auto;
        min-height: 400px;
        padding: 60px 0;
    }

    .about-hero-modern .container {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
        width: 100%;
        margin: 0 auto;
    }
}

/* ===========================
   STYLISH CONTACT PAGE (BOUTIQUE)
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700;1,900&display=swap');

.contact-page-stylish {
    background: #fdfaf7;
    /* Soft aesthetic background */
    min-height: 100vh;
}

/* Hero Section */
.contact-hero {
    padding: 100px 0 60px;
    background: url('https://www.transparenttextures.com/patterns/natural-paper.png');
    /* Subtle texture */
    text-align: center;
}

.back-link {
    display: block;
    margin-bottom: 40px;
    color: #333;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateX(-5px);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 15vw, 8rem);
    font-weight: 900;
    line-height: 0.8;
    color: #1a1a1a;
    text-transform: none;
    letter-spacing: -2px;
}

.contact-title .accent-text {
    font-family: 'Playfair Display', serif;
    color: #c5a059;
    /* Elegant Gold/Sand */
    display: block;
    margin-top: -10px;
}

.italic {
    font-style: italic;
}

/* Form Section */
.contact-form-section {
    padding-bottom: 120px;
}

.form-scroll-reveal {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
}

.stylish-contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999;
}

.form-group input,
.form-group textarea {
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    background: transparent;
    transition: border-color 0.3s ease;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #c5a059;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #ccc;
    font-style: italic;
}

.btn-stylish-submit {
    background: #c5a059;
    color: #fff;
    border: none;
    padding: 20px 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
}

.btn-stylish-submit:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
}

/* Animation */
.contact-hero-content {
    animation: fadeInUpAbout 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.form-scroll-reveal {
    animation: fadeInUpAbout 1.2s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@media (max-width: 768px) {
    .form-scroll-reveal {
        padding: 40px 20px;
        margin: 0 15px;
    }

    .contact-title {
        font-size: 4rem;
    }
}

/* Contact Dual Layout */
.contact-dual-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: flex-start;
    padding-bottom: 120px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: left;
}

.info-item label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #999;
    display: block;
    margin-bottom: 15px;
}

.info-item p,
.info-item a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #c5a059;
}

.form-card-reveal {
    background: #fff;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    animation: fadeInUpAbout 1.2s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@media (max-width: 991px) {
    .contact-dual-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info-block {
        text-align: center;
        align-items: center;
    }
}

/* ===========================
   GLOBAL DESIGN SYSTEM UNIFICATION
   =========================== */

/* Global Page Wrapper */
.boutique-page-wrapper {
    background-color: #fdfaf7;
    /* Soft aesthetic background */
    padding: 0 0 100px;
    min-height: 60vh;
}

/* ===========================
   LUMINA LUXE - FOOTER STYLES
   =========================== */
.site-footer {
    background-color: var(--primary-black);
    color: #ffffff;
    padding-top: 80px;
}

.footer-widgets {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: #ffffff;
    /* Override primary black for footer */
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-menu li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

.newsletter-form input[type="email"] {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 10px;
    font-family: var(--site-font);
}

.newsletter-form button {
    background: #ffffff;
    color: var(--primary-black);
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--luxury-gold);
    color: #ffffff;
}

.footer-bottom {
    padding: 30px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* WooCommerce Specific Standardized Pages */
.woocommerce-cart,
.woocommerce-checkout,
.woocommerce-account,
.woocommerce-page.archive {
    background: #fdfaf7;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
    background: #fff;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    margin: 0 auto;
    max-width: 1200px;
}

/* Fix header and footer width constraints on checkout/cart pages */
body.woocommerce-checkout .site-header,
body.woocommerce-cart .site-header,
body.woocommerce-checkout .site-footer,
body.woocommerce-cart .site-footer,
body.woocommerce-checkout .boutique-page-wrapper,
body.woocommerce-cart .boutique-page-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

body.woocommerce-checkout,
body.woocommerce-cart {
    overflow-x: hidden !important;
}

@media (max-width: 991px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

/* --- WooCommerce Cart & Checkout Refinements --- */

.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -2px;
}

/* Shop Table (Cart) */
.shop_table.cart {
    border: none !important;
    border-radius: 0 !important;
}

.shop_table.cart thead {
    display: none;
    /* Cleaner, minimalist look */
}

.shop_table.cart tr {
    border-bottom: 1px solid #f0f0f0 !important;
}

.shop_table.cart td {
    padding: 30px 10px !important;
    border: none !important;
}

.shop_table.cart .product-thumbnail img {
    width: 100px;
    border-radius: 4px;
}

.shop_table.cart .product-name a {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.shop_table.cart .product-price,
.shop_table.cart .product-subtotal {
    font-weight: 600;
    color: #c5a059;
    /* Gold accent */
}

/* Cart Totals Section */
.cart-collaterals {
    margin-top: 60px;
    display: flex;
    justify-content: flex-end;
}

.cart_totals {
    width: 400px !important;
    float: none !important;
    background: #fdfaf7;
    padding: 40px;
    border-radius: 4px;
}

.cart_totals h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-bottom: 2px solid #c5a059;
    display: inline-block;
    padding-bottom: 5px;
}

.cart_totals table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.cart_totals table tr th,
.cart_totals table tr td {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
}

.cart_totals .order-total {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Force Boutique Red on Checkout Buttons */
.woocommerce-cart .checkout-button,
.woocommerce-checkout #place_order,
.woocommerce-page .button.primary,
.woocommerce-page input.button {
    background: #8B1538 !important;
    /* Authentic Boutique Red */
    color: #fff !important;
    padding: 20px 40px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    transition: all 0.3s ease !important;
}

.woocommerce-cart .checkout-button:hover,
.woocommerce-checkout #place_order:hover {
    background: #1a1a1a !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 21, 56, 0.2);
}

/* Checkout Form Stylization */
@media (min-width: 992px) {
    .woocommerce-checkout form.checkout {
        display: grid;
        grid-template-columns: 55% 40%;
        gap: 0 5%;
        align-items: flex-start;
    }

    #customer_details {
        grid-column: 1 / 2;
        grid-row: 1 / 4;
    }

    #order_review_heading {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    #order_review {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
}

.woocommerce-checkout form.checkout input.input-text,
.woocommerce-checkout form.checkout textarea,
.woocommerce-checkout form.checkout select {
    border: 1px solid #e0e0e0 !important;
    background: #fdfaf7 !important;
    padding: 16px 20px !important;
    border-radius: 4px !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px !important;
    color: #333 !important;
    outline: none !important;
    width: 100% !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.woocommerce-checkout form.checkout input.input-text:focus,
.woocommerce-checkout form.checkout textarea:focus,
.woocommerce-checkout form.checkout select:focus {
    border-color: #c5a059 !important;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1) !important;
}

.woocommerce-checkout .col2-set {
    margin-bottom: 40px;
}

.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
#order_review_heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

/* ===========================
   SMART FLOATING CART TOGGLE
   =========================== */

.smart-floating-cart {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%) translateX(200%);
    z-index: 2000;
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.smart-floating-cart.is-visible {
    transform: translateY(-50%) translateX(0);
}

.floating-cart-btn {
    width: 65px;
    height: 65px;
    background: #8B1538;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-cart-btn:hover {
    background: #1a1a1a;
    transform: scale(1.1);
}

.cart-icon-wrapper {
    position: relative;
}

.floating-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #c5a059;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #8B1538;
}

/* Smart Dropdown */
.floating-cart-dropdown {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: #fff;
    width: 300px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.smart-floating-cart:hover .floating-cart-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) scale(1);
}

.floating-cart-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-cart-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
}

.subtotal-label {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #c5a059;
}

.floating-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-floating {
    display: block;
    text-align: center;
    padding: 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-cart {
    background: #1a1a1a;
    color: #fff;
}

.btn-checkout {
    background: #8B1538;
    color: #fff;
}

.btn-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .smart-floating-cart {
        right: 20px;
        bottom: 20px;
        top: auto;
        transform: translateY(200%);
    }

    .smart-floating-cart.is-visible {
        transform: translateY(0);
    }

    .floating-cart-dropdown {
        right: 0;
        bottom: 80px;
        top: auto;
        transform: scale(0.9);
    }

    .smart-floating-cart:hover .floating-cart-dropdown {
        transform: scale(1);
    }
}

/* ==============================================
   AGE VERIFICATION POPUP
   ============================================== */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.age-verification-overlay.active {
    display: flex;
    opacity: 1;
}

.age-verification-modal {
    background: rgba(26, 26, 26, 0.95);
    color: #ffffff;
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.age-verification-overlay.active .age-verification-modal {
    transform: translateY(0);
}

.age-logo img {
    max-height: 80px;
    width: auto;
    margin-bottom: 30px;
}

.age-logo h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #c5a059;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.age-modal-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: none;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 400;
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.age-actions button {
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    min-width: 160px;
    text-transform: uppercase;
}

.btn-verify-enter {
    background: #c5a059;
    border: 1px solid #c5a059;
    color: #000;
}

.btn-verify-enter:hover {
    background: transparent;
    color: #c5a059;
}

.btn-verify-exit {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-verify-exit:hover {
    background: #fff;
    color: #000;
}

.age-footer-links {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    letter-spacing: 1px;
}

.age-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 5px;
}

.age-footer-links a:hover {
    color: #c5a059;
}

/* ==============================================
   SINGLE PRODUCT LANDING PAGES
   ============================================== */
.landing-page-wrapper {
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

.lp-section {
    padding: 120px 0;
    position: relative;
}

.lp-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.lp-title {
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: #c5a059;
    margin-bottom: 25px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInUp 1s ease;
}

.lp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #c5a059;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lp-btn-buy-now {
    display: inline-block;
    background: #c5a059;
    color: #000;
    padding: 22px 60px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    margin-top: 30px;
    cursor: pointer;
}

.lp-btn-buy-now:hover {
    background: #fff;
    color: #000;
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.3);
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.lp-showcase-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.lp-showcase-text {
    flex: 1;
}

.lp-showcase-visual {
    flex: 1;
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
}

.lp-showcase-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.lp-reviews-container {
    max-width: 900px;
    margin: 0 auto;
}

.lp-cta-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 1) 0%, rgba(35, 35, 35, 1) 100%);
    padding: 80px 40px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    text-align: center;
    border-radius: 4px;
}

.lp-buy-box {
    margin-top: 50px;
}

.lp-price {
    display: block;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .lp-title {
        font-size: 50px;
    }

    .lp-showcase-split {
        flex-direction: column;
        text-align: center;
    }
}

/* ==============================================
   PREMIUM CHECKOUT STYLING
   ============================================== */
.woocommerce-checkout {
    font-family: 'Inter', sans-serif;
    color: #000;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.woocommerce-checkout h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
}

/* Form Fields */
.woocommerce-checkout .form-row {
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .woocommerce-checkout .form-row-first {
        float: left;
        width: 48%;
    }

    .woocommerce-checkout .form-row-last {
        float: right;
        width: 48%;
    }
}

.woocommerce-checkout .form-row label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
    color: #666;
}

.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout input[type="password"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background: #fdfaf7 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    padding: 16px 20px !important;
    font-size: 15px !important;
    color: #333 !important;
    width: 100% !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
    font-family: 'Inter', sans-serif;
}

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
    border-color: #c5a059 !important;
    outline: none !important;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.1) !important;
}

/* Include Select2 fixes to match luxury input styling */
.woocommerce-checkout .select2-container .select2-selection--single {
    height: 52px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    background-color: #fdfaf7 !important;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: 52px !important;
    padding-left: 20px !important;
    color: #333 !important;
    font-size: 15px !important;
}

.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
    height: 50px !important;
    right: 15px !important;
}

/* Order Review Section */
#order_review_heading {
    margin-top: 0;
}

.woocommerce-checkout-review-order {
    background: #fff;
    padding: 40px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.shop_table.woocommerce-checkout-review-order-table {
    border-collapse: collapse;
}

.shop_table.woocommerce-checkout-review-order-table th,
.shop_table.woocommerce-checkout-review-order-table td {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    text-align: left;
    background: transparent !important;
}

.shop_table.woocommerce-checkout-review-order-table .order-total {
    font-size: 20px;
    font-weight: 800;
}

/* Payment Section */
#payment {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

#payment ul.payment_methods {
    border-bottom: 1px solid #ddd !important;
    padding-bottom: 20px !important;
}

#place_order {
    background: #000 !important;
    color: #fff !important;
    border: none !important;
    padding: 20px 40px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    width: 100% !important;
    margin-top: 30px !important;
    transition: all 0.3s ease !important;
    border-radius: 0 !important;
}

#place_order:hover {
    background: #c5a059 !important;
    transform: translateY(-5px);
}

/* Specific Fix for Landing Page Inline Checkout */
.lp-inline-checkout .woocommerce-checkout {
    padding: 40px;
    background: #fff;
    color: #000;
    border-radius: 4px;
}

.lp-inline-checkout h3 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 30px;
}

/* ==============================================
   PREMIUM THANK YOU (ORDER RECEIVED) PAGE
   ============================================== */
.woocommerce-order-received .site-main {
    padding-top: 80px;
    padding-bottom: 80px;
}

.woocommerce-order-received .entry-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 60px;
    text-align: center;
}

.woocommerce-thankyou-order-received {
    font-size: 20px;
    color: #c5a059;
    text-align: center;
    font-family: 'Playfair Display', serif;
    margin-bottom: 50px;
}

ul.woocommerce-thankyou-order-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    padding: 30px;
    background: #fdfdfd;
    border: 1.5px solid #000;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

ul.woocommerce-thankyou-order-details li {
    padding-right: 30px;
    border-right: 1px solid #ddd;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    color: #666;
}

ul.woocommerce-thankyou-order-details li:last-child {
    border-right: none;
    padding-right: 0;
}

ul.woocommerce-thankyou-order-details li strong {
    display: block;
    font-size: 15px;
    color: #000;
    margin-top: 5px;
}

/* Order Tables */
.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.shop_table.order_details,
.shop_table.customer_details {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 50px;
    border: 1.5px solid #000;
}

.shop_table.order_details th,
.shop_table.order_details td {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.shop_table.order_details tfoot th,
.shop_table.order_details tfoot td {
    border-bottom: 1px solid #eee;
}

.shop_table.order_details tfoot tr:last-child td,
.shop_table.order_details tfoot tr:last-child th {
    font-size: 22px;
    font-weight: 900;
    color: #c5a059;
}

/* Address Box */
address {
    font-style: normal;
    padding: 30px;
    border: 1.5px solid #000;
    background: #fff;
    line-height: 1.8;
    color: #333;
}

/* FOOTER NEWSLETTER REFINEMENT */
.newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
}

.newsletter-form input {
    background: #fff;
    border: 1px solid #000;
    padding: 12px 15px;
    flex: 1;
    min-width: 0;
}

.newsletter-form .btn {
    background: #c5a059 !important;
    color: #000 !important;
    font-weight: 700 !important;
    border-radius: 0 !important;
    padding: 12px 25px !important;
    border: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form .btn:hover {
    background: #000 !important;
    color: #c5a059 !important;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    color: #c5a059;
    border-bottom: 2px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 12px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
}

/* ===========================
   RESPONSIVE & MOBILE STYLES
   =========================== */

/* --- Tablet / Small Laptop (max-width: 1024px) --- */
@media (max-width: 1024px) {

    /* Layout Adjustments */
    .container,
    .custom-product-container,
    .woocommerce-checkout {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
    }

    /* Grid layout: 4 -> 3 columns */
    .products-grid,
    .products-slider {
        gap: 20px;
    }

    .products-grid .product-card,
    .products-slider .product-card {
        flex: 0 0 calc(33.333% - 14px);
        min-width: 220px;
    }

    /* Promo Grid: Keep 2 but tighter */
    .promo-grid {
        gap: 20px;
    }

    /* Hero */
    .hero-title {
        font-size: 3.5rem;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {

    /* --- Header & Navigation --- */
    .site-header {
        position: relative;
        /* Ensure dropdown positions correctly relative to header */
    }

    /* Top Row: Reorder items for Toggle - Logo - Icons */
    .header-top-content {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 5px 0;
        gap: 0;
    }

    /* 1. Remove Contact Info (Left) */
    .header-top-left {
        display: none !important;
    }

    /* 2. Mobile Toggle (Left segment) */
    .mobile-menu-toggle {
        display: flex;
        order: 1;
        flex: 1;
        justify-content: flex-start;
        margin-left: 0;
        z-index: 1001;
    }

    /* 3. Logo (Middle segment) */
    .site-branding {
        order: 2;
        flex: 2;
        text-align: center;
        margin-bottom: 0;
    }

    .site-branding img {
        max-height: 40px !important;
        margin: 0 auto;
    }

    /* 4. Icons (Right segment) */
    .header-top-right {
        order: 3;
        flex: 1;
        width: auto;
        justify-content: flex-end;
    }

    .header-icons {
        justify-content: flex-end;
        gap: 15px;
    }

    /* Hide Search on Mobile Header (can be added back if needed as icon) */
    .header-search-bar {
        display: none !important;
    }

    /* Navigation Menu — 80% slide-in drawer from left */
    .header-bottom {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 2px solid var(--primary-color);
        padding: 60px 0 30px;
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
    }

    .header-bottom.active {
        transform: translateX(0);
    }

    .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .primary-menu a {
        padding: 14px 24px;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
    }

    /* Submenus on Mobile */
    .primary-menu .sub-menu {
        position: static;
        /* Stack naturally */
        box-shadow: none;
        background: #fdfdfd;
        display: none;
        /* Remain hidden until hover/click - simplified for now */
        border-top: 1px solid #eee;
    }

    .primary-menu li:hover>.sub-menu {
        display: block;
        /* Basic hover support for mobile, though click is better */
    }

    /* --- Hero Section --- */
    .hero-section {
        height: 70vh;
        min-height: 450px;
        max-height: none;
    }

    .hero-title {
        font-size: 2.2rem;
        /* Smaller title */
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .hero-controls button {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* --- Product Grids --- */
    /* 2 Columns for Mobile (Standard E-commerce) */
    .products-grid,
    .products-slider {
        gap: 12px;
        /* Tighter gap */
    }

    .products-grid .product-card,
    .products-slider .product-card {
        flex: 0 0 calc(50% - 6px);
        min-width: 160px;
    }

    /* Adjust Card Styling for small screens */
    .product-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        /* Lighter shadow */
    }

    .product-title {
        font-size: 13px;
    }

    .product-price-box {
        font-size: 15px;
    }

    .add-to-cart {
        padding: 8px 14px;
        font-size: 10px;
        width: 100%;
        /* Full width button */
        text-align: center;
    }

    /* --- Promo Banners --- */
    .promo-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
    }

    .promo-card {
        min-height: 250px;
        padding: 40px 20px;
    }

    .promo-title {
        font-size: 1.8rem;
    }

    /* --- Social Grid --- */
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 cols instead of 6 */
    }

    /* --- Footer --- */
    .footer-widgets {
        grid-template-columns: 1fr;
        /* Stack footer columns */
        text-align: center;
    }

    .footer-column h3 {
        margin-top: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }

    /* --- About Us Page Mobile Refinements --- */
    .about-page .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .about-hero-modern {
        height: auto;
        min-height: 400px;
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about-hero-modern .hero-title {
        font-size: 2.5rem !important;
        letter-spacing: -1px;
        line-height: 1.1;
        margin-bottom: 20px;
        word-break: break-word;
    }

    .about-hero-modern .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px;
        padding: 0;
        max-width: 100%;
    }

    .about-hero-modern .btn-hero {
        padding: 15px 35px !important;
        font-size: 0.95rem !important;
    }

    .about-grid-modern {
        padding: 40px 0;
    }

    .modern-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .grid-card-inner {
        border-radius: 30px;
    }

    .card-image-box {
        height: 250px;
    }

    .card-text-box {
        padding: 30px 20px;
        text-align: center;
    }

    .card-text-box h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .card-text-box h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .card-text-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-footer-content {
        padding: 60px 0;
        text-align: center;
    }

    .footer-content-inner h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .footer-text {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 30px;
        padding: 0;
    }

    .about-faq-section {
        padding: 60px 0;
    }

    .faq-section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* --- Small Mobile (max-width: 480px) --- */
@media (max-width: 480px) {

    .products-grid,
    .products-slider {
        gap: 10px;
        scroll-padding-left: 15px;
    }

    .products-grid .product-card,
    .products-slider .product-card {
        flex: 0 0 85%;
        min-width: 150px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .header-icons {
        gap: 12px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   4 Promo Banners Section
   ========================================= */
.four-banners-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

.four-banners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.promo-banner-item {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    overflow: hidden;
    border-radius: 5px;
}

.promo-banner-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
    z-index: 1;
}

.promo-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.promo-banner-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-banner-desc {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 25px;
    opacity: 0.9;
}

.promo-banner-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.promo-banner-btn:hover {
    background: #fff;
    color: var(--primary-black);
}

/* =========================================
   SEO Text Section
   ========================================= */
.seo-text-section {
    padding: 80px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.seo-text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-black);
}

.seo-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.seo-description p {
    margin-bottom: 20px;
}

.seo-description p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for 4 Promo Banners */
@media (max-width: 1024px) {
    .four-banners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .four-banners-grid {
        grid-template-columns: 1fr;
    }

    .promo-banner-item {
        height: 350px;
    }
}