/*
Theme Name: CDBC
Theme URI: https://cdbc.local
Author: CDBC
Author URI: https://cdbc.local
Description: A clean, professional WooCommerce theme for CDBC - Cap Design By Comment. Features bento-grid layouts, smooth animations, and a modern storefront design.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cdbc
Tags: e-commerce, woocommerce, custom-logo, custom-menu, featured-images, threaded-comments
WooCommerce tested up to: 10.5
*/

/* ============================================
   DESIGN SYSTEM — CSS Custom Properties
   ============================================ */
:root {
    /* Colors */
    --color-bg: #f5f5f0;
    --color-bg-alt: #eeeee8;
    --color-surface: #ffffff;
    --color-surface-hover: #fafaf7;
    --color-text: #1a1a1a;
    --color-text-secondary: #6b6b6b;
    --color-text-muted: #999999;
    --color-accent: #c9a96e;
    --color-accent-hover: #b8944f;
    --color-accent-light: rgba(201, 169, 110, 0.1);
    --color-border: #e8e8e3;
    --color-border-light: #f0f0eb;
    --color-success: #4caf50;
    --color-error: #e53935;
    --color-overlay: rgba(26, 26, 26, 0.5);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 2rem;
    --fs-3xl: 2.5rem;
    --fs-4xl: 3.5rem;
    --fs-hero: clamp(2.5rem, 5vw, 4.5rem);

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    --lh-tight: 1.1;
    --lh-snug: 1.3;
    --lh-normal: 1.6;

    --ls-tight: -0.02em;
    --ls-normal: 0;
    --ls-wide: 0.05em;
    --ls-wider: 0.1em;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 960px;
    --container-wide: 1440px;
    --sidebar-width: 300px;
    --header-height: 80px;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.1);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 8px 25px rgba(0, 0, 0, 0.08);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: var(--lh-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: var(--fw-semibold);
    line-height: var(--lh-tight);
    letter-spacing: var(--ls-tight);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.container--wide {
    max-width: var(--container-wide);
}

.section {
    padding: var(--space-4xl) 0;
}

.section--sm {
    padding: var(--space-2xl) 0;
}

.section-title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-sm);
    letter-spacing: var(--ls-tight);
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border-light);
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: var(--space-xl);
}

.site-logo {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-wide);
    color: var(--color-text);
    text-transform: uppercase;
    flex-shrink: 0;
}

.site-logo span {
    color: var(--color-accent);
}

/* Category Pills */
.nav-pills {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.nav-pill {
    display: inline-flex;
    align-items: center;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-secondary);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.nav-pill:hover,
.nav-pill--active {
    background: var(--color-text);
    color: var(--color-surface);
    border-color: var(--color-text);
}

.nav-pill--accent {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
}

.header-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    color: var(--color-text);
}

.header-action-btn:hover {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

.header-action-btn svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: white;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    border-radius: var(--radius-full);
    line-height: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: var(--space-2xl) 0 var(--space-4xl);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-xl);
    min-height: 500px;
}

.hero-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
}

.hero-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.hero-card--primary {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: white;
    min-height: 500px;
}

.hero-card--primary .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform var(--transition-slow);
}

.hero-card--primary:hover .hero-image {
    transform: scale(1.03);
}

.hero-card-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-accent);
    color: white;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wider);
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: var(--fs-hero);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: var(--fs-md);
    opacity: 0.8;
    margin-bottom: var(--space-xl);
    max-width: 400px;
}

.hero-card--secondary {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-secondary-top,
.hero-secondary-bottom {
    flex: 1;
    padding: var(--space-xl);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    transition: background var(--transition-base);
    cursor: pointer;
}

.hero-secondary-top {
    border-bottom: 1px solid var(--color-border-light);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.hero-secondary-bottom {
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

.hero-secondary-top:hover,
.hero-secondary-bottom:hover {
    background: var(--color-surface-hover);
}

.hero-category-image {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    flex-shrink: 0;
}

.hero-category-info h3 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-xs);
}

.hero-category-info p {
    color: var(--color-text-secondary);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-md);
}

.hero-category-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-text);
    color: white;
    border-radius: var(--radius-full);
    margin-left: auto;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.hero-secondary-top:hover .hero-category-arrow,
.hero-secondary-bottom:hover .hero-category-arrow {
    transform: translateX(4px);
}

/* Hero Product Slider */
.hero-slider-wrapper {
    position: relative;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.hero-slide--active {
    opacity: 1;
    pointer-events: all;
}

.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-slide-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

/* Badge at the top */
.hero-slide-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    z-index: 5;
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--color-accent);
    color: white;
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.hero-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-2xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    color: white;
    z-index: 2;
}

.hero-slide-title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-xs);
    color: white;
}

.hero-slide-price {
    font-size: var(--fs-lg);
    opacity: 0.9;
    margin-bottom: var(--space-lg);
}

.hero-slide-subtitle {
    font-size: var(--fs-md);
    opacity: 0.8;
    margin-bottom: var(--space-lg);
}

/* Slider Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.hero-slider-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.hero-slider-arrow--left {
    left: var(--space-lg);
}

.hero-slider-arrow--right {
    right: var(--space-lg);
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: var(--space-sm);
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.hero-slider-dot--active {
    background: white;
    width: 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn--primary {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn--secondary {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

.btn--secondary:hover {
    background: transparent;
    color: var(--color-text);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn--outline:hover {
    background: var(--color-text);
    color: white;
    border-color: var(--color-text);
}

.btn--white {
    background: white;
    color: var(--color-text);
}

.btn--white:hover {
    background: var(--color-bg);
    transform: translateY(-2px);
    color: var(--color-text);
}

.btn--sm {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--fs-xs);
}

.btn--lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--fs-base);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.product-card {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.product-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.product-card-image {
    position: relative;
    padding-top: 110%;
    overflow: hidden;
    background: var(--color-bg);
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.06);
}

.product-card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-accent);
    color: white;
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-card-actions {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    z-index: 2;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card-action {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    color: var(--color-text);
}

.product-card-action:hover {
    background: var(--color-accent);
    color: white;
}

.product-card-action svg {
    width: 16px;
    height: 16px;
}

.product-card-info {
    padding: var(--space-lg);
}

.product-card-category {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    margin-bottom: var(--space-xs);
}

.product-card-title {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
    line-height: var(--lh-snug);
}

.product-card-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.product-card-price .current {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-text);
}

.product-card-price .original {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-card-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
}

.product-card-rating .stars {
    color: var(--color-accent);
    font-size: var(--fs-sm);
}

.product-card-rating .count {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

/* Quick Add to Cart */
.product-card-add {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--space-md);
    margin-top: var(--space-md);
    background: var(--color-text);
    color: white;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(8px);
}

.product-card:hover .product-card-add {
    opacity: 1;
    transform: translateY(0);
}

.product-card-add:hover {
    background: var(--color-accent);
}

/* ============================================
   BENTO GRID SECTION
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-xl);
}

.bento-item {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
}

.bento-item:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.bento-item--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 500px;
}

.bento-item--medium {
    min-height: 240px;
}

.bento-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.bento-item-content {
    position: relative;
    z-index: 2;
    padding: var(--space-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-item--dark .bento-item-content {
    color: white;
}

.bento-item--dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.bento-item h3 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-xs);
}

.bento-item p {
    font-size: var(--fs-sm);
    opacity: 0.8;
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter {
    background: var(--color-text);
    color: white;
    border-radius: var(--radius-2xl);
    padding: var(--space-4xl) var(--space-2xl);
    text-align: center;
    margin: var(--space-2xl) 0;
}

.newsletter h2 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 460px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: var(--fs-sm);
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--color-accent);
}

.newsletter-form button {
    padding: var(--space-md) var(--space-xl);
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    padding: var(--space-2xl) 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-item h4 {
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 2px;
}

.feature-item p {
    font-size: var(--fs-xs);
    color: var(--color-text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-4xl) 0 var(--space-xl);
    margin-top: var(--space-4xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .site-logo {
    color: white;
    margin-bottom: var(--space-md);
    display: block;
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: var(--lh-normal);
    opacity: 0.7;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: white;
}

.footer-col h4 {
    color: white;
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    margin-bottom: var(--space-lg);
}

.footer-col li {
    margin-bottom: var(--space-sm);
}

.footer-col a {
    font-size: var(--fs-sm);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-xl);
    font-size: var(--fs-xs);
    opacity: 0.5;
}

/* ============================================
   WOOCOMMERCE — SHOP PAGE
   ============================================ */
.woocommerce-page .products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    list-style: none;
    padding: 0;
}

.woocommerce-page .products li.product {
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-slow);
}

.woocommerce-page .products li.product:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.woocommerce-page .products li.product a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.woocommerce-page .products li.product:hover a img {
    transform: scale(1.05);
}

.woocommerce-page .products li.product .woocommerce-loop-product__title {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    padding: var(--space-md) var(--space-lg) var(--space-xs);
    color: var(--color-text);
}

.woocommerce-page .products li.product .price {
    padding: 0 var(--space-lg);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--color-text);
}

.woocommerce-page .products li.product .price del {
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
}

.woocommerce-page .products li.product .price ins {
    text-decoration: none;
    color: var(--color-accent);
}

.woocommerce-page .products li.product .button,
.woocommerce-page .products li.product .add_to_cart_button {
    display: block;
    margin: var(--space-md) var(--space-lg) var(--space-lg);
    padding: var(--space-md);
    background: var(--color-text);
    color: white;
    text-align: center;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
}

.woocommerce-page .products li.product .button:hover,
.woocommerce-page .products li.product .add_to_cart_button:hover {
    background: var(--color-accent);
    color: white;
}

.woocommerce-page .star-rating {
    color: var(--color-accent);
    margin: var(--space-sm) var(--space-lg);
}

/* ============================================
   WOOCOMMERCE — SINGLE PRODUCT
   ============================================ */
.single-product .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.single-product .woocommerce-product-gallery {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.single-product .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
}

.single-product .summary {
    padding: var(--space-xl) 0;
}

.single-product .product_title {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-md);
}

.single-product .price {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-accent);
    margin-bottom: var(--space-xl);
}

.single-product .single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-3xl);
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
}

.single-product .single_add_to_cart_button:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.single-product .quantity input {
    width: 80px;
    padding: var(--space-md);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    text-align: center;
    font-size: var(--fs-base);
    font-family: inherit;
}

.single-product .woocommerce-tabs {
    grid-column: 1 / -1;
    margin-top: var(--space-2xl);
}

.single-product .woocommerce-tabs ul.tabs {
    display: flex;
    gap: var(--space-md);
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0;
    margin-bottom: var(--space-xl);
    list-style: none;
}

.single-product .woocommerce-tabs ul.tabs li {
    padding: var(--space-md) var(--space-lg);
    font-weight: var(--fw-medium);
    color: var(--color-text-secondary);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--transition-fast);
}

.single-product .woocommerce-tabs ul.tabs li.active {
    color: var(--color-text);
    border-bottom-color: var(--color-accent);
}

/* ============================================
   WOOCOMMERCE — CART
   ============================================ */
.woocommerce-cart .woocommerce {
    max-width: var(--container-max);
    margin: var(--space-2xl) auto;
    padding: 0 var(--space-xl);
}

.woocommerce table.shop_table {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    background: var(--color-surface);
    border-collapse: collapse;
    width: 100%;
}

.woocommerce table.shop_table th {
    background: var(--color-bg);
    padding: var(--space-lg);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: var(--ls-wider);
    color: var(--color-text-secondary);
    border: none;
}

.woocommerce table.shop_table td {
    padding: var(--space-lg);
    border: none;
    border-top: 1px solid var(--color-border-light);
    vertical-align: middle;
}

.woocommerce table.shop_table img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

/* ============================================
   WOOCOMMERCE — CHECKOUT
   ============================================ */
.woocommerce-checkout .woocommerce {
    max-width: var(--container-max);
    margin: var(--space-2xl) auto;
    padding: 0 var(--space-xl);
}

.woocommerce form.checkout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
}

.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: var(--fs-sm);
    width: 100%;
    transition: border-color var(--transition-fast);
    background: var(--color-surface);
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

.woocommerce form .form-row label {
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    margin-bottom: var(--space-xs);
    display: block;
    color: var(--color-text);
}

#place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--space-lg) var(--space-2xl);
    background: var(--color-accent);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
}

#place_order:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   WOOCOMMERCE — NOTICES
   ============================================ */
.woocommerce-message {
    background: var(--color-surface);
    border: none;
    border-left: 4px solid var(--color-success);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-sm);
    font-size: var(--fs-sm);
}

.woocommerce-error {
    background: var(--color-surface);
    border: none;
    border-left: 4px solid var(--color-error);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.woocommerce-info {
    background: var(--color-surface);
    border: none;
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20vh;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    width: 100%;
    max-width: 600px;
    padding: 0 var(--space-xl);
    transform: translateY(20px);
    transition: transform var(--transition-slow);
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-overlay input {
    width: 100%;
    padding: var(--space-lg) 0;
    border: none;
    border-bottom: 2px solid var(--color-text);
    font-size: var(--fs-3xl);
    font-family: inherit;
    font-weight: var(--fw-light, 300);
    outline: none;
    background: transparent;
}

.search-overlay-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    cursor: pointer;
    color: var(--color-text);
    border-radius: var(--radius-full);
    transition: background var(--transition-fast);
}

.search-overlay-close:hover {
    background: var(--color-bg);
}

/* ============================================
   MOBILE NAVIGATION DRAWER
   ============================================ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-surface);
    z-index: 9998;
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    overflow-y: auto;
    padding: var(--space-4xl) var(--space-xl) var(--space-xl);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav a {
    display: block;
    padding: var(--space-lg) 0;
    font-size: var(--fs-xl);
    font-weight: var(--fw-medium);
    border-bottom: 1px solid var(--color-border-light);
}

/* ============================================
   PAGE TITLE / BREADCRUMBS
   ============================================ */
.page-header {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.page-header h1 {
    font-size: var(--fs-3xl);
    margin-bottom: var(--space-sm);
}

.woocommerce-breadcrumb {
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    padding: var(--space-md) 0;
}

.woocommerce-breadcrumb a {
    color: var(--color-text-secondary);
}

.woocommerce-breadcrumb a:hover {
    color: var(--color-accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card--primary {
        min-height: 400px;
    }

    .products-grid,
    .woocommerce-page .products {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-item--large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 350px;
    }

    .features-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .single-product .product {
        grid-template-columns: 1fr;
    }

    .woocommerce form.checkout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .nav-pills {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-card--primary {
        min-height: 350px;
    }

    .hero-category-image {
        width: 100px;
        height: 100px;
    }

    .products-grid,
    .woocommerce-page .products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item--large {
        grid-column: span 1;
        min-height: 300px;
    }

    .features-bar {
        grid-template-columns: 1fr;
    }

    .newsletter {
        padding: var(--space-2xl) var(--space-lg);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .section-title {
        font-size: var(--fs-xl);
    }

    .hero-title {
        font-size: var(--fs-2xl);
    }

    /* Hero Slider Mobile */
    .hero-slider-wrapper {
        min-height: auto;
    }

    .hero-slider {
        min-height: 280px;
    }

    .hero-slide-badge {
        top: var(--space-md);
        left: var(--space-md);
        font-size: var(--fs-xs);
        padding: var(--space-xs) var(--space-md);
    }

    .hero-slide-info {
        padding: var(--space-lg);
    }

    .hero-slide-title {
        font-size: var(--fs-xl);
    }

    .hero-slide-price {
        font-size: var(--fs-md);
    }


    .hero-slider-arrow {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {

    .products-grid,
    .woocommerce-page .products {
        grid-template-columns: 1fr;
    }

    .header-actions {
        gap: var(--space-sm);
    }

    .header-action-btn {
        width: 38px;
        height: 38px;
    }
}

/* ============================================
   WORDPRESS BLOCK EDITOR COMPATIBILITY
   ============================================ */
.wp-block-group,
.wp-block-cover,
.wp-block-columns {
    border-radius: var(--radius-lg);
}

.entry-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: var(--space-2xl) var(--space-xl);
}

.entry-content h2 {
    font-size: var(--fs-2xl);
    margin: var(--space-2xl) 0 var(--space-md);
}

.entry-content p {
    margin-bottom: var(--space-md);
    line-height: var(--lh-normal);
}

/* ============================================
   LOADING SKELETON
   ============================================ */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, var(--color-bg) 25%, var(--color-border-light) 50%, var(--color-bg) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-secondary);
}

/* ============================================
   WOOCOMMERCE - SINGLE PRODUCT
   ============================================ */
.cdbc-single-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

@media (max-width: 900px) {
    .cdbc-single-product {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
}

/* Product Gallery */
.cdbc-product-gallery {
    position: sticky;
    top: calc(var(--header-height) + var(--space-xl));
}

.cdbc-main-image-wrapper {
    background: var(--color-surface);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
}

.cdbc-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.cdbc-product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.cdbc-thumb-wrapper {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.cdbc-thumb-wrapper:hover,
.cdbc-thumb-wrapper.active {
    border-color: var(--color-accent);
}

.cdbc-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* Product Summary */
.cdbc-product-summary .woocommerce-breadcrumb {
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: var(--fs-sm);
}

.cdbc-product-summary .product_title {
    font-size: var(--fs-4xl);
    margin-bottom: var(--space-md);
    line-height: var(--lh-tight);
}

.cdbc-product-price-box {
    margin-bottom: var(--space-lg);
}

.cdbc-product-price-box .price {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--color-accent);
}

.cdbc-product-rating-box {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.woocommerce-product-rating .star-rating {
    color: var(--color-accent);
    font-size: var(--fs-md);
}

.cdbc-product-short-description {
    font-size: var(--fs-md);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--color-border-light);
}

/* Add to Cart Area */
.cdbc-product-cart-box form.cart {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.cdbc-product-cart-box .quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-surface);
    padding: 0 var(--space-md);
    width: fit-content;
}

.cdbc-product-cart-box .quantity input {
    width: 50px;
    height: 48px;
    border: none;
    text-align: center;
    font-size: var(--fs-md);
    font-weight: var(--fw-medium);
    background: transparent;
    -moz-appearance: textfield;
}

.cdbc-product-cart-box .single_add_to_cart_button {
    width: 100%;
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: white;
    background: var(--color-accent);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    box-shadow: var(--shadow-md);
}

.cdbc-product-cart-box .single_add_to_cart_button:hover {
    background: var(--color-text);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Meta Data (SKU, Categories) */
.cdbc-product-meta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.cdbc-product-meta span a {
    color: var(--color-text);
    font-weight: var(--fw-medium);
}

/* Guarantees */
.cdbc-guarantees {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border-light);
}

.cdbc-guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--color-text);
    font-weight: var(--fw-medium);
}

.cdbc-guarantee-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

/* Product Tabs */
.cdbc-product-details-tabs {
    margin-top: var(--space-5xl);
    padding-top: var(--space-4xl);
    border-top: 1px solid var(--color-border);
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
    border-bottom: 2px solid var(--color-border-light);
    padding: 0;
}

.woocommerce-tabs ul.tabs li {
    list-style: none;
    padding-bottom: var(--space-sm);
    position: relative;
    top: 2px;
}

.woocommerce-tabs ul.tabs li a {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text-secondary);
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--color-text);
}

.woocommerce-tabs ul.tabs li.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent);
}

.woocommerce-Tabs-panel {
    font-size: var(--fs-md);
    line-height: var(--lh-normal);
    color: var(--color-text-secondary);
    max-width: 800px;
}