/*
Theme Name: Hello Elementor Child (Arman Leather)
Theme URI: https://armanleather.com
Description: Hello Elementor Child Theme custom-built for Arman Leather.
Author: Arman Leather
Template: hello-elementor
Version: 1.0.0
*/

:root {
    --bg-main: #ffffff;
    --header-bg: #000000;
    --footer-bg: #000000;
    --accent-red: #ff3200;
    --accent-blue: #0066cc;
    --text-dark: #111111;
    --text-body: #333333;
    --text-muted: #777777;
    --border-light: #e5e5e5;
    --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}


body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}


a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--accent-red);
}

/* --- TOP BAR & HEADER --- */
#top-bar {
    background-color: #000000;
    font-size: 13px;
    padding: 8px 20px;
    color: #ffffff;
    border-bottom: 1px solid #222222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#top-bar a {
    color: #aaaaaa;
    margin-right: 15px;
}
#top-bar a:hover {
    color: #ffffff;
}

#top-bar .top-right {
    display: flex;
    align-items: center;
}

.header-social-icons {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 10px;
}

.header-social-icons a {
    color: #aaaaaa !important;
    margin-right: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.header-social-icons a:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}

header.header-main {
    background-color: #000000;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    max-height: 55px;
    height: auto;
}

nav.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 22px;
}

nav.main-nav ul li a {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

nav.main-nav ul li a:hover {
    color: #e0e0e0;
}

.cart-icon-btn {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}

/* --- HERO BANNER --- */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 520px;
    height: 60vh;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding-bottom: 45px;
    box-sizing: border-box;
    background-color: #000000; /* Solid black background to blend with images */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover; /* Preserves 100% original proportion without stretch or distortion */
    background-repeat: no-repeat;
    opacity: 0;
}

.hero-bg.slide-1 {
    background-position: center top; /* Positions faces & heads properly at the top-center */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner.jpg');
    animation: slide-animation-1 24s infinite ease-in-out;
}

.hero-bg.slide-2 {
    background-position: center center;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner.png');
    animation: slide-animation-2 24s infinite ease-in-out;
}

.hero-bg.slide-3 {
    background-position: center top;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner-3.jpg');
    animation: slide-animation-3 24s infinite ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 2;
}

@keyframes slide-animation-1 {
    0%, 28% {
        opacity: 1;
    }
    33.3%, 95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slide-animation-2 {
    0%, 28% {
        opacity: 0;
    }
    33.3%, 61.3% {
        opacity: 1;
    }
    66.6%, 100% {
        opacity: 0;
    }
}

@keyframes slide-animation-3 {
    0%, 61.3% {
        opacity: 0;
    }
    66.6%, 95% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .hero-banner {
        min-height: 440px;
        height: auto;
    }
    .hero-bg {
        background-size: cover;
        background-position: center top;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 360px;
        height: auto;
        padding-bottom: 25px;
    }
}


.hero-content h1 {
    font-size: 40px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 255, 255, 0.4);
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.hero-content h1:hover {
    transform: scale(1.02);
}

.hero-content p {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
    display: inline-block;
    padding: 8px 22px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    padding: 10px 22px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.6s ease;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover,
.btn-outline:active {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* --- CONTAINER & SECTION TITLES --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin: 50px 0 25px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111111;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #000000;
    margin: 10px auto 0;
    transition: width 0.6s ease, background 0.6s ease;
}

.section-title.revealed::after {
    width: 60px;
    background: #000000;
}

/* ==========================================================================
   MASTER HEADING EFFECTS (3D TEXT, PULSE, SLIDE DOWN, FADE IN, SCROLL & WORD REVEAL)
   ========================================================================== */

/* 1. 3D TEXT EFFECT */
.effect-3d-text {
    font-weight: 900 !important;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 
        1px 1px 0px #d4af37,
        2px 2px 0px #b59328,
        3px 3px 0px #8e721a,
        4px 4px 12px rgba(0, 0, 0, 0.9),
        0px 0px 25px rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

/* 2. TEXT PULSE EFFECT */
@keyframes textPulseGlow {
    0% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.2);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 18px rgba(255, 50, 0, 0.8), 0 0 30px rgba(255, 50, 0, 0.5);
        transform: scale(1.02);
    }
    100% {
        text-shadow: 0 0 5px rgba(212, 175, 55, 0.3), 0 0 10px rgba(212, 175, 55, 0.2);
        transform: scale(1);
    }
}
.effect-pulse-text {
    animation: textPulseGlow 3s infinite ease-in-out;
    display: inline-block;
}

/* 3. SLIDE DOWN EFFECT */
@keyframes slideDownHeader {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.effect-slide-down {
    animation: slideDownHeader 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 4. FADE IN EFFECT */
@keyframes fadeInHeader {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.effect-fade-in {
    animation: fadeInHeader 1s ease-in-out forwards;
}

/* 5. SCROLL REVEAL EFFECT */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 6. WORD REVEAL EFFECT */
.word-reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px) rotate(1.5deg);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.scroll-reveal.revealed .word-reveal-word {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}


/* --- CATEGORY GRID (WHITE BACKGROUND CARDS) --- */
.category-grid { display: none; } /* replaced by premium grid */

/* ============================================================
   ULTRA MODERN HIGH-EFFECT SHOP BY CATEGORIES SECTION
   ============================================================ */
.categories-luxury-section {
    background: #ffffff;
    padding: 60px 0 70px;
    position: relative;
    overflow: hidden;
    color: #111111;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.categories-luxury-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.cats-luxury-header {
    text-align: center;
    margin-bottom: 45px;
}

.cats-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 108, 82, 0.08);
    border: 1px solid rgba(139, 108, 82, 0.35);
    color: #8b6c52;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    padding: 5px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cats-main-heading {
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    letter-spacing: 2.5px;
    color: #111111;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 1.15;
}

.cats-luxury-line-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cats-line {
    width: 45px;
    height: 1px;
    background: #8b6c52;
    opacity: 0.5;
}

.cats-diamond {
    color: #8b6c52;
    font-size: 9px;
}

.cats-luxury-subtitle {
    font-size: 13px;
    color: #666666;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
}

/* Category Grid */
.cats-luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Individual Category Card */
.cat-luxury-card {
    display: block;
    text-decoration: none !important;
    position: relative;
    border-radius: 16px;
    perspective: 1000px;
}

.cat-luxury-card-inner {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #111111;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-luxury-card:hover .cat-luxury-card-inner {
    transform: translateY(-8px) scale(1.02);
    border-color: #111111;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

/* Shimmer Sweep Animation on Hover */
.cat-shimmer-sweep {
    position: absolute;
    top: -50%;
    left: -150%;
    width: 100%;
    height: 200%;
    background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    transform: rotate(25deg);
    z-index: 10;
    pointer-events: none;
    transition: left 0.7s ease;
}

.cat-luxury-card:hover .cat-shimmer-sweep {
    left: 150%;
}

/* Code Badge (Top Right) */
.cat-code-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(6px);
    transition: all 0.35s ease;
}

.cat-code-num {
    font-size: 11px;
    font-weight: 900;
    color: #ffffff;
}

.cat-code-label {
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #dddddd;
}

.cat-luxury-card:hover .cat-code-badge {
    background: #ffffff;
    border-color: #ffffff;
}

.cat-luxury-card:hover .cat-code-num,
.cat-luxury-card:hover .cat-code-label {
    color: #000000;
}

/* Image Wrapper & Visual Effect */
.cat-luxury-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4.1;
    overflow: hidden;
    background: #111111;
}

.cat-luxury-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(85%) contrast(1.1);
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.cat-luxury-card:hover .cat-luxury-img {
    filter: grayscale(0%) contrast(1.05) brightness(1.05);
    transform: scale(1.08);
}

/* Gradient Overlay */
.cat-luxury-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.85) 85%, #000000 100%);
    transition: background 0.4s ease;
}

.cat-luxury-card:hover .cat-luxury-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.9) 80%, #000000 100%);
}

/* Card Body Content */
.cat-luxury-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 18px 18px;
    z-index: 6;
    text-align: left;
    transition: transform 0.35s ease;
}

.cat-sub-heading {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #cccccc;
    display: block;
    margin-bottom: 4px;
}

.cat-card-title {
    font-size: clamp(13px, 1.2vw, 15.5px);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff !important;
    margin: 0 0 10px;
    line-height: 1.3;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.cat-title-accent-bar {
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin-bottom: 12px;
    transition: width 0.4s ease;
}

.cat-luxury-card:hover .cat-title-accent-bar {
    width: 55px;
}

/* Button inside Card */
.cat-luxury-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 4px;
    transition: all 0.35s ease;
}

.cat-luxury-card:hover .cat-luxury-btn {
    background: #ffffff;
    color: #000000 !important;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cat-btn-arrow {
    transition: transform 0.35s ease;
}

.cat-luxury-card:hover .cat-btn-arrow {
    transform: translateX(4px);
    stroke: #000000;
}

/* ============================================================
   PREMIUM FEATURES / VALUE PROPOSITIONS
   ============================================================ */

/* Hide old features section */
.features-section {
    display: none !important;
}

.features-premium-section {
    background: #111111;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
    padding: 56px 0;
}

.features-premium-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.features-premium-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
}

/* Vertical Separator */
.feature-premium-sep {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #2e2e2e 30%, #2e2e2e 70%, transparent);
    align-self: center;
    margin: 0 10px;
}

/* Feature Card */
.feature-premium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 30px;
    border-radius: 8px;
    transition: background 0.35s ease;
}

.feature-premium-card:hover {
    background: rgba(255,255,255,0.03);
}

/* Icon */
.feature-premium-icon-wrap {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #8B6C52;
    transition: transform 0.35s ease, color 0.35s ease;
}

.feature-premium-card:hover .feature-premium-icon-wrap {
    transform: translateY(-4px) scale(1.08);
    color: #a67c5b;
}

.feature-premium-icon {
    width: 48px;
    height: 48px;
}

.feature-premium-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-premium-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #ffffff !important;
    margin: 0;
}

.feature-premium-divider {
    width: 30px;
    height: 1px;
    background: #8B6C52;
    opacity: 0.5;
}

.feature-premium-text {
    font-size: 12.5px;
    color: #888888 !important;
    line-height: 1.75;
    margin: 0;
    max-width: 240px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
    .cats-luxury-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .features-premium-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .feature-premium-sep { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
    .categories-luxury-section { padding: 45px 0 50px; }
    .categories-luxury-container { padding: 0 16px; }
    .cats-luxury-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .cat-sub-heading { font-size: 9px; }
    .cat-card-title { font-size: 11.5px; }
    .cat-luxury-btn { padding: 6px 10px; font-size: 9px; }
    .cat-luxury-img-wrap { aspect-ratio: 3 / 4; }
    .features-premium-section { padding: 35px 0; }
    .features-premium-inner { padding: 0 16px; }
    .features-premium-grid { grid-template-columns: 1fr; }
    .feature-premium-sep { display: none; }
    .feature-premium-card {
        padding: 24px 20px;
        border-bottom: 1px solid #1e1e1e;
    }
    .feature-premium-card:last-child { border-bottom: none; }
}

/* --- PRODUCT GRID (WHITE BACKGROUND CARDS WITH HOVER ANIMATION) --- */
.homepage-products-section {
    background-color: #ffffff !important;
    color: #111111 !important;
    padding: 60px 0 !important;
}

.homepage-products-section .section-title {
    color: #111111 !important;
}

.homepage-products-section .section-title::after {
    background: #000000 !important;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.product-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease, box-shadow 0.35s ease;
    padding-bottom: 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    border-color: #000000;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.product-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #ffffff;
}

.product-card-image img, 
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #ffffff;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.09);
    filter: brightness(1.04);
}

.product-title {
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 12px 10px 6px;
    color: #111111;
    transition: color 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.35;
}

.product-title a,
.product-title a:hover,
.product-card:hover .product-title,
.product-card:hover .product-title a,
.product-card-link:hover,
.product-card-link:hover .product-title {
    color: #111111 !important;
    text-decoration: none !important;
}

.product-stars {
    color: #ffb400;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    color: #111111;
    font-size: 16px;
    font-weight: 800;
    margin-top: auto;
    margin-bottom: 12px;
}

.product-price ins {
    color: var(--accent-red);
    text-decoration: none;
}

.product-price del {
    color: #999999;
    font-size: 14px;
    margin-right: 6px;
}

.btn-add-cart {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 9px 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
    align-self: center;
}

.btn-add-cart:hover {
    background: #333333;
    color: #ffffff;
    transform: translateY(-1px);
}

/* --- FOOTER SOCIAL ICONS & BRAND HOVER COLORS --- */
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 100;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    pointer-events: none !important;
}

.social-icon svg path {
    fill: #111111;
    transition: fill 0.3s ease;
    pointer-events: none !important;
}

.social-icon.facebook:hover {
    background: #1877F2 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.5);
}
.social-icon.facebook:hover svg path {
    fill: #ffffff !important;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.5);
}
.social-icon.instagram:hover svg path {
    fill: #ffffff !important;
}

.social-icon.pinterest:hover {
    background: #E60023 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(230, 0, 35, 0.5);
}
.social-icon.pinterest:hover svg path {
    fill: #ffffff !important;
}

.social-icon.tiktok:hover {
    background: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
}
.social-icon.tiktok:hover svg path {
    fill: #ffffff !important;
}

.social-icon.youtube:hover {
    background: #FF0000 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.5);
}
.social-icon.youtube:hover svg path {
    fill: #ffffff !important;
}

.social-icon.linkedin:hover {
    background: #0A66C2 !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.5);
}
.social-icon.linkedin:hover svg path {
    fill: #ffffff !important;
}

/* --- ABOUT SEO TEXT SECTION (WHITE BACKGROUND, DARK TEXT) --- */
.about-seo-section {
    background: #ffffff;
    padding: 50px 20px;
    border-top: 1px solid #eeeeee;
    color: #333333;
}

.about-seo-section h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
}

.about-seo-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-top: 25px;
    margin-bottom: 10px;
}

.about-seo-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #444444;
    margin-bottom: 15px;
}

.about-seo-section a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.about-seo-section a:hover {
    color: var(--accent-red);
}

/* --- FOOTER (BLACK BACKGROUND, LIGHT TEXT) --- */
footer {
    background: #000000;
    border-top: 1px solid #222222;
    padding: 50px 0 20px;
    color: #aaaaaa;
    font-size: 13px;
}

footer h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: #aaaaaa;
}

footer ul li a:hover {
    color: #ffffff;
}

.copyright {
    text-align: center;
    border-top: 1px solid #1a1a1a;
    margin-top: 35px;
    padding-top: 20px;
    color: #777777;
    font-size: 12px;
}

/* --- SINGLE PRODUCT PAGE (LIGHT MODE MATCHING REFERENCE SITE) --- */
.single-product-wrapper {
    background-color: #ffffff !important;
    color: #111111 !important;
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .product-main-grid {
        grid-template-columns: 1fr;
    }
}

/* WCPA OVERRIDES - HIDE OLD PLUGIN UNSTYLED OUTPUT */
.wcpa_form_outer, .wcpa_wrap, form.cart .wcpa_form_outer, form.cart .wcpa_wrap {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.wcpa_form_outer .wcpa_row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.wcpa_form_outer .wcpa_field_wrap {
    flex: 1 1 45%;
    min-width: 200px;
    margin-bottom: 12px;
}

.wcpa_form_outer .wcpa_type_color-group,
.wcpa_form_outer .wcpa_type_radio-group[data-name*="leather"],
.wcpa_form_outer .wcpa_type_textarea,
.wcpa_form_outer .wcpa_type_select[data-name*="proccessing"] {
    flex: 1 1 100% !important;
}

.wcpa_field_label {
    color: #222222 !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.wcpa_field_label .wcpa_required, 
.wcpa_field_label span.required {
    color: #e53935 !important;
}

.wcpa_field_wrap select {
    background-color: #ffffff !important;
    color: #222222 !important;
    border: 1px solid #c8d1d9 !important;
    border-radius: 5px !important;
    padding: 4px 10px !important;
    font-size: 12.5px !important;
    font-weight: 500 !important;
    width: 100% !important;
    height: 33px !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22293%22%20height%3D%22293%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M236%20129L147%20218%2057%20129h179z%22%2F%3E%3C%2Fsvg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    background-size: 10px 10px !important;
    cursor: pointer !important;
    transition: border-color 0.2s ease !important;
}

.wcpa_type_radio-group .wcpa_options_wrap,
.wcpa_type_radio .wcpa_options_wrap,
.wcpa_options_wrap {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    align-items: center !important;
    margin-top: 6px !important;
    margin-bottom: 15px !important;
    width: 100% !important;
}

.wcpa_type_radio-group .wcpa_options_wrap > div,
.wcpa_type_radio .wcpa_options_wrap > div,
.wcpa_options_wrap .wcpa_radio,
.wcpa_radio,
.wcpa_radio_item,
div[class*="wcpa_radio"] {
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.wcpa_type_radio-group label,
.wcpa_type_radio label,
.wcpa_radio label,
.wcpa_radio_item label,
.wcpa_field_radio label,
.wcpa_options_wrap label,
div[class*="wcpa_radio"] label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #222222 !important;
    user-select: none !important;
    background: #ffffff !important;
    border: 1px solid #d0d0d0 !important;
    padding: 7px 18px !important;
    border-radius: 22px !important;
    transition: all 0.2s ease !important;
    width: auto !important;
    max-width: max-content !important;
    flex: 0 0 auto !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    margin: 0 !important;
}

.wcpa_type_radio-group label:hover,
.wcpa_type_radio label:hover,
.wcpa_radio label:hover,
.wcpa_radio_item label:hover,
.wcpa_field_radio label:hover,
div[class*="wcpa_radio"] label:hover {
    border-color: #000000 !important;
    background: #f7f7f7 !important;
    color: #000000 !important;
}

.wcpa_type_radio-group input:checked + label,
.wcpa_type_radio input:checked + label,
.wcpa_radio input:checked + label,
.wcpa_radio_item input:checked + label,
.wcpa_field_radio input:checked + label,
.wcpa_radio.wcpa_selected > label,
.wcpa_radio_item.wcpa_selected > label,
.wcpa_swatch_item.wcpa_selected > label,
.wcpa_options_wrap input:checked + label,
div[class*="wcpa_radio"] input:checked + label,
div[class*="wcpa_radio"] .wcpa_radio.wcpa_selected > label,
div[class*="wcpa_radio"] .wcpa_radio_item.wcpa_selected > label {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.wcpa_options_wrap input[type="radio"],
.wcpa_type_radio input[type="radio"],
.wcpa_radio input[type="radio"],
.wcpa_radio_item input[type="radio"],
div[class*="wcpa_radio"] input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    pointer-events: none !important;
}

.wcpa_type_color-group .wcpa_options_wrap,
.wcpa_color_wrap {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 5px !important;
    margin-bottom: 10px !important;
}

.wcpa_color_item, .wcpa_color_option {
    width: 28px !important;
    height: 28px !important;
    border-radius: 4px !important;
    border: 2px solid #dddddd !important;
    cursor: pointer !important;
    display: inline-block !important;
    transition: transform 0.2s ease !important;
}

.wcpa_color_item:hover, .wcpa_color_item.active,
.wcpa_color_option.selected {
    transform: scale(1.1) !important;
    border-color: #000000 !important;
}

form.cart {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    margin-top: 25px !important;
}

.quantity input.qty {
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px !important;
    padding: 10px 12px !important;
    width: 60px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}

.single_add_to_cart_button {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 12px 35px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 4px !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.single_add_to_cart_button::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .49.598l-1 5a.5.5 0 0 1-.465.401l-9.397.472L4.415 11H13a.5.5 0 0 1 0 1H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM3.102 4l.84 4.479 9.144-.459L13.89 4H3.102zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.single_add_to_cart_button:hover {
    background: #333333 !important;
}

/* ============================================================
   LUXURY DARK CUSTOMER REVIEWS SECTION (COMPACT FIT)
   ============================================================ */
.reviews-luxury-section {
    background: linear-gradient(180deg, #090d14 0%, #0d121c 50%, #080b10 100%);
    padding: 38px 0 42px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.reviews-luxury-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.reviews-luxury-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Top Pill Badge */
.reviews-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: #d4af37;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Main Title */
.reviews-luxury-title {
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0 0 6px;
    line-height: 1.15;
}

.reviews-luxury-title .gold-text {
    color: #d4af37;
}

/* Title Accent Line */
.reviews-title-line {
    width: 45px;
    height: 2.5px;
    background: #d4af37;
    margin: 0 auto 10px;
    border-radius: 2px;
}

/* Subtitle */
.reviews-luxury-subtitle {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 22px;
    line-height: 1.5;
}

/* Slider Wrapper */
.reviews-luxury-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.reviews-luxury-track-container {
    overflow: hidden;
    width: 100%;
    margin: 0 55px;
}

.reviews-luxury-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin: 0;
    padding: 6px 0;
    list-style: none;
}

.reviews-luxury-slide {
    flex: 0 0 33.333333%;
    min-width: 33.333333%;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Review Card (Luxury Black Compact) */
.reviews-luxury-card {
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 20px 20px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.reviews-luxury-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.7);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.2);
}

.reviews-quote-icon {
    font-size: 24px;
    color: #d4af37;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 4px;
    opacity: 0.9;
}

.reviews-stars {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.reviews-card-heading {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
    line-height: 1.3;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-card-line {
    width: 30px;
    height: 2px;
    background: rgba(212, 175, 55, 0.4);
    margin: 0 auto 10px;
}

.reviews-card-body {
    color: #e0e0e0;
    font-size: 12.5px;
    line-height: 1.55;
    margin-bottom: 15px;
    font-weight: 400;
}

/* Author Box */
.reviews-author-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
    text-align: left;
}

.reviews-country-flag {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    object-fit: cover;
    border: 1.5px solid rgba(212, 175, 55, 0.7);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    display: inline-block;
}

.reviews-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4af37;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.reviews-author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.reviews-author-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.reviews-verified-badge {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Navigation Buttons */
.reviews-luxury-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.reviews-luxury-nav.prev {
    left: 0;
    background: #000000;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.reviews-luxury-nav.prev:hover {
    background: #d4af37;
    color: #000000;
    border-color: #d4af37;
    transform: translateY(-50%) scale(1.08);
}

.reviews-luxury-nav.next {
    right: 0;
    background: #d4af37;
    color: #000000;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.reviews-luxury-nav.next:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-50%) scale(1.08);
}

/* Pagination Dots */
.reviews-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.reviews-dot {
    height: 3.5px;
    width: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot.active {
    width: 32px;
    background: #d4af37;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

/* Read More Reviews Button */
.reviews-cta-wrapper {
    text-align: center;
}

.reviews-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000000;
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.5);
    color: #ffffff !important;
    border: 1px solid rgba(212, 175, 55, 0.5);
    padding: 10px 28px;
    font-weight: 800;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    border-radius: 6px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.reviews-cta-btn:hover {
    background: #d4af37;
    color: #000000 !important;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ============================================================
   RESPONSIVE — TABLET & MOBILE BREAKPOINTS
   ============================================================ */
@media (max-width: 991px) {
    .reviews-luxury-slide {
        flex: 0 0 50%;
        min-width: 50%;
    }
    .reviews-luxury-track-container {
        margin: 0 45px;
    }
}

@media (max-width: 600px) {
    .reviews-luxury-section {
        padding: 35px 0 40px;
    }
    .reviews-luxury-container {
        padding: 0 14px;
    }
    .reviews-luxury-track-container {
        margin: 0 5px;
    }
    .reviews-luxury-slide {
        flex: 0 0 100%;
        min-width: 100%;
        padding: 0 4px;
    }
    .reviews-luxury-card {
        padding: 18px 16px 16px;
    }
    .reviews-luxury-nav {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
    .reviews-luxury-nav.prev { left: -8px; }
    .reviews-luxury-nav.next { right: -8px; }
    .reviews-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 18px;
    }
}

/* Redesigned Footer Responsive Rules */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
}

/* ==========================================================================
   COMPLETE MOBILE RESPONSIVE SYSTEM (ARMAN LEATHER 2026)
   ========================================================================== */

/* Global Prevent Horizontal Overflow */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Tablet & Mobile Header Navigation Drawer */
@media (max-width: 1024px) {
    #top-bar {
        padding: 8px 15px !important;
        font-size: 11.5px !important;
    }
    header.header-main {
        padding: 12px 18px !important;
        position: sticky;
        top: 0;
        z-index: 9999;
    }
    .mobile-menu-btn {
        display: inline-block !important;
    }
    .logo img {
        max-height: 44px !important;
    }
    nav.main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000000;
        border-top: 1px solid #222222;
        border-bottom: 2px solid #d4af37;
        box-shadow: 0 15px 35px rgba(0,0,0,0.95);
        padding: 10px 0;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        z-index: 9999;
    }
    nav.main-nav.active {
        display: block !important;
    }
    nav.main-nav > ul {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
    }
    nav.main-nav > ul > li {
        width: 100%;
    }
    nav.main-nav > ul > li > a {
        padding: 13px 20px !important;
        font-size: 13.5px !important;
        border-bottom: 1px solid #1a1a1a !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .mega-menu {
        position: static !important;
        min-width: 100% !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        background: #0d0d0d !important;
        display: none;
        box-sizing: border-box !important;
    }
    .mega-menu-grid,
    .mega-menu-grid.grid-2-col,
    .mega-menu-grid.grid-1-col {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .mega-menu-grid a,
    .mega-menu-grid a:link,
    .mega-menu-grid a:visited {
        padding: 12px 22px !important;
        font-size: 13px !important;
        border-bottom: 1px solid #1c1c1c !important;
        color: #cccccc !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .header-icons {
        gap: 10px !important;
    }
}

@media (max-width: 768px) {
    /* Top Bar Mobile */
    #top-bar {
        flex-direction: column !important;
        gap: 6px !important;
        text-align: center !important;
        padding: 8px 10px !important;
    }
    #top-bar a {
        margin-right: 8px !important;
    }
    .top-left, .top-right {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Header login text & cart button */
    .header-login-link {
        font-size: 12.5px !important;
    }
    .cart-icon-btn {
        padding: 5px 8px !important;
        font-size: 11.5px !important;
    }
    
    /* Hero Banner Mobile - Proportional 100% Fit */
    .hero-banner {
        min-height: 210px !important;
        height: 56vw !important;
        max-height: 280px !important;
        padding-top: 0 !important;
        padding-bottom: 12px !important;
        justify-content: flex-end !important;
    }
    .hero-bg {
        background-size: cover !important;
        background-position: center top !important;
    }
    .hero-bg.slide-2 {
        background-position: center top !important;
    }
    .hero-content h1,
    .hero-content p {
        display: none !important;
    }
    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        padding: 0 5px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .btn-outline {
        font-size: 9px !important;
        padding: 5px 7px !important;
        white-space: nowrap !important;
        flex: 0 1 auto !important;
        width: auto !important;
        min-width: 0 !important;
        letter-spacing: 0.2px !important;
        text-align: center !important;
        border-radius: 4px !important;
        border: 1px solid rgba(255, 255, 255, 0.75) !important;
        background: rgba(0, 0, 0, 0.55) !important;
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
        box-sizing: border-box !important;
    }
    .btn-outline:active,
    .btn-outline:hover {
        background: #ffffff !important;
        color: #000000 !important;
        border-color: #ffffff !important;
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.8) !important;
        transform: scale(0.96) !important;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    
    /* Features Section */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    /* Best Selling Products Grid (2 per row on mobile) */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .product-card {
        padding: 8px !important;
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 6px !important;
    }
    .product-card-image,
    .product-card-image img,
    .product-card img {
        height: 110px !important;
        max-height: 110px !important;
        object-fit: contain !important;
        background: #ffffff !important;
        margin: 0 auto !important;
    }
    .product-title {
        margin: 6px 0 4px !important;
    }
    .product-title a {
        font-size: 11.5px !important;
        line-height: 1.25 !important;
    }
    .product-rating {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }
    .product-price {
        font-size: 12.5px !important;
        margin-bottom: 6px !important;
    }
    .btn-add-cart {
        font-size: 10px !important;
        padding: 6px 4px !important;
        margin-top: 4px !important;
    }
}

@media (max-width: 480px) {
    /* Small Smartphone Layout */
    .logo img {
        max-height: 38px !important;
    }
    .header-login-link {
        display: none !important; /* Hide redundant text on tiny screens */
    }
    
    /* Categories Grid (2 cards per row matching reference site) */
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .cat-card {
        height: auto !important;
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 6px !important;
        overflow: hidden !important;
    }
    .cat-card img {
        height: 130px !important;
        object-fit: cover !important;
    }
    .cat-card-body {
        padding: 10px 5px !important;
        background: #ffffff !important;
    }
    .cat-card-title {
        font-size: 12.5px !important;
        font-weight: 700 !important;
        color: #111111 !important;
    }
    .cat-card-title a {
        color: #111111 !important;
    }
    
    /* Product Grid layout matching reference site */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-card-image {
        height: 220px !important;
        max-height: 220px !important;
    }
    .product-card-image img {
        height: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }
    /* Customer Reviews Mobile Fix */
    .review-slide-item {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        padding: 0 10px !important;
    }
    .reviews-carousel-track-container {
        margin: 0 15px !important;
        width: calc(100% - 30px) !important;
    }
    .reviews-nav-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
    }
    .reviews-nav-btn.prev {
        left: -5px !important;
    }
    .reviews-nav-btn.next {
        right: -5px !important;
    }
    .review-card-title {
        font-size: 14px !important;
        line-height: 1.3 !important;
    }
    .review-card-text {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
    }

    /* Footer Mobile Form Fix */
    footer {
        padding: 35px 0 25px !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .footer-col {
        width: 100% !important;
    }
    .footer-newsletter-form {
        max-width: 100% !important;
        width: 100% !important;
    }
    .footer-newsletter-form input[type="email"] {
        font-size: 11px !important;
        padding: 10px 10px !important;
        min-width: 0 !important;
        width: 65% !important;
    }
    .footer-newsletter-form button {
        font-size: 11px !important;
        padding: 10px 10px !important;
        width: 35% !important;
    }
    .footer-bottom-bar {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 15px !important;
        margin-top: 30px !important;
        padding-top: 20px !important;
    }
    .payment-methods-grid {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    .payment-badges-img {
        max-height: 34px !important;
        height: auto !important;
        width: auto !important;
        max-width: 100% !important;
    }
}

/* --- PRODUCT CARD STYLES & NO RED COLORS --- */
.product-card-image-wrapper {
    background-color: #f6f6f6 !important;
}

.product-card:hover .primary-img {
    transform: scale(1.05);
}

.product-card:hover .secondary-img {
    opacity: 1 !important;
    transform: scale(1.05);
}

.product-card-link:hover .product-title {
    color: #111111 !important;
}

/* --- QUICK VIEW BUTTON OVERLAY --- */
.quick-view-btn-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
    padding: 11px 0;
    z-index: 5;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.product-card:hover .quick-view-btn-overlay {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn-overlay:hover {
    background: #222222 !important;
    color: #ffffff !important;
}

/* --- ENSURE ALL PRODUCT CARD PRICES & SALE BADGES ARE STRICTLY BLACK --- */
.product-card .product-price,
.product-card .product-price ins,
.product-card .product-price ins .amount,
.product-card .product-price .amount,
.product-price,
.product-price ins,
.product-price ins .amount,
.product-price .amount {
    color: #111111 !important;
}

.product-card .product-price del,
.product-card .product-price del .amount,
.product-price del,
.product-price del .amount {
    color: #888888 !important;
}

.sale-badge {
    background-color: #000000 !important;
    color: #ffffff !important;
}

/* --- COMPACT PRODUCT CARD FIX (ELIMINATE EXTRA BOTTOM WHITESPACE) --- */
.product-card {
    height: auto !important;
    align-self: start !important;
}

.product-card-details {
    padding-top: 8px !important;
    padding-bottom: 4px !important;
}

.product-price {
    margin-bottom: 2px !important;
    padding-bottom: 0 !important;
}

/* ==========================================================================
   PRODUCT ADDONS (WCPA) LAYOUT MATCHING MRLEATHERSHOP REFERENCE SITE
   ========================================================================== */

/* Outer form layout */
.wcpa_form_outer,
.wcpa_form,
.wcpa-form,
.mrleather-addon-container,
.product-form-container form.cart {
    background: #ffffff !important;
    padding: 0 !important;
    margin-bottom: 12px !important;
    border: none !important;
    display: flex !important;
    flex-direction: column !important;
}

/* Field Section Blocks */
.mrleather-field-block,
.wcpa_field_wrap {
    margin-bottom: 6px !important; /* Reduced vertical spacing */
}

/* Force WCPA grid/row field wraps to sit side-by-side in horizontal rows */
@media (min-width: 768px) {
    .wcpa_form .wcpa_row .wcpa_field_wrap,
    .wcpa_form .wcpa_grid .wcpa_field_wrap,
    .wcpa_form .wcpa_fields_row .wcpa_field_wrap,
    .wcpa_form_outer .wcpa_row .wcpa_field_wrap,
    .mrleather-measurements-grid .wcpa_field_wrap {
        flex: 0 0 calc(33.333% - 8px) !important;
        max-width: calc(33.333% - 8px) !important;
        width: calc(33.333% - 8px) !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 767px) {
    .wcpa_form .wcpa_row .wcpa_field_wrap,
    .wcpa_form .wcpa_grid .wcpa_field_wrap,
    .wcpa_form .wcpa_fields_row .wcpa_field_wrap,
    .wcpa_form_outer .wcpa_row .wcpa_field_wrap,
    .mrleather-measurements-grid .wcpa_field_wrap {
        flex: 0 0 calc(50% - 6px) !important;
        max-width: calc(50% - 6px) !important;
        width: calc(50% - 6px) !important;
        box-sizing: border-box !important;
    }
}

/* Force Color Swatch Section to TOP of Options Form */
.wcpa_form .wcpa_type_color,
.wcpa_form .wcpa_color,
.wcpa_form .wcpa_image_swatch,
.wcpa_form .wcpa_swatch_wrapper {
    order: -10 !important;
    width: 100% !important;
}

/* Ensure Collar field sits after measurements grid, not inside it */
.wcpa_form .wcpa_field_wrap[data-name*="collar"],
.wcpa_form .wcpa_field_wrap[data-name*="Collar"],
div[class*="wcpa_field"][data-name*="collar"] {
    order: 15 !important;
}

/* Hide Collar field on pants/trousers products */
/* body.single-product.tax-product_cat-leather-pants .wcpa_field_wrap[data-name*="collar"],
body.single-product.tax-product_cat-leather-pants .wcpa_field_wrap[data-name*="Collar"],
body.single-product.tax-product_cat-leather-pants div[class*="wcpa_field"][data-name*="collar"],
body.single-product.tax-product_cat-pants .wcpa_field_wrap[data-name*="collar"],
body.single-product.tax-product_cat-pants .wcpa_field_wrap[data-name*="Collar"],
body.single-product.tax-product_cat-pants div[class*="wcpa_field"][data-name*="collar"] {
    display: none !important;
} */

/* Field Section Titles & Labels */
.wcpa_form .wcpa_label,
.wcpa_form label,
.wcpa_field_label,
.wcpa_label_text,
.mrleather-addon-container label,
.product-form-container label {
    font-size: 11.5px !important; /* Slightly more compact labels */
    font-weight: 700 !important;
    color: #111111 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 2px !important; /* Reduced from 4px */
    margin-top: 2px !important; /* Reduced from 4px */
    display: block !important;
}

/* Color Swatches Grid (SELECT MAIN COLOR) - HORIZONTAL ROW GRID */
.wcpa_form .wcpa_type_color,
.wcpa_form .wcpa_color,
.wcpa_form .wcpa_image_swatch,
.wcpa_swatch_wrapper,
.mrleather-color-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
}

.wcpa_form .wcpa_color_box,
.wcpa_form .wcpa_swatch_item,
.wcpa_form .wcpa_color_item,
.wcpa_form .wcpa_swatch_box,
.mrleather-color-swatch {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    min-height: 30px !important;
    flex: 0 0 30px !important;
    border-radius: 4px !important;
    border: 1px solid #d0d0d0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    box-shadow: none !important;
    display: inline-block !important;
}

.wcpa_form .wcpa_color_box:hover,
.wcpa_form .wcpa_swatch_item:hover,
.mrleather-color-swatch:hover {
    transform: scale(1.06) !important;
    border-color: #111111 !important;
}

.wcpa_form .wcpa_color_box.wcpa_selected,
.wcpa_form .wcpa_swatch_item.active,
.wcpa_form .wcpa_color_item.active,
.wcpa_form .wcpa_swatch_item input:checked + label,
.mrleather-color-swatch.active {
    border: 2px solid #000000 !important;
    transform: scale(1.08) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25) !important;
}

/* FIX RADIO BUTTON SIZES & COMPACT PADDING */
.wcpa_form_outer .wcpa_type_radio,
.wcpa_form_outer .wcpa_radio_group,
.wcpa_form_outer .wcpa_radio_items,
.wcpa_form_outer .wcpa_field_radio,
.wcpa_form_outer .wcpa_options_group,
.wcpa_form .wcpa_type_radio,
.wcpa_form .wcpa_radio_group,
.wcpa_form .wcpa_radio_items,
.wcpa_form .wcpa_field_radio,
.wcpa_form .wcpa_options_group,
.wcpa_options_wrap,
.wcpa_radio_group {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: 2px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
}

.wcpa_options_wrap > div,
.wcpa_radio,
.wcpa_radio_item,
.wcpa_field_radio > div,
div[class*="wcpa_radio"] {
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.wcpa_form_outer .wcpa_radio_item,
.wcpa_form_outer .wcpa_radio_label,
.wcpa_form_outer .wcpa_field_radio label,
.wcpa_form .wcpa_radio_item,
.wcpa_form .wcpa_radio_label,
.wcpa_form .wcpa_field_radio label,
.wcpa_form .wcpa_radio_group label,
.wcpa_form .wcpa_options_group label,
.wcpa_form div[class*="wcpa_radio"] label,
.wcpa_options_wrap label,
.wcpa_radio label {
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    background: #ffffff !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 18px !important;
    padding: 5px 14px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #222222 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    margin: 0 !important;
}

.wcpa_form_outer .wcpa_radio_item:hover,
.wcpa_form_outer .wcpa_field_radio label:hover,
.wcpa_form .wcpa_radio_item:hover,
.wcpa_form .wcpa_field_radio label:hover,
.wcpa_options_wrap label:hover,
.wcpa_radio label:hover {
    border-color: #000000 !important;
    background: #f7f7f7 !important;
    color: #000000 !important;
}
.wcpa_form_outer .wcpa_radio_item.wcpa_selected,
.wcpa_form_outer .wcpa_radio_item input:checked + label,
.wcpa_form_outer .wcpa_field_radio input:checked + label,
.wcpa_form .wcpa_radio_item.wcpa_selected,
.wcpa_form .wcpa_radio_item input:checked + label,
.wcpa_form .wcpa_field_radio input:checked + label,
.wcpa_form div[class*="wcpa_radio"] input:checked + label,
.wcpa_options_wrap input:checked + label,
.wcpa_radio input:checked + label,
.wcpa_radio.wcpa_selected > label,
.wcpa_form .wcpa_color_box.wcpa_selected,
.wcpa_form .wcpa_swatch_item.active,
.wcpa_form .wcpa_color_item.active,
.wcpa_form .wcpa_swatch_item.wcpa_selected,
.wcpa_form .wcpa_swatch_item input:checked + label,
.wcpa_form .wcpa_color_box.wcpa_selected > label,
.wcpa_form .wcpa_swatch_item.active > label,
.wcpa_form .wcpa_color_item.active > label,
.wcpa_form .wcpa_color_option.selected,
.wcpa_form .wcpa_color_option.selected > label,
.wcpa_form .wcpa_swatch_item.wcpa_selected > label,
label:has(input:checked),
div[class*="wcpa_radio"] .wcpa_radio:has(input:checked) > label,
div[class*="wcpa_radio"] .wcpa_radio_item:has(input:checked) > label,
.wcpa_radio_item:has(input:checked) > label {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

/* Isolated Pixel-Perfect Toggle Pills for Mr Leather Customizer */
.mrleather-toggle-pill {
    width: auto !important;
    max-width: max-content !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    background: #ffffff !important;
    color: #222222 !important;
    border: 1px solid #d0d0d0 !important;
    border-radius: 18px !important;
    padding: 5px 14px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    user-select: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    white-space: nowrap !important;
}

.mrleather-toggle-pill:hover {
    border-color: #000000 !important;
    background: #f7f7f7 !important;
    color: #000000 !important;
}

.mrleather-toggle-pill.active {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.mrleather-toggle-pill span,
.mrleather-toggle-pill input[type="radio"] {
    display: none !important;
}

/* Select Measurement Dropdowns 2-Column Grid (Waist, Hip Size, Thigh Size, Knee, Chest, Shoulder) */
.wcpa_form .wcpa_grid,
.wcpa_form .wcpa_fields_row,
.wcpa_form .wcpa_row,
.mrleather-measurements-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px 12px !important;
    margin-bottom: 10px !important;
}

.wcpa_form select,
.wcpa_form .wcpa_type_select select,
.product-summary-col select,
.mrleather-measurements-grid select,
.cart select {
    width: 100% !important;
    max-width: 100% !important;
    height: 33px !important; /* Compact height */
    border: 1px solid #d0d0d0 !important;
    border-radius: 5px !important;
    padding: 4px 10px !important; /* Compact padding */
    font-size: 12.5px !important; /* Compact font */
    font-weight: 500 !important;
    color: #111111 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
    line-height: 1.3 !important;
    box-sizing: border-box !important;
    appearance: auto !important;
    -webkit-appearance: auto !important;
}

.wcpa_form select:focus,
.product-summary-col select:focus {
    border-color: #000000 !important;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1) !important;
}

.wcpa_form select option,
.product-summary-col select option {
    font-size: 13px !important;
    padding: 6px 10px !important;
    background: #ffffff !important;
    color: #111111 !important;
}

/* Single Product Add to Cart Button */
.product-summary-col .single_add_to_cart_button,
.product-summary-col button[type="submit"].cart_button {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 15px 30px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: background 0.2s ease !important;
    margin-top: 15px !important;
}

.product-summary-col .single_add_to_cart_button:hover {
    background: #222222 !important;
    color: #ffffff !important;
}








/* ==========================================================================
   HIDE COLLECTION NUMBER BADGES (01, 02, 03, 04 COLLECTION) ON MOBILE & TABLET
   ========================================================================== */
@media (max-width: 900px) {
    .cat-code-badge {
        display: none !important;
    }
}


/* ==========================================================================
   PRODUCT CARD IMAGE WRAPPER - ELIMINATE EMPTY WHITE GAP (RESPONSIVE FIT)
   ========================================================================== */
.product-card-image-wrapper {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1.12 !important;
    overflow: hidden !important;
    background: #f6f6f6 !important;
    border-radius: 4px !important;
}

.product-card-image-wrapper img.primary-img,
.product-card-image-wrapper img.secondary-img,
.product-card-image-wrapper img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

.product-card-image-wrapper img.secondary-img {
    opacity: 0 !important;
}

.product-card:hover .secondary-img {
    opacity: 1 !important;
}

@media (max-width: 600px) {
    .product-card-image-wrapper {
        aspect-ratio: 1 / 1.05 !important;
    }
}


/* HERO BANNER MOBILE FIX (LIVE SITE HTTPS URLS & PROPER MOBILE HEIGHT) */
.hero-bg.slide-1 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner.jpg') !important;
}
.hero-bg.slide-2 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner.png') !important;
}
.hero-bg.slide-3 {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner-3.jpg') !important;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 380px !important;
        height: 60vh !important;
        max-height: 480px !important;
        padding-bottom: 25px !important;
    }
}


/* ==========================================================================
   MOBILE HERO BANNER 100% FIT (NO CROPPING - COMPLETE IMAGE VISIBLE)
   ========================================================================== */
@media (max-width: 768px) {
    .hero-banner {
        min-height: unset !important;
        height: auto !important;
        aspect-ratio: 1.35 / 1 !important;
        padding: 12px 10px 16px 10px !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }

    .hero-bg {
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    .hero-content h1 {
        font-size: clamp(14px, 4.5vw, 19px) !important;
        margin-bottom: 4px !important;
        letter-spacing: 0.8px !important;
        line-height: 1.2 !important;
    }

    .hero-content p {
        font-size: clamp(9px, 2.6vw, 11px) !important;
        padding: 3px 10px !important;
        margin-bottom: 8px !important;
        letter-spacing: 0.4px !important;
        line-height: 1.2 !important;
    }

    .hero-buttons {
        gap: 5px !important;
    }

    .btn-outline {
        padding: 5px 10px !important;
        font-size: 10px !important;
        letter-spacing: 0.3px !important;
    }
}


/* ==========================================================================
   ULTRA-LUXURY WOW EFFECT FOR MOBILE HERO SECTION (HOMEPAGE ONLY)
   ========================================================================== */
@media (max-width: 768px) {
    /* Hero Banner Container Frame */
    .hero-banner {
        position: relative !important;
        min-height: unset !important;
        height: auto !important;
        aspect-ratio: 1.35 / 1 !important;
        padding: 14px 12px 18px 12px !important;
        justify-content: flex-end !important;
        align-items: center !important;
        overflow: hidden !important;
        background-color: #050505 !important;
        border-bottom: 2px solid #d4af37 !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.95), inset 0 0 40px rgba(0, 0, 0, 0.7) !important;
    }

    /* Living Breathing Animation on Mobile Banner Images */
    .hero-bg {
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        will-change: transform, filter !important;
    }

    .hero-bg.slide-1 {
        animation: mobileHeroBreath1 24s infinite ease-in-out !important;
    }
    .hero-bg.slide-2 {
        animation: mobileHeroBreath2 24s infinite ease-in-out !important;
    }
    .hero-bg.slide-3 {
        animation: mobileHeroBreath3 24s infinite ease-in-out !important;
    }

    @keyframes mobileHeroBreath1 {
        0% { opacity: 1; transform: scale(1.0) translateY(0); filter: brightness(1.02) contrast(1.05); }
        15% { opacity: 1; transform: scale(1.05) translateY(-4px); filter: brightness(1.12) contrast(1.1); }
        28% { opacity: 1; transform: scale(1.02) translateY(-2px); filter: brightness(1.05) contrast(1.08); }
        33.3%, 95% { opacity: 0; transform: scale(1.0); }
        100% { opacity: 1; transform: scale(1.0); }
    }

    @keyframes mobileHeroBreath2 {
        0%, 28% { opacity: 0; transform: scale(1.0); }
        33.3% { opacity: 1; transform: scale(1.0) translateY(0); filter: brightness(1.02) contrast(1.05); }
        48% { opacity: 1; transform: scale(1.05) translateY(-4px); filter: brightness(1.12) contrast(1.1); }
        61.3% { opacity: 1; transform: scale(1.02) translateY(-2px); filter: brightness(1.05) contrast(1.08); }
        66.6%, 100% { opacity: 0; transform: scale(1.0); }
    }

    @keyframes mobileHeroBreath3 {
        0%, 61.3% { opacity: 0; transform: scale(1.0); }
        66.6% { opacity: 1; transform: scale(1.0) translateY(0); filter: brightness(1.02) contrast(1.05); }
        80% { opacity: 1; transform: scale(1.05) translateY(-4px); filter: brightness(1.12) contrast(1.1); }
        95% { opacity: 1; transform: scale(1.02) translateY(-2px); filter: brightness(1.05) contrast(1.08); }
        100% { opacity: 0; transform: scale(1.0); }
    }

    /* Shimmer Light Reflection Sweep Across Mobile Banner */
    .hero-banner::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -150%;
        width: 60%;
        height: 200%;
        background: linear-gradient(115deg, transparent 0%, rgba(212, 175, 55, 0.22) 45%, rgba(255, 255, 255, 0.35) 50%, rgba(212, 175, 55, 0.22) 55%, transparent 100%);
        transform: rotate(25deg);
        z-index: 2;
        pointer-events: none;
        animation: mobileHeroLightShimmer 7s infinite ease-in-out;
    }

    @keyframes mobileHeroLightShimmer {
        0% { left: -150%; }
        25% { left: 180%; }
        100% { left: 180%; }
    }

    /* Mobile Hero Headings & Glassmorphism Badge */
    .hero-content h1 {
        font-size: clamp(14px, 4.5vw, 19px) !important;
        margin-bottom: 5px !important;
        letter-spacing: 1px !important;
        line-height: 1.25 !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 0 15px rgba(212, 175, 55, 0.5) !important;
    }

    .hero-content p {
        font-size: clamp(9px, 2.6vw, 11px) !important;
        padding: 4px 14px !important;
        margin-bottom: 10px !important;
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
        background: rgba(10, 10, 10, 0.75) !important;
        border: 1px solid rgba(212, 175, 55, 0.5) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6), 0 0 12px rgba(212, 175, 55, 0.3) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
    }

    /* Mobile Buttons Luxury Shimmer & Glow */
    .hero-buttons {
        gap: 6px !important;
    }

    .btn-outline {
        padding: 6px 12px !important;
        font-size: 10px !important;
        letter-spacing: 0.4px !important;
        border: 1px solid #d4af37 !important;
        background: rgba(15, 15, 15, 0.85) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 8px rgba(212, 175, 55, 0.25) !important;
        position: relative !important;
        overflow: hidden !important;
        backdrop-filter: blur(6px) !important;
    }

    .btn-outline::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        animation: mobileBtnShimmer 4s infinite linear;
    }

    @keyframes mobileBtnShimmer {
        0% { left: -100%; }
        30% { left: 100%; }
        100% { left: 100%; }
    }
}


/* ==========================================================================
   HERO CONTENT 100% CENTERING & RESPONSIVE ALIGNMENT FIX (ALL LAPTOPS & SCREENS)
   ========================================================================== */
.hero-content {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.hero-content h1,
.scramble-text-heading {
    font-size: clamp(20px, 3.8vw, 42px) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    margin: 0 auto 14px auto !important;
    color: #ffffff !important;
    letter-spacing: 1.5px !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 255, 255, 0.4) !important;
    position: relative !important;
    display: block !important;
    text-align: center !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
}

.hero-content p,
.scramble-text-sub {
    color: #ffffff !important;
    font-size: clamp(10px, 1.15vw, 15px) !important;
    font-weight: 600 !important;
    letter-spacing: 0.8px !important;
    margin: 0 auto 22px auto !important;
    display: inline-block !important;
    padding: 8px 22px !important;
    background: rgba(0, 0, 0, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    border-radius: 30px !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2) !important;
    text-transform: uppercase !important;
    text-align: center !important;
    max-width: 94% !important;
    white-space: normal !important;
    word-break: break-word !important;
    box-sizing: border-box !important;
}

.hero-buttons {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    margin: 0 auto !important;
    width: 100% !important;
}






/* ==========================================================================
   DESKTOP / LAPTOP / TABLET HERO BANNER - TALLER HEIGHT TO SHOW MORE BOTTOM
   ========================================================================== */
@media (min-width: 769px) {
    .hero-banner {
        position: relative !important;
        width: 100% !important;
        height: 84vh !important;
        min-height: 760px !important;
        max-height: 900px !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important; /* Centered vertically from all 4 sides */
        align-items: center !important;
        text-align: center !important;
        padding: 40px 15px !important; /* Balanced padding */
        box-sizing: border-box !important;
        background-color: #000000 !important;
    }

    .hero-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
        background-size: cover !important;
        background-position: center top !important;
        background-repeat: no-repeat !important;
        opacity: 0;
    }

    .hero-bg.slide-1 {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner.jpg') !important;
    }
    .hero-bg.slide-2 {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner.png') !important;
    }
    .hero-bg.slide-3 {
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.65) 100%), url('/wp-content/uploads/hero-banner-3.jpg') !important;
    }
}


/* ==========================================================================
   PRODUCT CARD - PRICE & BUTTON ALIGNMENT FIX (ALL DEVICES RESPONSIVE)
   Ensures price and button stay perfectly level across all product cards
   regardless of title length (desktop, laptop, tablet, mobile)
   ========================================================================== */

/* Product card flex layout - push price+button to always stay at bottom */
.product-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.product-card-link {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    text-decoration: none !important;
    color: inherit !important;
}

.product-card-details {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
    padding: 10px 8px 8px 8px !important;
    text-align: center !important;
}

/* Title takes up flexible space - pushes price+button down equally */
.product-title {
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 44px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #111111 !important;
    margin: 0 0 4px 0 !important;
    line-height: 1.35 !important;
    text-align: center !important;
}

/* Rating always stays on same line */
.product-rating {
    flex-shrink: 0 !important;
    font-size: 12px !important;
    margin-bottom: 5px !important;
    text-align: center !important;
    color: #f5a623 !important;
    letter-spacing: 2px !important;
}

/* Price stays at bottom, same level across ALL cards */
.product-price {
    flex-shrink: 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    text-align: center !important;
    margin-bottom: 8px !important;
    margin-top: 0 !important;
    min-height: 26px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* View & Customize button - fixed at bottom of all cards equally */
.btn-add-cart {
    flex-shrink: 0 !important;
    display: block !important;
    width: 100% !important;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 9px 12px !important;
    font-weight: 700 !important;
    font-size: clamp(9px, 1.1vw, 12px) !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    text-align: center !important;
    letter-spacing: 0.5px !important;
    box-sizing: border-box !important;
    transition: background 0.2s ease !important;
    margin-top: auto !important;
}

.btn-add-cart:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .product-title {
        font-size: 13px !important;
        min-height: 40px !important;
    }
    .product-price {
        font-size: 13px !important;
    }
    .btn-add-cart {
        font-size: 10px !important;
        padding: 8px 8px !important;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 12px !important;
        min-height: 36px !important;
    }
    .product-rating {
        font-size: 10px !important;
    }
    .product-price {
        font-size: 12px !important;
        margin-bottom: 6px !important;
    }
    .btn-add-cart {
        font-size: 9px !important;
        padding: 7px 6px !important;
    }
}

/* ==========================================================================
   WOOCOMMERCE PRODUCT TABS & REVIEWS STYLES
   ========================================================================== */
.woocommerce-tabs ul.tabs {
    display: flex !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 25px 0 !important;
    border-bottom: 2px solid #e5e5e5 !important;
    flex-wrap: wrap !important;
}

.woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

.woocommerce-tabs ul.tabs li a {
    display: block !important;
    padding: 12px 22px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    color: #666666 !important;
    text-decoration: none !important;
    border-bottom: 3px solid transparent !important;
    margin-bottom: -2px !important;
    transition: all 0.2s ease !important;
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: #000000 !important;
    border-bottom-color: #000000 !important;
}

.woocommerce-tabs .woocommerce-Tabs-panel {
    color: #333333 !important;
    font-size: 14.5px !important;
    line-height: 1.7 !important;
}

/* Reviews List & Form */
#reviews #comments h2 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #111111 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
}

.commentlist {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px 0 !important;
}

.commentlist li.comment {
    border-bottom: 1px solid #eeeeee !important;
    padding: 15px 0 !important;
    margin-bottom: 15px !important;
}

.commentlist li.comment .star-rating {
    float: right !important;
    color: #ffb400 !important;
}

.commentlist li.comment .meta {
    font-size: 13px !important;
    color: #777777 !important;
    margin-bottom: 8px !important;
}

.commentlist li.comment .meta strong {
    color: #111111 !important;
    font-weight: 700 !important;
}

/* Review Form Styling */
#review_form #respond {
    background: #fafafa !important;
    border: 1px solid #e5e5e5 !important;
    border-radius: 8px !important;
    padding: 25px !important;
    margin-top: 20px !important;
}

#review_form #respond .comment-reply-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    margin: 0 0 15px 0 !important;
    display: block !important;
}

#review_form #respond .comment-form-rating {
    margin-bottom: 15px !important;
}

#review_form #respond .comment-form-rating label {
    font-weight: 700 !important;
    font-size: 13px !important;
    color: #111111 !important;
    display: block !important;
    margin-bottom: 6px !important;
}

#review_form #respond .stars a {
    color: #ffb400 !important;
    font-size: 18px !important;
    margin-right: 5px !important;
}

#review_form #respond p.comment-form-comment label,
#review_form #respond p.comment-form-author label,
#review_form #respond p.comment-form-email label {
    display: block !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: #333333 !important;
    margin-bottom: 5px !important;
    text-transform: uppercase !important;
}

#review_form #respond textarea,
#review_form #respond input[type="text"],
#review_form #respond input[type="email"] {
    width: 100% !important;
    padding: 10px 14px !important;
    border: 1px solid #cccccc !important;
    border-radius: 6px !important;
    font-family: inherit !important;
    font-size: 13.5px !important;
    background: #ffffff !important;
    color: #111111 !important;
    box-sizing: border-box !important;
}

#review_form #respond textarea:focus,
#review_form #respond input[type="text"]:focus,
#review_form #respond input[type="email"]:focus {
    border-color: #000000 !important;
    outline: none !important;
}

#review_form #respond input#submit {
    background: #000000 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 12px 28px !important;
    font-size: 13.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    margin-top: 10px !important;
}

#review_form #respond input#submit:hover {
    background: #333333 !important;
}

