/* ===== VIGCOM Enzy-Inspired Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
    --primary: #1b2dd6; /* Premium Royal Blue */
    --primary-dark: #121ea3;
    --primary-light: rgba(27, 45, 214, 0.08);
    --gold: #c9a227; /* Sophisticated Brand Gold */
    --gold-light: #e6c86a;
    --dark: #0c0a09; /* Deep Noir */
    --text: #1c1917;
    --text-light: #57534e;
    --bg: #fafafa;
    --bg-light: #f5f5f4;
    --border: #e7e5e4;
    --font-body: 'Jost', 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --container: 1280px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-blur: blur(12px);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.gold-text { color: var(--primary); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ===== PAGE HEADER ===== */
.page-header {
    margin-top: 70px; padding: 60px 0; text-align: center;
    background: var(--dark); color: #fff;
}
.page-header h1 { font-size: 36px; color: #fff; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 15px; }

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

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

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

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
    letter-spacing: -0.01em;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 70px 0;
}

/* ===== GLASS + 3D UTILITIES ===== */
.section-shell {
    position: relative;
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(250,250,250,0.98) 0%, rgba(245,245,244,0.92) 100%);
    overflow: hidden;
}
.section-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(27,45,214,0.08), transparent 55%),
                radial-gradient(circle at top right, rgba(201,162,39,0.08), transparent 60%);
    opacity: 0.8;
    pointer-events: none;
}
.section-shell--alt {
    background: linear-gradient(180deg, rgba(12,10,9,0.92) 0%, rgba(12,10,9,0.98) 100%);
    color: #f8fafc;
}
.section-shell--alt h1,
.section-shell--alt h2,
.section-shell--alt h3,
.section-shell--alt p {
    color: inherit;
}
/* Override: cards with light backgrounds inside --alt must use dark text */
.section-shell--alt .journey-card h3,
.section-shell--alt .journey-card p,
.section-shell--alt .testimonial-card .testimonial-text,
.section-shell--alt .testimonial-card .testimonial-name,
.section-shell--alt .testimonial-card .testimonial-meta,
.section-shell--alt .testimonial-card .testimonial-quote {
    color: revert;
}
.section-shell--alt .journey-card h3 { color: #1a202c; }
.section-shell--alt .journey-card p { color: #5a627f; }
.section-shell--alt .testimonial-card .testimonial-text { color: #4a5568; }
.section-shell--alt .testimonial-card .testimonial-name { color: #1a202c; }
.section-shell--alt .testimonial-card .testimonial-meta { color: #718096; }
.section-shell--alt .testimonial-card .testimonial-quote { color: var(--primary); }
.section-shell .container {
    position: relative;
    z-index: 1;
}

.glass-panel,
.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    border-radius: 18px;
}
.glass-panel {
    padding: 28px;
}
.glass-card {
    padding: 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(27, 45, 214, 0.35);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
}

.card-3d {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-3d:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
}

.glass-inline {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    letter-spacing: -0.02em;
    text-transform: none;
    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1.5px solid var(--dark);
    background: transparent;
    color: var(--dark);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

.btn:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 15px;
}

.header-left, .header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-left {
    justify-content: flex-start;
}

.header-right {
    justify-content: flex-end;
    gap: 20px;
}

.header-center {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 0 30px;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.scrolled .header-logo img {
    height: 42px;
}

.header-logo a {
    display: flex;
    align-items: center;
}

.header-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: 2px;
}

.header-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.header-nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark);
    padding: 5px 0;
    position: relative;
    transition: var(--transition);
}

.header-nav a:hover {
    color: var(--primary);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav a.active::after {
    width: 100%;
}

/* Mega Menu */
.mega-menu-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.mega-toggle {
    padding-bottom: 25px;
}

/* Hover gap */
.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 900px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    border-top: 2px solid var(--gold);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 40px 0;
}

.mega-menu-wrapper:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: 100%;
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
}

.mega-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--dark);
    font-family: var(--font-body);
}

.mega-col h4 a:hover {
    color: var(--primary);
}

.mega-col ul li {
    margin-bottom: 12px;
}

.mega-col ul li a {
    font-size: 13px;
    color: var(--text-light);
    text-transform: none;
    letter-spacing: 0;
    transition: var(--transition);
    display: inline-block;
}

/* Improve mega menu text contrast */
.mega-menu .mega-col h4,
.mega-menu .mega-col h4 a {
    color: #111827;
}

.mega-menu .mega-col ul li a {
    color: #374151;
    font-weight: 500;
}

.mega-menu .mega-col ul li a:hover {
    color: var(--primary);
}


.mega-col ul li a::after {
    display: none;
}

.mega-col ul li a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Mega Menu Banner */
.mega-banner {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    height: 250px;
    background: var(--bg-light);
}

.mega-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.mega-banner:hover img {
    transform: scale(1.05);
}

.mega-banner-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    text-align: center;
}

.mega-banner-txt h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.mega-banner-txt a {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 3px;
}

.mega-banner-txt a::after {
    display: none;
}

.mega-banner-txt a:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    color: var(--dark);
    font-size: 18px;
    position: relative;
}

.header-search-btn {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 18px;
    color: var(--dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/* ===== HERO VIDEO BANNER (101eyewear style) ===== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

/* YouTube iframe background */
.hero-yt-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-yt-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 aspect */
    height: 100%;
    min-width: 100%;
    min-height: 56.25vw; /* 16:9 aspect */
    transform: translate(-50%, -50%);
    border: none;
    pointer-events: none;
}

/* Dark cinematic overlay */
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    animation: heroFadeIn 1.2s ease both 0.3s;
}

.hero-content .subtitle {
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s 0.3s forwards;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 8vw, 80px);
    color: var(--gold);
    line-height: 1.05;
    margin-bottom: 35px;
    font-style: italic;
    letter-spacing: 0.03em;
    text-shadow:
        0 2px 30px rgba(201, 162, 39, 0.3),
        0 0 60px rgba(201, 162, 39, 0.1);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s 0.5s forwards;
}

.hero-content .btn {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 12px;
    letter-spacing: 2.5px;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s 0.7s forwards;
    transition: all 0.35s ease;
}

.hero-content .btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: #fff;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}

.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

/* Header transparent on hero */
.site-header.hero-transparent {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

.site-header.hero-transparent .header-nav > a,
.site-header.hero-transparent .header-nav .mega-menu-wrapper > a,
.site-header.hero-transparent .header-logo .logo-text,
.site-header.hero-transparent .header-actions a,
.site-header.hero-transparent .mobile-toggle {
    color: #fff;
}

.site-header.hero-transparent .header-nav a::after {
    background: var(--gold);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
}

/* ===== BRAND LOGOS ===== */
.brand-logos {
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: #fff;
    position: relative;
    display: flex;
}

.brand-logos .marquee-wrapper {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 60px;
    width: 100%;
}

.brand-logos .marquee-wrapper:hover .logos-track {
    animation-play-state: paused;
}

.brand-logos .logos-track {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: 60px;
    animation: marquee 30s linear infinite;
    align-items: center;
}

.brand-logos img {
    height: 40px;
    width: auto;
    opacity: 0.5;
    transition: var(--transition);
    filter: grayscale(100%);
    object-fit: contain;
}

.brand-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-100% - 60px)); }
}

/* ===== CATEGORY GRID (Enzy Style) ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.category-item a {
    display: block;
}

.category-image {
    background: var(--bg-light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 60%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-info .category-name {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 5px;
    transition: var(--transition);
}

.category-item:hover .category-info .category-name {
    color: var(--primary);
}

.category-info .count {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== BENTO CATEGORY GRID (6-block exactly) ===== */
.category-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-bento-item {
    position: relative;
    aspect-ratio: 1;
    background: #f8f8f8;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-bento-title {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.category-bento-title span {
    font-size: 14px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.category-bento-title h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.category-bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.category-bento-item:hover img {
    transform: scale(1.05);
}

.category-bento-name {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    text-align: center;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 0;
    opacity: 1;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
}

.category-bento-item:hover .category-bento-name {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.category-bento-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    cursor: pointer;
}

.category-bento-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .category-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .category-grid-6 {
        grid-template-columns: 1fr;
    }
}

/* ===== PRODUCT GRID ===== */
.product-tabs {
    display: flex;
    align-items: center;
    gap: 30px;
}

.product-tabs button {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.product-tabs button.active,
.product-tabs button:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* Enzy Top Sellers Grid Layout */
.top-sellers-container {
    border: 1px solid var(--border);
    background: #fff;
}

.top-sellers-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 0;
}


.top-sellers-grid .spotlight-wrapper img {
    aspect-ratio: auto;
    width: 100%;
    object-fit: contain;
}

/* ===== TOP SELLERS CATEGORY TABS ===== */
.ts-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 28px;
}

.ts-cat-tabs {
    display: flex;
    gap: 12px;
}

.ts-cat-tab {
    background: #fff;
    border: 2px solid var(--border);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    padding: 10px 24px;
    transition: var(--transition);
}

.ts-cat-tab.active,
.ts-cat-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.spotlight-wrapper {
    border-right: 1px solid var(--border);
    padding: 40px;
}

.products-2x2 {
    display: flex;
    flex-direction: column;
}

.products-2x2 .product-item {
    flex: 1;
    border-bottom: 1px solid var(--border);
    padding: 30px;
}

.products-2x2 .product-item:last-child {
    border-bottom: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    background: #fff;
}

.product-grid .product-card {
    border-right: 1px solid var(--border);
    padding: 20px;
}

.product-grid .product-card:last-child {
    border-right: none;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-light);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

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

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

.product-card-actions a {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--dark);
}

.product-card-actions a:hover {
    background: var(--primary);
    color: #fff;
}

.product-card .sale-badge {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--dark);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 0;
    letter-spacing: 1px;
    z-index: 2;
}

/* Custom Enzy Spotlight Badges */
.badge-custom {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--bg-light);
    color: var(--dark);
    padding: 8px 12px;
    text-align: center;
    border-radius: 0;
    z-index: 2;
}

.spotlight-wrapper .badge-custom {
    background: var(--gold);
    color: #fff;
    padding: 15px 20px;
}

.badge-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.product-item figure, .product-card-image {
    position: relative;
    overflow: hidden;
    background: transparent;
    margin-bottom: 20px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-info {
    padding: 15px 5px;
    text-align: center;
}

.product-card-info h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-card-info h3 a {
    color: var(--dark);
}

.product-card-info h3 a:hover {
    color: var(--primary);
}

.product-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 400;
    margin-right: 8px;
    font-size: 13px;
}

.product-card-add {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.product-card-add:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

/* ===== SPLIT BANNERS (50% OFF) ===== */
.split-banners-wrapper {
    margin: 60px 0;
}

.split-banners {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background: #fff;
    max-height: 400px;
    overflow: hidden;
}

.banner-half {
    position: relative;
    height: 100%;
}

.banner-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-half h3 {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 48px;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

.banner-text-center {
    padding: 0 60px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.banner-text-center .sub {
    font-size: 24px;
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-light);
    display: block;
}

.banner-text-center .main-percent {
    font-size: 120px;
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1;
    margin: -10px 0;
}

.banner-text-center .main-percent span {
    font-size: 40px;
    vertical-align: super;
}

.banner-text-center .desc {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
}

.banner-text-center .desc strong {
    color: var(--dark);
    font-weight: 900;
}

/* ===== SERVICE FEATURES ===== */
.service-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.service-feature {
    text-align: center;
    padding: 20px;
}

.service-feature .icon {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-feature h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.service-feature p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== SHOP PAGE (Enzy Style) ===== */
.page-header-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 112px 0;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12,10,9,0.72) 0%, rgba(15,23,42,0.62) 50%, rgba(27,45,214,0.34) 100%);
}

.page-header-banner .container {
    position: relative;
    z-index: 2;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.page-header-banner .breadcrumb {
    font-size: 14px;
    font-family: var(--font-body);
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.82);
    background: transparent;
    padding: 0;
    justify-content: center;
}

.page-header-banner .breadcrumb a,
.page-header-banner .breadcrumb span {
    color: rgba(255, 255, 255, 0.84);
}

.page-header-banner .breadcrumb a:hover {
    color: #fff;
}

.page-header-banner h1 {
    font-family: var(--font-heading);
    font-size: 60px;
    color: #fff;
    margin: 0;
    letter-spacing: 0.02em;
}

.shop-top-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ts-shop-filters {
    display: flex;
    gap: 30px;
}

.ts-shop-filters .block-control {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.ts-shop-filters .block-control:hover, 
.ts-shop-filters .block-control.active {
    color: var(--primary);
}

.ts-shop-filters .block-control::after {
    content: '+';
    margin-left: 8px;
    font-weight: 300;
    font-size: 16px;
}

.ts-product-order .orderby {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-product-order .orderby > li {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--border);
}

.ts-product-order .orderby > li:hover {
    color: var(--dark);
    border-bottom-color: var(--dark);
}

/* Shop Grid - Unbordered, left-aligned standard */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.shop-product-grid .product-card {
    border: none;
    padding: 0;
}

.shop-product-grid .product-card-image {
    background: transparent;
    border: 1px solid var(--border);
    margin-bottom: 20px;
}

.shop-product-grid .product-card-info {
    text-align: left;
    padding: 0;
}

.shop-product-grid .product-card .sale-badge {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    left: 15px;
}

/* Group Action Buttons */
.product-group-button {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.shop-product-grid .product-card:hover .product-group-button {
    opacity: 1;
    transform: translateY(0);
}

.product-group-button a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    color: var(--dark);
    transition: var(--transition);
}

.product-group-button a:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.breadcrumb-title-wrapper {
    background: #f7f7f7;
    padding: 20px 0;
    margin-bottom: 50px;
}

.breadcrumb-title-wrapper .breadcrumbs {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-title-wrapper .breadcrumbs a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb-title-wrapper .breadcrumbs a:hover {
    color: var(--dark);
}

.breadcrumb-title-wrapper .breadcrumbs .sep {
    margin: 0 10px;
}

.breadcrumb-title-wrapper .breadcrumbs .current {
    color: var(--dark);
}

.single-product-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
}

.single-product-wrapper .images-thumbnails {
    flex: 0 0 calc(58% - 20px);
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.images-thumbnails .thumbnails {
    width: 100px;
    flex-shrink: 0;
    position: relative;
}

.images-thumbnails .thumbnails-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}
.images-thumbnails .thumbnails-container::-webkit-scrollbar {
    display: none;
}

.images-thumbnails .product-thumbnails {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
}

.product-thumbnails .thumb-item {
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 30px) / 4);
    height: calc((100% - 30px) / 4);
}

.product-thumbnails .thumb-item a {
    display: block;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.product-thumbnails .thumb-item.active a,
.product-thumbnails .thumb-item a:hover {
    border-color: var(--dark);
}

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

.images-thumbnails .images {
    flex-grow: 1;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.images-thumbnails .images .main-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.images-thumbnails .images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease-out;
    cursor: crosshair;
}

@media (max-width: 767px) {
    .single-product-wrapper .images-thumbnails {
        flex-direction: column-reverse;
    }
    .images-thumbnails .thumbnails {
        width: 100%;
        height: auto;
    }
    .images-thumbnails .thumbnails-container {
        position: relative;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
    }
    .images-thumbnails .product-thumbnails {
        flex-direction: row;
        min-height: unset;
    }
    .product-thumbnails .thumb-item {
        flex: 0 0 calc((100% - 30px) / 4);
        height: auto;
        aspect-ratio: 1;
    }
}

.single-product-wrapper .summary {
    flex: 0 0 calc(42% - 20px);
}

.summary .product_title {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.summary .detail-meta-top {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary .sku-wrapper .sku {
    color: var(--dark);
    font-weight: 500;
}

.summary .product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.summary .product-price del {
    color: var(--text-light);
    font-weight: 400;
    margin-right: 15px;
    font-size: 20px;
}

.summary .short-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 30px;
}

.summary .short-description ul {
    padding-left: 18px;
}

.summary .short-description li {
    margin-bottom: 8px;
}

.cart-action-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
}

.cart-action-group .single_add_to_cart_button {
    background: var(--dark);
    color: #fff;
    border: 1px solid var(--dark);
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
    text-decoration: none;
}

.cart-action-group .single_add_to_cart_button:hover {
    background: transparent;
    color: var(--dark);
}

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

.quantity-control button {
    background: transparent;
    border: none;
    width: 40px;
    height: 100%;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-light);
}

.quantity-control input {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
    appearance: textfield;
    -moz-appearance: textfield;
}

.cart-action-group .single_add_to_cart_button {
    background: #8b8b8b;
    color: #fff;
    border: none;
    height: 50px;
    padding: 0 40px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.cart-action-group .single_add_to_cart_button:hover {
    background: var(--dark);
}

.cart-action-group .action-icon-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 16px;
    transition: var(--transition);
}

.cart-action-group .action-icon-btn:hover {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}

.meta-content .cats-link {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--dark);
}

.meta-content .cats-link a, 
.meta-content .cats-link span:not(.meta-label) {
    color: var(--text-light);
    margin-left: 5px;
}

/* Tabs */
.woocommerce-tabs {
    margin-bottom: 80px;
}

.woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}

.woocommerce-tabs ul.tabs li {
    padding-bottom: 15px;
    position: relative;
    top: 1px;
}

.woocommerce-tabs ul.tabs li a {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.woocommerce-tabs ul.tabs li.active a,
.woocommerce-tabs ul.tabs li a:hover {
    color: var(--primary);
}

.woocommerce-tabs ul.tabs li.active {
    border-bottom: 3px solid var(--primary);
}

.wc-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.wc-tab-panel.active {
    display: block;
}

.shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

.shop_attributes th, 
.shop_attributes td {
    border: 1px solid var(--border);
    padding: 15px 20px;
    text-align: left;
}

.shop_attributes th {
    width: 25%;
    font-weight: 700;
    color: var(--dark);
    background: #f7f7f7;
}

.related-products {
    margin-bottom: 80px;
}

.related-products h2 {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* ===== CONTACT PAGE & NEWS DETAIL ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-form {
    padding: 0;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-size: 15px;
    background: transparent;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--dark);
    outline: none;
}

.contact-form textarea {
    height: 180px;
    resize: vertical;
}

.contact-info-card {
    margin-bottom: 40px;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 5px;
}

.contact-info-card i {
    color: var(--dark);
    width: 20px;
    display: inline-block;
}

.article-detail {
    max-width: 900px;
    margin: 0 auto;
}

.article-detail h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.article-detail .meta {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-family: var(--font-body);
}

.article-detail .content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.article-detail .content h2,
.article-detail .content h3 {
    color: var(--dark);
    font-family: var(--font-heading);
    margin-top: 40px;
    margin-bottom: 20px;
}
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lookbook-card {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.lookbook-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.lookbook-card .lookbook-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.lookbook-card h3 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.lookbook-card .btn {
    border-color: #fff;
    color: #fff;
    font-size: 11px;
}

.lookbook-card .btn:hover {
    background: #fff;
    color: var(--dark);
}

/* ===== NEWS/ARTICLES ===== */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.article-card {
    overflow: hidden;
}

.article-card-image {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-info {
    padding: 20px 0;
}

.article-card-info .date {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.article-card-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.article-card-info h3 a:hover {
    color: var(--primary);
}

.article-card-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== NEWSLETTER (Premium Dark Style) ===== */
.newsletter {
    background: var(--dark);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter h3 {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    position: relative;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
}

.newsletter-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 6px;
    transition: var(--transition);
    position: relative;
}

.newsletter-form:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(201, 162, 39, 0.12);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 12px 28px;
    background: var(--gold);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.newsletter-form button:hover {
    background: var(--gold-light);
    transform: translateX(3px);
}

/* ===== FOOTER (Dark Theme — Enzy Style) ===== */
.site-footer {
    background: #1a1a1a;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0 30px;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    color: var(--primary);
    margin-top: 3px;
    font-size: 14px;
    min-width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    padding: 30px 0;
    background: var(--bg-light);
    margin-top: 70px;
}

.breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--dark);
    font-weight: 500;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 40px 0;
}

.product-gallery {
    position: sticky;
    top: 90px;
}

.product-gallery-main {
    aspect-ratio: 1;
    background: var(--bg-light);
    overflow: hidden;
    margin-bottom: 15px;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: var(--bg-light);
    border: 2px solid transparent;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: var(--dark);
}

.product-info .product-cat {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-info h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.product-info .product-code {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-info .price-wrap {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 25px;
}

.product-info .price-wrap .old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 18px;
    font-weight: 400;
    margin-right: 10px;
}

.product-info .description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.product-info .btn {
    letter-spacing: 3px;
}

.product-tabs-detail {
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.product-tabs-nav {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.product-tabs-nav button {
    background: none;
    border: none;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.product-tabs-nav button.active {
    color: var(--dark);
    border-bottom-color: var(--dark);
}

.tab-content {
    display: none;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
}

.tab-content.active {
    display: block;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--dark);
    outline: none;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    padding: 30px;
    background: var(--bg-light);
    margin-bottom: 20px;
}

.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* ===== NEWS DETAIL ===== */
.article-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.article-detail h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.article-detail .meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.article-detail .content {
    font-size: 15px;
    line-height: 1.9;
}

.article-detail .content img {
    margin: 20px 0;
    border-radius: 4px;
}

.article-detail .content p {
    margin-bottom: 15px;
}

/* ===== PAGINATION ===== */
.pagination-wrap {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding: 40px 0;
}

.pagination-wrap a,
.pagination-wrap span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.pagination-wrap a:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.pagination-wrap .current {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

/* ===== SIDEBAR FILTER ===== */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

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

.filter-group ul li a {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
}

.filter-group ul li a:hover {
    color: var(--dark);
}

.filter-group ul li a .count {
    font-size: 12px;
}

.filter-group ul li.active a {
    color: var(--dark);
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-slider {
        height: 60vh;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-center-text {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .lookbook-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .header-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card-info h3 {
        font-size: 12px;
    }

    .product-price {
        font-size: 13px;
    }
}

/* ===== MOBILE OFF-CANVAS MENU ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg);
    z-index: 1002;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu-drawer.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.close-mobile-menu {
    background: none;
    border: none;
    color: var(--dark);
    cursor: pointer;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-list>li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-list>li>a,
.mobile-nav-link>a {
    display: block;
    padding: 15px 0;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
}

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

.submenu-toggle,
.submenu-toggle-2 {
    background: none;
    border: none;
    padding: 10px;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
}

.mobile-submenu,
.mobile-submenu-2 {
    display: none;
    padding-left: 15px;
    padding-bottom: 15px;
}

.mobile-submenu.active,
.mobile-submenu-2.active {
    display: block;
}

.mobile-submenu>li>a,
.mobile-submenu-2>li>a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px dashed var(--border);
}

.mobile-submenu>li:last-child>a,
.mobile-submenu-2>li:last-child>a {
    border-bottom: none;
}

/* ===== STORE LOCATOR ===== */
.store-locator-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.store-locator-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

.store-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    align-self: start;
    position: sticky;
    top: 100px;
}

.store-search-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.search-input-group {
    position: relative;
}

.search-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-input-group input {
    width: 100%;
    padding: 12px 15px 12px 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.search-input-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.store-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 15px;
    background: #fff;
    cursor: pointer;
}

.store-select:focus {
    border-color: var(--primary);
    outline: none;
}

.store-stats {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-light);
}

.store-stats strong {
    color: var(--dark);
    font-size: 18px;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
}

.store-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.store-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.store-card-header h3 {
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-card-header h3 i {
    color: var(--primary);
}

.status-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-badge.open {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.distance-badge {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 5px;
    background: rgba(249, 172, 0, 0.1);
    padding: 3px 10px;
    border-radius: 4px;
}

.store-card-info {
    flex: 1;
    margin-bottom: 20px;
}

.store-card-info p {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.5;
}

.store-card-info p i {
    color: var(--primary);
    font-size: 14px;
    margin-top: 3px;
    min-width: 16px;
}

.store-card-info p a {
    color: var(--text-light);
    transition: var(--transition);
}

.store-card-info p a:hover {
    color: var(--primary);
}

.btn-map {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-map:hover {
    background: var(--primary);
    color: #fff;
}

.no-results {
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.no-results h4 {
    font-family: var(--font-body);
    font-size: 20px;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    font-size: 15px;
}

/* Responsive Store Locator */
@media (max-width: 992px) {
    .store-locator-container {
        grid-template-columns: 1fr;
    }

    .store-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

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

/* ===== PRODUCT SINGLE PAGE - ENZY GLASSES STYLE ===== */

/* Breadcrumb */
.breadcrumb-title-wrapper {
    background-color: #f5f5f5;
    margin-top: 70px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumbs {
    font-size: 13px;
    color: #808080;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.breadcrumbs a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: #f9ac00;
}

.breadcrumbs .sep {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumbs .current {
    color: #161616;
    font-weight: 500;
}

/* Single Product Wrapper */
.single-product-wrapper {
    display: flex;
    gap: 0;
    padding: 50px 0 40px;
    align-items: flex-start;
}

/* Gallery: images-thumbnails container */
.images-thumbnails {
    width: 55%;
    display: flex;
    gap: 0;
    position: relative;
    margin-bottom: 50px;
    float: left;
}

/* Vertical Thumbnails */
.thumbnails {
    width: 100px;
    flex-shrink: 0;
    margin-right: 0;
}

.thumbnails-container {
    position: relative;
    overflow: hidden;
}

.product-thumbnails {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.thumb-item {
    margin-top: 10px;
}

.thumb-item:first-child {
    margin-top: 0;
}

.thumb-item a {
    display: block;
    position: relative;
    border: 1px solid #e5e5e5;
    transition: all 0.35s ease;
}

.thumb-item a::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    background: #000;
    transition: 0.35s ease;
    z-index: 1;
}

.thumb-item a:hover::before {
    visibility: visible;
    opacity: 0.1;
}

.thumb-item.active a {
    border-color: #161616;
}

.thumb-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 5px;
    background: #fff;
}

/* Main Image */
.images {
    flex-grow: 1;
    margin-left: 10px;
    position: relative;
}

.main-image-wrapper {
    border: 1px solid #e5e5e5;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.main-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 10px;
    transition: opacity 0.2s ease;
}

/* Summary / Product Info */
.entry-summary {
    width: 45%;
    float: right;
    padding-left: 40px;
}

.product_title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #161616;
    margin: 0 0 12px 0;
}

.detail-meta-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    font-size: 13px;
    color: #808080;
    font-family: var(--font-body);
}

.sku-wrapper .label {
    font-weight: 600;
    color: #161616;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-right: 5px;
}

.sku-wrapper .sku {
    color: #808080;
    font-size: 13px;
}

/* Price */
.entry-summary .product-price {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: 700;
    color: #161616;
    font-family: var(--font-heading);
    line-height: 1.4;
    clear: both;
}

.entry-summary .product-price del {
    color: #999;
    font-weight: 400;
    font-size: 18px;
    margin-right: 12px;
    text-decoration: line-through;
    display: inline-block;
    opacity: 1;
}

.entry-summary .product-price ins {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
}

/* Short description */
.short-description {
    margin: 0 0 35px 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    clear: both;
}

.short-description ul {
    list-style: square;
    padding-left: 18px;
}

.short-description li {
    margin-bottom: 5px;
    list-style: square;
}

/* Add to Cart / CTA button */
.product-action-buttons {
    margin-bottom: 30px;
    overflow: hidden;
}

.single_add_to_cart_button.button {
    display: inline-block;
    background: #161616;
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 50px;
    border: 2px solid #161616;
    cursor: pointer;
    transition: all 0.35s ease;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
}

.single_add_to_cart_button.button:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Meta content (categories, tags) */
.meta-content {
    margin: 30px 0 0 0;
    position: relative;
    z-index: 1;
    clear: both;
    display: inline-block;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    padding-top: 25px;
}

.meta-content .cats-link {
    margin-bottom: 8px;
    font-size: 13px;
    color: #808080;
}

.meta-content .meta-label {
    font-weight: 600;
    color: #161616;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    margin-right: 8px;
}

.meta-content .cat-links a {
    color: #808080;
    transition: color 0.3s ease;
}

.meta-content .cat-links a:hover {
    color: var(--primary);
}

/* === PRODUCT TABS (WooCommerce style) === */
.woocommerce-tabs {
    clear: both;
    margin-top: 30px;
    padding-top: 0;
}

.wc-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    gap: 0;
}

.wc-tabs li {
    margin: 0;
    padding: 0;
}

.wc-tabs li a {
    display: block;
    padding: 16px 30px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #808080;
    position: relative;
    transition: all 0.35s ease;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.wc-tabs li a:hover {
    color: #161616;
}

.wc-tabs li.active a {
    color: #f9ac00;
    border-bottom-color: #f9ac00;
}

.wc-tab-panel {
    display: none;
    padding: 30px 0;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
    animation: fadeInTab 0.4s ease;
}

.wc-tab-panel.active {
    display: block;
}

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

.product-content {
    max-width: 100%;
}

.product-content p {
    margin-bottom: 15px;
}

.product-content h6 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #161616;
    font-family: var(--font-body);
}

/* Additional info table */
.shop_attributes {
    width: 100%;
    border-collapse: collapse;
}

.shop_attributes th,
.shop_attributes td {
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    font-size: 14px;
}

.shop_attributes th {
    background: #f9f9f9;
    font-weight: 600;
    color: #161616;
    width: 30%;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
}

.shop_attributes td {
    color: #666;
}

/* Related Products */
.related-products {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 60px;
}

.related-products > h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #161616;
}

/* Clearfix for floated layout */
.single-product-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

.woocommerce-tabs::after {
    content: "";
    display: table;
    clear: both;
}

/* ===== RESPONSIVE: SINGLE PRODUCT ===== */
@media (max-width: 991px) {
    .single-product-wrapper {
        flex-direction: column;
    }

    .images-thumbnails {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }

    .entry-summary {
        width: 100%;
        float: none;
        padding-left: 0;
    }

    .product_title {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .images-thumbnails {
        flex-direction: column-reverse;
    }

    .thumbnails {
        width: 100%;
        margin-top: 10px;
    }

    .product-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
    }

    .thumb-item {
        margin-top: 0;
        flex-shrink: 0;
        width: 80px;
    }

    .images {
        margin-left: 0;
    }

    .wc-tabs {
        flex-direction: column;
    }

    .wc-tabs li a {
        padding: 12px 20px;
    }

    .single_add_to_cart_button.button {
        width: 100%;
        padding: 14px 30px;
    }
}
.breadcrumb-container {
    background-color: var(--bg-light);
    margin-top: 70px; /* Offset for fixed header */
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.custom-breadcrumb {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.custom-breadcrumb a {
    color: var(--dark);
    font-weight: 500;
}

.custom-breadcrumb a:hover {
    color: var(--primary);
}

.custom-breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

.product-single-section {
    padding: 60px 0 100px;
}

.product-single-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-single-gallery {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.product-single-thumbnails {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-shrink: 0;
}

.product-single-thumbnails img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
    border-radius: 4px;
}

.product-single-thumbnails img.active,
.product-single-thumbnails img:hover {
    opacity: 1;
    border-color: var(--dark);
}

.product-single-main {
    flex-grow: 1;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-single-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 1;
    padding: 20px;
}

.product-single-info {
    padding-top: 10px;
}

.product-cat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark);
}

.product-price-wrap {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-price-wrap .price-old {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
}

.product-price-wrap .price-new,
.product-price-wrap .price-current {
    color: var(--primary);
    font-weight: 700;
}

.product-short-desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 35px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 25px 0;
}

.product-actions {
    margin-bottom: 35px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 14px;
    letter-spacing: 3px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    border-radius: 4px;
}

.product-meta {
    font-size: 14px;
    color: var(--text);
}

.product-meta .meta-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-meta .meta-label {
    font-weight: 600;
    color: var(--dark);
    min-width: 120px;
}

.product-meta .meta-value a {
    color: var(--text);
    transition: var(--transition);
}

.product-meta .meta-value a:hover {
    color: var(--primary);
}

/* Tabs Redesign */
.product-single-tabs {
    margin-top: 60px;
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.tabs-nav button {
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: var(--transition);
}

.tabs-nav button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.tabs-nav button.active,
.tabs-nav button:hover {
    color: var(--dark);
}

.tabs-nav button.active::after {
    width: 100%;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

.content-formatted {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.content-formatted p {
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 15px 20px;
    border: 1px solid var(--border);
}

.specs-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--dark);
    width: 30%;
    text-align: left;
}

/* Responsive */
@media (max-width: 991px) {
    .product-single-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .product-single-gallery {
        flex-direction: column-reverse;
    }
    
    .product-single-thumbnails {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .product-single-thumbnails img {
        width: 80px;
        height: 80px;
    }
    
    .tabs-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}


/* ==========================================================================
   BLOG LAYOUT — Enzy Theme Style (Scoped under .blog-section)
   ========================================================================== */

/* --- Blog Section & Grid --- */
.blog-section {
    background-color: #f9f9f9;
}

.blog-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.blog-container .ts-col-18 {
    flex: 1 1 0;
    min-width: 0;
}

.blog-container .ts-col-6 {
    width: 320px;
    flex-shrink: 0;
}

/* --- Post Item --- */
.blog-section .list-posts .post-item {
    margin-bottom: 55px;
    padding-bottom: 55px;
    border-bottom: 1px solid #e8e8e8;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
}

.blog-section .list-posts .post-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Thumbnail */
.blog-section .post-item .entry-format {
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

.blog-section .post-item .entry-format figure {
    margin: 0;
    padding: 0;
}

.blog-section .post-item .thumbnail-blog {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-section .post-item:hover .thumbnail-blog {
    transform: scale(1.04);
}

/* Entry Content */
.blog-section .post-item .entry-content {
    text-align: center;
    padding: 35px 40px 40px;
}

/* Category Badge */
.blog-section .entry-meta-top {
    margin-bottom: 14px;
}

.blog-section .cats-link a {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #d4a017;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-section .cats-link a:hover {
    color: #161616;
}

/* Post Title */
.blog-section .heading-title.entry-title {
    margin: 0 0 18px 0;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.35;
}

.blog-section .heading-title.entry-title a {
    color: #161616;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-section .heading-title.entry-title a:hover {
    color: #d4a017;
}

/* Meta Middle (Date / Author / Comments) */
.blog-section .entry-meta-middle {
    font-family: 'Jost', sans-serif;
    font-size: 13px;
    color: #999;
    margin-bottom: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-section .entry-meta-middle span {
    position: relative;
}

.blog-section .entry-meta-middle span:not(:last-child)::after {
    content: '–';
    margin-left: 6px;
    color: #ccc;
}

.blog-section .entry-meta-middle a {
    color: #161616;
    font-weight: 500;
    text-decoration: none;
}

.blog-section .entry-meta-middle a:hover {
    color: #d4a017;
}

/* Summary / Excerpt */
.blog-section .entry-summary {
    color: #777;
    line-height: 1.85;
    margin-bottom: 28px;
    font-size: 15px;
    font-family: 'Jost', sans-serif;
    /* Reset any product detail overrides */
    width: auto;
    float: none;
    padding-left: 0;
}

/* Read More */
.blog-section .button-readmore {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #161616;
    border-bottom: 2px solid #161616;
    padding-bottom: 4px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-section .button-readmore:hover {
    color: #d4a017;
    border-bottom-color: #d4a017;
}

.blog-section .button-readmore i {
    transition: transform 0.3s ease;
}

.blog-section .button-readmore:hover i {
    transform: translateX(5px);
}

/* --- Sidebar --- */
.blog-section .sidebar {
    padding-top: 10px;
}

.blog-section .sidebar .widget {
    margin-bottom: 45px;
}

.blog-section .sidebar .widget-title {
    font-size: 18px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #161616;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.blog-section .sidebar .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: #d4a017;
}

/* Search Widget */
.blog-section .search-form {
    position: relative;
}

.blog-section .search-form input {
    width: 100%;
    padding: 14px 48px 14px 18px;
    border: 1px solid #e1e1e1;
    border-radius: 0;
    outline: none;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
}

.blog-section .search-form input:focus {
    border-color: #161616;
}

.blog-section .search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 48px;
    background: transparent;
    border: none;
    color: #161616;
    cursor: pointer;
    font-size: 15px;
    transition: color 0.3s;
}

.blog-section .search-form button:hover {
    color: #d4a017;
}

/* Categories Widget */
.blog-section .widget_categories ul,
.blog-section .widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-section .widget_categories li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.blog-section .widget_categories li:last-child {
    border-bottom: none;
}

.blog-section .widget_categories li a {
    color: #666;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.blog-section .widget_categories li a:hover {
    color: #d4a017;
    padding-left: 5px;
}

/* Recent Posts Widget */
.blog-section .widget_recent_entries li {
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.blog-section .widget_recent_entries li:last-child {
    border-bottom: none;
}

.blog-section .widget_recent_entries li a {
    color: #161616;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-section .widget_recent_entries li a:hover {
    color: #d4a017;
}

.blog-section .widget_recent_entries .post-date {
    font-size: 12px;
    color: #aaa;
    font-family: 'Jost', sans-serif;
}

/* --- Pagination --- */
.blog-section .ts-pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 50px 0 0 0;
    justify-content: center;
}

.blog-section .ts-pagination a,
.blog-section .ts-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid #e1e1e1;
    color: #666;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.blog-section .ts-pagination span.current,
.blog-section .ts-pagination a:hover {
    background-color: #161616;
    color: #fff;
    border-color: #161616;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .blog-container {
        gap: 30px;
    }
    .blog-container .ts-col-6 {
        width: 260px;
    }
    .blog-section .heading-title.entry-title {
        font-size: 24px;
    }
    .blog-section .post-item .entry-content {
        padding: 28px 25px 32px;
    }
}

@media (max-width: 767px) {
    .blog-container {
        flex-direction: column;
        gap: 40px;
    }
    .blog-container .ts-col-18,
    .blog-container .ts-col-6 {
        width: 100%;
    }
    .blog-section .heading-title.entry-title {
        font-size: 22px;
    }
    .blog-section .post-item .entry-content {
        padding: 24px 20px 28px;
    }
    .blog-section .entry-meta-middle {
        font-size: 12px;
    }
}


/* ===== SWIPER NAVIGATION BUTTONS FIX ===== */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev,
.news-swiper .swiper-button-next,
.news-swiper .swiper-button-prev {
    display: none !important;
}

/* ===== ABOUT PAGE PREMIUM ===== */
.about-banner {
    margin-bottom: 0;
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.about-banner::before {
    background:
        radial-gradient(circle at 12% 28%, rgba(0, 31, 255, 0.4), transparent 42%),
        radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.2), transparent 32%),
        linear-gradient(120deg, rgba(5, 10, 38, 0.86), rgba(13, 26, 88, 0.78), rgba(8, 8, 8, 0.75));
}

.about-banner h1 {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: clamp(40px, 8vw, 82px);
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.about-banner-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-weight: 500;
}

.about-intro,
.about-journey,
.about-vision,
.about-values,
.about-technology,
.about-distribution,
.about-community,
.about-cta {
    position: relative;
}

.about-intro {
    background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 72%);
    padding: 90px 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.about-eyebrow {
    display: inline-flex;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3450da;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    padding-left: 22px;
}

.about-eyebrow::before {
    content: '';
    width: 14px;
    height: 2px;
    background: #3450da;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.about-intro-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-intro-content > p {
    font-size: 16px;
    color: #4f556f;
    max-width: 650px;
}

.about-highlight {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-highlight > div {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 31, 255, 0.11);
    padding: 22px;
    box-shadow: 0 12px 30px rgba(4, 22, 76, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-highlight > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(5, 17, 62, 0.14);
}

.about-highlight h3 {
    font-size: 34px;
    margin-bottom: 6px;
    color: #001fff;
}

.about-highlight p {
    margin: 0;
    color: #5f6789;
    font-size: 14px;
}

.about-intro-media {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(7, 21, 66, 0.24);
}

.about-intro-media img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.about-intro-media:hover img {
    transform: scale(1.08);
}

.about-intro-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(2, 11, 45, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 14px;
    padding: 14px 16px;
    backdrop-filter: blur(6px);
    animation: aboutFloat 3.2s ease-in-out infinite;
}

.about-intro-badge span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    opacity: 0.85;
}

.about-intro-badge strong {
    font-size: 15px;
    line-height: 1.35;
}

.about-journey {
    padding: 84px 0;
    background: #fff;
}

.about-journey-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 10px;
}

.journey-card {
    background: linear-gradient(160deg, #ffffff, #f9fbff);
    border: 1px solid #e8edff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 12px 28px rgba(6, 24, 82, 0.08);
    position: relative;
    overflow: hidden;
}

.journey-card::after {
    content: '';
    position: absolute;
    top: -45px;
    right: -45px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 31, 255, 0.18), transparent 65%);
}

.journey-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.journey-card p {
    color: #5a627f;
    margin-bottom: 0;
}

.about-vision {
    padding: 86px 0;
    background: linear-gradient(135deg, #09103b 0%, #111f67 52%, #1f2f8c 100%);
}

.about-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    color: #fff;
    backdrop-filter: blur(6px);
}

.vision-card h3 {
    color: #fff;
    font-size: 30px;
    margin-bottom: 10px;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    font-size: 15px;
}

.about-values {
    padding: 90px 0;
    background: #f9fbff;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.value-card {
    border-radius: 18px;
    padding: 30px 24px;
    background: #fff;
    border: 1px solid #ebefff;
    box-shadow: 0 12px 32px rgba(8, 19, 53, 0.08);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(7, 20, 66, 0.16);
}

.value-card i {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    margin-bottom: 14px;
    color: #fff;
    background: linear-gradient(135deg, #1532d2, #4f6dff);
    box-shadow: 0 10px 24px rgba(0, 31, 255, 0.35);
}

.value-card h3 {
    font-size: 25px;
    margin-bottom: 8px;
}

.value-card p {
    color: #5d6688;
    margin: 0;
}

.about-technology {
    padding: 90px 0;
    background: #fff;
}

.about-technology-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.tech-card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e8ecfa;
    box-shadow: 0 12px 34px rgba(9, 20, 55, 0.11);
    background: #fff;
    transition: transform 0.36s ease, box-shadow 0.36s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(9, 20, 55, 0.16);
}

.tech-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.tech-content {
    padding: 22px;
}

.tech-content h3 {
    font-size: 23px;
    margin-bottom: 8px;
}

.tech-content p {
    margin-bottom: 12px;
    color: #5d6688;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(0, 31, 255, 0.1);
    color: #1130d8;
}

.about-distribution {
    padding: 94px 0;
    background: linear-gradient(180deg, #f5f8ff, #ffffff);
}

.about-distribution-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.distribution-content h2 {
    font-size: clamp(30px, 4.2vw, 46px);
    margin-bottom: 14px;
}

.distribution-content > p {
    color: #525c7d;
    margin-bottom: 24px;
}

.distribution-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    background: #fff;
    border: 1px solid rgba(0, 31, 255, 0.12);
    border-radius: 16px;
    padding: 20px 14px;
    text-align: center;
    box-shadow: 0 10px 28px rgba(8, 21, 66, 0.1);
}

.stat-card h3 {
    font-size: 34px;
    color: #001fff;
    margin-bottom: 4px;
}

.stat-card p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    color: #667092;
}

.distribution-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 56px rgba(6, 19, 56, 0.2);
}

.distribution-media img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-community {
    padding: 94px 0;
    background: #fff;
}

.about-community-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
    align-items: center;
}

.community-media {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 46px rgba(6, 18, 52, 0.18);
}

.community-media img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.community-content h2 {
    font-size: clamp(30px, 4vw, 45px);
    margin-bottom: 12px;
}

.community-content p {
    color: #5a6384;
    margin-bottom: 12px;
}

.community-callout {
    margin-top: 12px;
    padding: 14px 18px;
    border-left: 4px solid #001fff;
    border-radius: 10px;
    background: rgba(0, 31, 255, 0.08);
    color: #25306f;
    font-weight: 600;
}

/* ===== OWNED BRANDS SECTION ===== */
.about-brands {
    padding: 0;
    background: #fff;
}

.about-brands-header {
    text-align: left;
    padding: 60px 40px 24px;
    background: linear-gradient(135deg, #071142 0%, #1532d2 100%);
}

.about-brands-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.04em;
    margin: 0;
}

.about-brands-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.brand-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.brand-panel--vigcom {
    background:
        radial-gradient(circle at 20% 30%, rgba(70, 100, 255, 0.25), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(30, 60, 200, 0.2), transparent 55%),
        linear-gradient(155deg, #071142, #0d1e6e, #1532d2);
    color: #fff;
}

.brand-panel--venus {
    background: #fff;
    color: #1a1a2e;
}

.brand-panel-inner {
    padding: 42px 38px 28px;
    flex: 1;
}

.brand-logo-wrap {
    margin-bottom: 22px;
}

.brand-logo {
    max-height: 60px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.brand-panel--venus .brand-logo {
    max-height: 50px;
    max-width: 140px;
    filter: brightness(0) saturate(100%);
}

.brand-text p {
    font-size: 14.5px;
    line-height: 1.85;
    margin: 0;
    text-align: justify;
}

.brand-panel--vigcom .brand-text p {
    color: rgba(255, 255, 255, 0.88);
}

.brand-panel--venus .brand-text p {
    color: #3a3f5c;
}

.brand-models-strip {
    overflow: hidden;
}

.brand-models-strip img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 72%;
    display: block;
    transition: transform 0.5s ease;
}

.brand-panel:hover .brand-models-strip img {
    transform: scale(1.03);
}

.brand-panel--vigcom .brand-models-strip img {
    filter: brightness(1.18) contrast(1.08);
    object-position: center 68%;
}

.brand-panel--venus .brand-models-strip img {
    object-position: center 76%;
}

@media (max-width: 1100px) {
    .about-brands-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-brands-header {
        padding: 40px 20px 18px;
    }

    .brand-panel-inner {
        padding: 28px 20px 20px;
    }

    .brand-models-strip img {
        height: 200px;
    }
}

.about-cta {
    padding: 20px 0 92px;
    background: #fff;
}

.about-cta-card {
    border-radius: 24px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 12% 18%, rgba(121, 141, 255, 0.24), transparent 50%),
        radial-gradient(circle at 85% 78%, rgba(87, 111, 255, 0.22), transparent 50%),
        linear-gradient(128deg, #071142, #0f1f71, #1f2f8d);
    box-shadow: 0 22px 54px rgba(8, 20, 71, 0.35);
}

.about-cta-card h2 {
    color: #fff;
    font-size: clamp(28px, 3.8vw, 44px);
    margin-bottom: 8px;
}

.about-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 760px;
}

#about-cta-button {
    border-radius: 999px;
    padding: 13px 30px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    color: #fff;
    letter-spacing: 0.12em;
}

#about-cta-button:hover {
    transform: translateY(-2px);
    color: #fff;
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 10px 22px rgba(255, 255, 255, 0.2);
}

@keyframes aboutFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

@media (max-width: 1100px) {
    .about-intro-grid,
    .about-distribution-grid,
    .about-community-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-media img,
    .distribution-media img,
    .community-media img {
        height: 420px;
    }

    .about-values-grid,
    .about-technology-grid,
    .about-journey-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-banner {
        padding: 130px 0 90px;
    }

    .about-banner-subtitle {
        font-size: 12px;
        letter-spacing: 0.2em;
        line-height: 1.6;
    }

    .about-intro,
    .about-journey,
    .about-vision,
    .about-values,
    .about-technology,
    .about-distribution,
    .about-community {
        padding: 62px 0;
    }

    .about-highlight,
    .distribution-stats,
    .about-values-grid,
    .about-technology-grid,
    .about-journey-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-media img,
    .distribution-media img,
    .community-media img {
        height: 300px;
    }

    .about-cta {
        padding-bottom: 70px;
    }

    .about-cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 26px;
    }

    #about-cta-button {
        width: 100%;
        text-align: center;
    }
}

/* ===== VIGCOM UI ENHANCEMENTS (Additive) ===== */
:root {
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 18px 45px rgba(0, 0, 0, 0.16);
    --hover-raise: translateY(-6px);
}

/* Buttons & interactive elements */
.btn,
.primary-btn,
.single_add_to_cart_button,
.product-card-add,
.newsletter-form button,
.contact-form button,
.product-group-button a {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.btn:hover,
.primary-btn:hover,
.single_add_to_cart_button:hover,
.product-card-add:hover,
.newsletter-form button:hover,
.contact-form button:hover,
.product-group-button a:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

/* Card hover polish */
.product-card,
.article-card,
.service-feature,
.contact-info-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover,
.article-card:hover,
.service-feature:hover,
.contact-info-card:hover {
    transform: var(--hover-raise);
    box-shadow: var(--shadow-strong);
}

.shop-product-grid .product-card {
    border-radius: 18px;
    padding: 20px;
    background: #fff;
}

.shop-product-grid .product-card-image {
    border-radius: 16px;
}

.article-card {
    background: #fff;
    border-radius: 18px;
}

.article-card-image,
.article-card-image img {
    border-radius: 18px;
}

.article-card-info {
    padding: 22px 16px 26px;
}

/* Contact form focus glow */
.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

/* Footer depth */
.site-footer {
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

/* Bento grid accent overlay */
.category-bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(0,0,0,0.12), rgba(0,0,0,0));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-bento-item:hover::after {
    opacity: 1;
}

/* Reveal animation utility (optional add-on classes) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Social proof stats */
.proof-stat {
    transition: transform 0.3s ease;
}

.proof-stat:hover {
    transform: translateY(-6px);
}

/* Testimonial cards */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

/* Contact form polish */
.contact-form input,
.contact-form textarea {
    border-radius: 8px;
}

.contact-form button.button {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-form button.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Product highlights grid */
.product-highlights {
    transition: box-shadow 0.3s ease;
}

.product-highlights:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Social proof responsive */
@media (max-width: 767px) {
    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .testimonials-row {
        grid-template-columns: 1fr !important;
    }
}

/* ===== HOMEPAGE PREMIUM OVERHAUL — PHASE 2 ===== */

/* ————— HERO SLIDER ————— */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    overflow: hidden;
    margin-top: 70px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

/* YouTube hero */
.hero-yt-bg { position: absolute; inset: 0; }
.hero-yt-bg iframe {
    position: absolute;
    top: 50%; left: 50%;
    width: 200vw; height: 200vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 24px;
}
.hero-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s 0.3s forwards;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    color: #fff;
    line-height: 1.08;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s 0.5s forwards;
    letter-spacing: -0.02em;
}
.btn-hero {
    border-color: rgba(255,255,255,0.7) !important;
    color: #fff !important;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s 0.7s forwards;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.12) !important;
}
.btn-hero:hover {
    background: #fff !important;
    color: var(--dark) !important;
    border-color: #fff !important;
}
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.hero-dot:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
.hero-dot.active { background: #fff; border-color: #fff; }
.hero-scroll-indicator {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.hero-scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.hero-scroll-wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollWheel {
    0%   { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

/* Transparent header over hero */
.site-header.hero-transparent {
    background: rgba(15, 23, 42, 0.48);
    border-bottom-color: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.site-header.hero-transparent .header-nav > a,
.site-header.hero-transparent .header-nav .mega-menu-wrapper > a,
.site-header.hero-transparent .header-actions a,
.site-header.hero-transparent .header-logo .logo-text,
.site-header.hero-transparent .mobile-toggle {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}
.site-header.hero-transparent .header-logo img {
    filter: brightness(0) invert(1);
}

/* ————— BRAND LOGOS MARQUEE ————— */
.brand-logos {
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: #fff;
}
.marquee-wrapper {
    display: flex;
    overflow: hidden;
}
.logos-track {
    display: flex;
    align-items: center;
    gap: 56px;
    animation: marquee 30s linear infinite;
    flex-shrink: 0;
    padding-right: 56px;
}
.brand-logos img {
    height: 38px;
    width: auto;
    opacity: 0.45;
    filter: grayscale(100%);
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.brand-logos img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.08);
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ————— BENTO SECTION ————— */
.bento-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ————— PRODUCT SWIPER CAROUSEL ————— */
.section-carousel {
    padding-bottom: 40px;
}
.product-swiper {
    width: 100%;
    padding-bottom: 60px;
    padding-top: 30px;
}
.product-swiper .swiper-slide {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}
.product-swiper .swiper-slide-active {
    transform: translateY(-6px) scale(1.02);
}
.product-swiper .product-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-swiper .product-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}
.product-swiper-figure {
    background: #f8f9fa;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0;
}
.product-swiper-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.5s ease;
}
.product-swiper .product-item:hover .product-swiper-figure img {
    transform: scale(1.06);
}
.product-swiper-info {
    text-align: center;
    padding: 15px 12px 0;
}
.product-swiper-info h3 {
    font-size: 15px;
    margin-bottom: 0;
}
.product-swiper-pagination {
    display: none;
}

/* ————— STORE LOCATOR SECTION ————— */
.locator-section {
    padding: 30px 0 20px;
    background: var(--bg-light);
}
.locator-section .section-title {
    margin-bottom: 24px;
}
.locator-section .section-shell {
    padding: 20px 0 10px;
}
.locator-section .store-locator-section {
    padding: 20px 0 30px;
}
.locator-section .store-intro {
    padding: 16px 24px;
    margin-bottom: 16px;
}
.locator-section .map-wrapper {
    margin-bottom: 20px;
}

/* ————— TOP SELLERS ————— */
.ts-section {
    background: var(--bg-light);
    padding: 40px 0 60px;
}
.section-title--left {
    text-align: left;
    margin-bottom: 0;
}
.ts-title {
    font-size: 36px;
}

/* ————— SERVICE FEATURES SECTION ————— */
.service-section {
    padding: 60px 0;
}

/* ————— SOCIAL PROOF + TESTIMONIALS ————— */
.social-proof-section {
    padding: 80px 0;
    background: #fff;
}

.section-shell--alt .social-proof-section .section-title h2,
.section-shell--alt .social-proof-section .section-subtitle {
    color: #111827;
    text-shadow: none;
}
.section-subtitle {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
}
.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    margin-top: 50px;
}
.proof-stat {
    padding: 24px 16px;
    border-radius: var(--radius-lg);
    background: var(--bg-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.proof-icon i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}
.proof-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}
.proof-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Testimonials */
.testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}
.testimonial-quote {
    color: var(--primary);
    font-size: 42px;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 8px;
}
.testimonial-text {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-name {
    font-weight: 600;
    color: #1a202c;
    font-size: 14px;
}
.testimonial-meta {
    color: #718096;
    font-size: 12px;
}

/* ————— NEWS SECTION ————— */
.news-section {
    background: var(--bg-light);
    padding: 80px 0;
}
.news-swiper {
    width: 100%;
    padding-bottom: 40px;
}
.news-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
}
.article-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.article-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}
.article-card-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4/3;
}
.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.article-card:hover .article-card-image img {
    transform: scale(1.05);
}
.article-card-info {
    padding: 22px 20px 26px;
}
.article-date {
    color: var(--text-light);
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}
.article-card-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    line-height: 1.4;
}
.article-card-info h3 a {
    color: var(--dark);
}
.article-card-info h3 a:hover {
    color: var(--primary);
}
.article-excerpt {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ————— NEWSLETTER ————— */
.newsletter {
    background: var(--dark);
    padding: 56px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(27,45,214,0.15), transparent 60%);
    pointer-events: none;
}
.newsletter h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
}
.newsletter p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    font-size: 15px;
    position: relative;
}
.newsletter-form {
    display: flex;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    transition: border-color 0.3s ease, background 0.3s ease;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.14);
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}
.newsletter-form button {
    padding: 14px 28px;
    background: var(--primary);
    border: 1px solid var(--primary);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ————— FOOTER ————— */
.site-footer {
    background: #1a1a2e;
    background-image: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px 0 30px;
    position: relative;
    color: rgba(255,255,255,0.7);
}
.site-footer .container {
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}
.footer-col ul li a:hover {
    color: var(--primary);
    transform: translateX(4px);
}
.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact p i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}

/* ————— ACCESSIBILITY & REDUCED MOTION ————— */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .logos-track { animation: none; }
    .reveal { opacity: 1; transform: none; }
}

/* Focus-visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* ————— RESPONSIVE HOMEPAGE ————— */
@media (max-width: 1024px) {
    .hero-slider { height: 65vh; min-height: 400px; }
    .proof-number { font-size: 36px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .hero-slider { height: 55vh; min-height: 340px; }
    .hero-title { font-size: clamp(32px, 8vw, 48px); }
    .hero-subtitle { font-size: 12px; letter-spacing: 3px; }
    .hero-scroll-indicator { display: none; }
    .brand-logos { padding: 18px 0; }
    .brand-logos img { height: 28px; }
    .logos-track { gap: 36px; padding-right: 36px; }
    .bento-section,
    .social-proof-section,
    .news-section { padding: 60px 0; }
    .ts-section { padding: 60px 0; }
    .section-title h2 { font-size: 28px; }
    .section-title { margin-bottom: 36px; }
    .social-proof-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .testimonials-row { grid-template-columns: 1fr; }
    .proof-number { font-size: 32px; }
    .ts-header { flex-direction: column; gap: 16px; align-items: flex-start; }
    .ts-cat-tabs { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .newsletter-form { flex-direction: column; gap: 0; }
    .newsletter-form input {
        border-radius: var(--radius-sm);
        margin-bottom: 10px;
    }
    .newsletter-form button {
        border-radius: var(--radius-sm);
        width: 100%;
    }
    /* Fix: mobile swiper pagination overlap with product names */
    .product-swiper {
        padding-bottom: 92px;
        overflow: visible;
    }
    .product-swiper .swiper-wrapper {
        padding-bottom: 14px;
    }
    .product-swiper-info {
        padding: 14px 10px 22px;
    }
    .product-swiper-pagination {
        bottom: 16px !important;
    }
}

/* ————— CONTACT PAGE BLOCKS ————— */
.contact-section {
    background: var(--bg-light);
    padding: 64px 0 84px;
}
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}
.contact-block {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 34px;
}
.contact-block-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 36px);
    color: var(--dark);
    margin: 0 0 8px;
}
.contact-block-subtitle {
    margin: 0 0 24px;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}
.contact-alert-success {
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    background: rgba(82, 196, 26, 0.12);
    color: #2f7a10;
    border: 1px solid rgba(82, 196, 26, 0.35);
    padding: 12px 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.contact-form-group {
    margin-bottom: 14px;
}
.contact-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
}
.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--dark);
    background: #fff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form-group textarea {
    min-height: 130px;
    resize: vertical;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(27, 45, 214, 0.1);
}
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--dark);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 24px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary);
}
.contact-info-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #f9fafc;
    margin-bottom: 14px;
}
.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}
.contact-info-card h4 {
    margin: 2px 0 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark);
}
.contact-info-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.65;
}
.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.contact-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.contact-social a:hover {
    border-color: var(--primary);
    color: #fff;
    background: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 44px 0 58px;
    }
    .contact-block {
        padding: 24px 18px;
    }
    .contact-block-title {
        font-size: 30px;
    }
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===== GLASSMORPHISM COMPONENT OVERRIDES ===== */
.section-shell .section-title h2 {
    text-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.shop-top-toolbar,
.ts-shop-filters.layer-2 {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}

.product-card,
.product-item,
.article-card,
.post-item,
.widget,
.contact-block,
.store-card,
.store-search-panel,
.store-intro,
.waiting-state,
.no-results,
.nearby-card,
.journey-card,
.value-card,
.tech-card,
.stat-card {
    border-radius: 18px;
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(255,255,255,0.55);
    box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}

.product-card:hover,
.product-item:hover,
.article-card:hover,
.post-item:hover,
.store-card:hover,
.nearby-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15,23,42,0.16);
}

.single-product-wrapper,
.woocommerce-tabs,
.shop_attributes,
.related-products,
.product-highlights {
    border-radius: 20px;
}

.entry-content.content-formatted,
.article-detail .content {
    font-size: 16px;
    line-height: 1.85;
}

@media (max-width: 768px) {
    .section-shell {
        padding: 60px 0;
    }
    .glass-panel,
    .glass-card,
    .card-3d {
        border-radius: 16px;
    }
    .shop-top-toolbar,
    .ts-shop-filters.layer-2 {
        padding: 14px 16px;
    }
}

/* ===== BLOG PAGE GLASSMORPHISM ===== */
.section-shell .blog-container .main-content .post-item {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-shell .blog-container .main-content .post-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}

.section-shell .blog-container .sidebar .widget {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}

/* ===== CONTACT PAGE GLASSMORPHISM ===== */
.section-shell .contact-block {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(15,23,42,0.08);
}
.section-shell .contact-info-card {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 14px;
    padding: 16px 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.section-shell .contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15,23,42,0.10);
}

/* ===== STORE DETAIL GLASSMORPHISM ===== */
.section-shell .store-detail-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 20px;
    box-shadow: 0 12px 36px rgba(15,23,42,0.08);
}
.section-shell .nearby-card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.section-shell .nearby-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(15,23,42,0.14);
    border-color: var(--primary);
}

/* ===== STORE LOCATOR GLASSMORPHISM ===== */
.section-shell .store-search-panel {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(15,23,42,0.08);
}
.section-shell .map-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15,23,42,0.10);
}

/* ===== BRANDS PAGE GLASSMORPHISM ===== */
.section-shell .brand-panel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(15,23,42,0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.section-shell .brand-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 48px rgba(15,23,42,0.16);
}

/* ===== GENERIC PAGE GLASSMORPHISM ===== */
.section-shell .article-detail {
    padding: 40px;
}
.section-shell .article-detail .content {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
}
.section-shell .article-detail img {
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}

/* ===== MOBILE ADJUSTMENTS FOR NEW WRAPPERS ===== */
@media (max-width: 768px) {
    .section-shell .blog-container .main-content .post-item {
        padding: 16px;
        border-radius: 14px;
    }
    .section-shell .blog-container .sidebar .widget {
        padding: 16px;
        border-radius: 12px;
    }
    .section-shell .contact-block {
        border-radius: 16px;
    }
    .section-shell .store-detail-card {
        border-radius: 16px;
    }
    .section-shell .article-detail {
        padding: 20px;
    }
    .section-shell .brand-panel {
        border-radius: 16px;
    }
}

/* ===== PRODUCT DETAIL PAGE — PREMIUM UPGRADE ===== */

/* -- Breadcrumb bar -- */
.breadcrumb-title-wrapper {
    background: linear-gradient(135deg, rgba(245,245,244,0.95) 0%, rgba(250,250,255,0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding: 16px 0;
    margin-bottom: 0;
}

/* -- Shell override for product page -- */
.product-detail-shell {
    padding: 40px 0 50px;
}

/* -- Gallery container -- */
.product-detail-shell .images-thumbnails .images {
    border: none;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(15,23,42,0.08);
    border: 1px solid rgba(255,255,255,0.55);
    overflow: hidden;
}

.product-detail-shell .main-image-wrapper {
    border: none !important;
    background: transparent !important;
    border-radius: 20px;
    overflow: hidden;
}

.product-detail-shell .main-image-wrapper img {
    padding: 24px;
    transition: transform 0.15s ease-out, opacity 0.2s ease;
}

/* -- Thumbnails -- */
.product-detail-shell .thumb-item a {
    border: 2px solid rgba(229,229,229,0.6);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.product-detail-shell .thumb-item.active a {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(27,45,214,0.15);
}

.product-detail-shell .thumb-item a:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15,23,42,0.1);
}

.product-detail-shell .thumb-item img {
    border-radius: 10px;
    padding: 6px;
}

/* -- Product title -- */
.product-detail-shell .product_title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #161616;
    margin-bottom: 16px;
    line-height: 1.25;
}

/* -- Product Badges -- */
.product-badges {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 20px;
    background: rgba(245,245,244,0.9);
    color: #555;
    border: 1px solid rgba(229,229,229,0.7);
    font-family: var(--font-body);
}

.product-badge--success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    border-color: rgba(76,175,80,0.25);
}

/* -- Short description -- */
.product-detail-shell .short-description {
    font-size: 14px;
    line-height: 1.75;
    color: #5a627f;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(229,229,229,0.5);
}

.product-detail-shell .short-description ul {
    padding-left: 16px;
}

.product-detail-shell .short-description li {
    margin-bottom: 6px;
    position: relative;
}

.product-detail-shell .short-description li::marker {
    color: var(--gold);
}

/* -- Highlights Grid (replaces inline styles) -- */
.product-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(15,23,42,0.06);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.highlight-item:hover {
    background: rgba(248,249,250,0.95);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(15,23,42,0.08);
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 16px;
    color: var(--gold);
}

.highlight-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    color: #161616;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.highlight-text {
    font-size: 11px;
    color: #808080;
    margin-top: 2px;
}

/* -- CTA Button -- */
.product-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

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

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

.product-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,162,39,0.35);
}

/* -- Cart action group spacing -- */
.product-detail-shell .cart-action-group {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(229,229,229,0.5);
}

/* -- Meta content -- */
.product-detail-shell .meta-content {
    border-top: none;
    padding-top: 0;
}

.product-detail-shell .meta-content .cats-link {
    font-size: 12px;
    color: #808080;
    margin-bottom: 6px;
}

.product-detail-shell .meta-content .meta-label {
    font-size: 11px;
    font-weight: 700;
    color: #161616;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail-shell .meta-content .cat-links a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-detail-shell .meta-content .cat-links a:hover {
    color: var(--gold);
}

/* -- Tabs upgrade -- */
.product-detail-shell .woocommerce-tabs {
    margin-top: 40px;
    margin-bottom: 50px;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 8px 32px rgba(15,23,42,0.06);
}

.product-detail-shell .wc-tabs {
    border-bottom: 2px solid rgba(229,229,229,0.4);
    gap: 0;
    justify-content: flex-start;
}

.product-detail-shell .wc-tabs li a {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    padding: 14px 28px;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.product-detail-shell .wc-tabs li.active a {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.product-detail-shell .wc-tabs li a:hover {
    color: #161616;
}

.product-detail-shell .wc-tab-panel {
    padding: 28px 0 0;
}

.product-detail-shell .product-content {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
}

.product-detail-shell .product-content p {
    margin-bottom: 16px;
}

/* -- Additional info table -- */
.product-detail-shell .shop_attributes {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15,23,42,0.05);
    border: 1px solid rgba(229,229,229,0.5);
}

.product-detail-shell .shop_attributes th {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
    color: #161616;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 20px;
    border-color: rgba(229,229,229,0.4);
}

.product-detail-shell .shop_attributes td {
    color: #555;
    padding: 14px 20px;
    border-color: rgba(229,229,229,0.4);
    font-size: 14px;
}

/* -- Related Products upgrade -- */
.product-detail-shell .related-products {
    margin-top: 0;
    margin-bottom: 0;
    border-top: none;
    padding-top: 0;
}

.product-detail-shell .related-products > h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #161616;
    text-transform: none;
    margin-bottom: 32px;
    text-align: center;
}

.product-detail-shell .related-products .product-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(15,23,42,0.06);
    padding: 16px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.product-detail-shell .related-products .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15,23,42,0.14);
}

.product-detail-shell .related-products .product-card-image {
    border-radius: 14px;
    overflow: hidden;
    background: rgba(248,249,250,0.6);
    margin-bottom: 12px;
}

.product-detail-shell .related-products .product-card-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 8px;
    transition: transform 0.5s ease;
}

.product-detail-shell .related-products .product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-detail-shell .related-products .product-card-info h3 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-detail-shell .related-products .product-card-info h3 a {
    color: #161616;
    transition: color 0.3s ease;
}

.product-detail-shell .related-products .product-card-info h3 a:hover {
    color: var(--primary);
}

/* -- Product main outer panel -- */
.product-detail-shell .product-main-panel {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.55);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 16px 45px rgba(15,23,42,0.08);
    margin-bottom: 36px;
}

/* -- Right summary inner panel -- */
.product-detail-shell .product-summary-panel {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(229,229,229,0.6);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 28px rgba(15,23,42,0.06);
}

/* -- Single product wrapper layout refinement -- */
.product-detail-shell .single-product-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 48px;
    padding: 0;
    margin-bottom: 40px;
    align-items: flex-start;
}

.product-detail-shell .images-thumbnails {
    flex: 0 0 55%;
    width: 55%;
    float: none;
}

.product-detail-shell .entry-summary {
    flex: 1 1 0%;
    width: auto;
    float: none;
    padding-left: 0;
    padding-top: 8px;
}

/* ===== RESPONSIVE: PRODUCT DETAIL PREMIUM ===== */
@media (max-width: 991px) {
    .product-detail-shell .product_title {
        font-size: 26px;
    }
    .product-highlights-grid {
        gap: 10px;
        padding: 16px;
    }
    .highlight-item {
        padding: 8px 10px;
    }
    .product-detail-shell .woocommerce-tabs {
        padding: 24px 20px;
    }
    .product-detail-shell .product-main-panel {
        padding: 20px;
    }
    .product-detail-shell .product-summary-panel {
        padding: 18px;
    }
}

@media (max-width: 767px) {
    .product-detail-shell {
        padding: 24px 0 36px;
    }
    .product-detail-shell .product_title {
        font-size: 22px;
    }
    .product-highlights-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
    }
    .highlight-item {
        padding: 8px;
    }
    .product-detail-shell .woocommerce-tabs {
        padding: 18px 16px;
        border-radius: 14px;
    }
    .product-detail-shell .wc-tabs li a {
        padding: 12px 16px;
        font-size: 12px;
    }
    .product-badges {
        gap: 8px;
    }
    .product-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    .product-detail-shell .related-products .shop-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .product-detail-shell .product-main-panel {
        padding: 14px;
        border-radius: 16px;
        margin-bottom: 24px;
    }
    .product-detail-shell .product-summary-panel {
        padding: 14px;
        border-radius: 14px;
    }
}
