/*
Theme Name: Vauré
Theme URI: http://localhost:8081
Author: Vauré
Description: Луксозна WooCommerce тема за магазин за топ модели часовници — тъмен дизайн със златни акценти.
Version: 1.0.0
Text Domain: aureum
Requires at least: 6.0
Requires PHP: 8.0
*/

:root {
    --primary: #c9a24a;        /* злато — CTA, цени, акценти, лого */
    --primary-dark: #a07f2e;   /* тъмно злато — hover */
    --dark: #0b0c10;           /* почти черно — хедър, футър, херо */
    --dark-light: #14151c;     /* леко по-светло черно — градиенти */
    --text: #e9e7e1;           /* основен текст (светъл, върху тъмно) */
    --text-light: #9c988e;     /* вторичен текст */
    --bg: #0a0b0e;             /* фон на страницата (тъмен) */
    --white: #ffffff;          /* бяло — текст върху тъмните блокове */
    --border: #2a2c34;         /* тъмна рамка */
    --surface: #14161d;        /* фон на карти/панели */
    --surface-2: #1b1e27;      /* втори план — секции, table th */
    --radius: 12px;
    --shadow: 0 2px 10px rgba(0,0,0,0.45);
    --shadow-hover: 0 12px 34px rgba(0,0,0,0.6);
    --transition: all 0.2s ease;
    --max-width: 1280px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }

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

/* ========== TOP TICKER ========== */
.top-ticker {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 50%, #dc2626 100%);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.ticker-track {
    display: inline-block;
    animation: ticker-scroll 90s linear infinite;
}

.ticker-content {
    display: inline-block;
    padding: 8px 0;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

/* ========== HEADER ========== */
.site-header {
    background: var(--dark);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.top-ticker + .site-header {
    top: 0;
}

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

.site-logo a {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-logo .logo-accent { color: var(--primary); }

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

.header-nav a {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

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

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

.cart-link {
    position: relative;
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.cart-link:hover { color: var(--primary); }

.cart-count {
    background: var(--primary);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -10px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 4px;
}

/* ========== CATEGORY NAV ========== */
.category-bar {
    background: var(--dark-light);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 10px 16px;
    white-space: nowrap;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.category-nav a:hover,
.category-nav a.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

/* ========== HERO / PAGE TITLE ========== */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* ========== HOME HERO ========== */
.home-hero {
    width: 100%;
    overflow: hidden;
}

.home-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== PRODUCT GRID ========== */
.products-section { padding: 32px 0 48px; }

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

/* ========== PRODUCT CARD ========== */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f3f4f6;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 2;
}

.product-rank-badge {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center;
    gap: 4px;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 5px 10px 5px 8px;
    border-radius: 20px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    z-index: 50 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    pointer-events: none;
}

.product-rank-badge .rank-icon {
    font-size: 0.85rem;
    line-height: 1;
}

.product-rank-badge.rank-bestseller {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1a1a2e;
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.product-rank-badge.rank-popular {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

@media (max-width: 480px) {
    .product-rank-badge {
        font-size: 0.62rem;
        padding: 4px 8px 4px 6px;
    }
    .product-rank-badge .rank-icon { font-size: 0.75rem; }
}

.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title a { color: inherit; }
.product-card-title a:hover { color: var(--primary-dark); }

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

.price-current {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.price-old {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-view-product {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    background: #4a7c59;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    box-shadow: 0 2px 6px rgba(74, 124, 89, 0.25);
}

.btn-view-product:hover {
    background: #3d6b4a;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(61, 107, 74, 0.35);
    transform: translateY(-1px);
}

.btn-view-product.btn-out-of-stock {
    background: #f3f4f6;
    color: #aaa;
    cursor: default;
}

.btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px 16px;
    background: var(--primary);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-add-to-cart.added {
    background: #22c55e;
    color: var(--white);
}

/* ========== SINGLE PRODUCT ========== */
.single-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 40px 0;
}

.single-product-image {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 400px;
}

.single-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-thumbnails {
    display: flex;
    gap: 8px;
    overflow-x: auto;
}

.product-thumb {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    flex-shrink: 0;
    transition: all 0.2s ease;
    opacity: 0.6;
}

.product-thumb.active {
    border-color: var(--primary);
    opacity: 1;
}

.product-thumb:hover { opacity: 1; }

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

.single-product-image a {
    display: block;
    cursor: zoom-in;
    width: 100%;
    height: 100%;
}

.single-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.single-product-image a:hover img {
    opacity: 0.92;
}

/* ========== TRUST FEATURES ========== */
.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    background: var(--surface);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.trust-item:nth-child(even) { border-right: none; }
.trust-item:nth-last-child(-n+2) { border-bottom: none; }
.trust-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: none;
    justify-content: center;
}

.trust-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201,162,74,0.12);
    border-radius: 8px;
}

.trust-item-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.trust-item-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
}

.trust-item-text span {
    font-size: 0.72rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .trust-features { grid-template-columns: 1fr; }
    .trust-item { border-right: none !important; }
    .trust-item:last-child { border-bottom: none; }
    .trust-item:last-child:nth-child(odd) { grid-column: auto; justify-content: flex-start; }
}

.single-product-meta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.single-product-meta a {
    color: var(--primary-dark);
}

.single-product-meta a:hover {
    text-decoration: underline;
}

.single-product-info h1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.single-product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.single-product-price .price-current {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
}

.single-product-price .price-old {
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0.7;
    text-decoration: line-through;
}

/* ========== PAGE CONTENT ========== */
.page-body {
    padding: 40px 0 60px;
}

.page-content-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 16px;
}

.page-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 28px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.page-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin: 16px 0 8px;
}

.page-content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 14px;
}

.page-content ul, .page-content ol {
    margin: 0 0 16px 0;
    padding: 0;
    list-style: none;
}

.page-content ul li, .page-content ol li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.93rem;
    line-height: 1.6;
    color: var(--text-light);
}

.page-content ul li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.page-content ol {
    counter-reset: page-counter;
}

.page-content ol li {
    counter-increment: page-counter;
}

.page-content ol li::before {
    content: counter(page-counter) '.';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.page-content a {
    color: var(--primary-dark);
    font-weight: 600;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content strong {
    color: var(--dark);
}

@media (max-width: 768px) {
    .page-content-wrap { padding: 24px 16px; }
    .page-content h2 { font-size: 1.3rem; }
}

/* ========== PRODUCT DESCRIPTION ========== */
.product-description h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
}

.product-description h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 20px 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.product-description h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin: 14px 0 8px;
}

.product-description p {
    margin-bottom: 12px;
}

.product-description ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.product-description ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.product-description ul li::before {
    content: '\2714';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ========== PROMO COUNTDOWN ========== */
.promo-countdown {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    color: var(--white);
}

.promo-countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.promo-fire { font-size: 1.2rem; }

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 16px;
    min-width: 70px;
}

.countdown-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

.countdown-sep {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 14px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #78350f;
}

.trust-flag { font-size: 1.4rem; }

.single-product-desc-section {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.single-product-desc-section > h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}
.single-product-desc-section > h2::before {
    content: "";
    display: inline-block;
    width: 26px; height: 2px;
    background: var(--primary);
    vertical-align: middle;
    margin-right: 12px;
}

.single-product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ========== CART FORM ========== */
.cart-form { margin-bottom: 24px; }

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fafafa;
    width: fit-content;
}

.qty-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: var(--text);
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover { background: #e5e7eb; }

.qty-input {
    width: 64px;
    height: 48px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    background: var(--white);
    color: var(--text);
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 24px;
    background: #4a7c59;
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    gap: 0;
}

.cart-btn:hover { background: #3d6b4a; }

.cart-btn-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-btn-icon { font-size: 1.3rem; }

.cart-btn-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cart-btn-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.35);
    margin: 0 20px;
}

.cart-btn-right {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cart-btn-old-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #ffffff;
    opacity: 0.75;
}

.cart-btn-price {
    font-size: 1.2rem;
    font-weight: 800;
}

/* Desktop: qty horizontal */
@media (min-width: 769px) {
    .qty-selector { width: fit-content; }
}

/* Mobile: compact qty + stacked button */
@media (max-width: 768px) {
    .qty-selector { width: fit-content; margin: 0 auto 20px; }
    .qty-btn { width: 44px; height: 44px; }
    .qty-input { width: 56px; height: 44px; }

    .cart-btn { padding: 14px 16px; }
    .cart-btn-text { font-size: 0.82rem; }
    .cart-btn-price { font-size: 1rem; }
    .cart-btn-divider { margin: 0 12px; }
}

/* Stock badge */
.stock-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 20px;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fbbf24;
}

.stock-badge.in-stock strong {
    color: #b91c1c;
    font-weight: 800;
}

.stock-badge.out-of-stock {
    background: #fef2f2;
    color: #991b1b;
}

.viewers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.viewers-badge strong.viewers-count {
    color: #1e3a8a;
    font-weight: 800;
}

.viewers-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: viewers-pulse 1.8s infinite;
}

@keyframes viewers-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.7); }
    70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0); }
}

/* ========== CHECKOUT ========== */
.checkout-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 20px 60px;
}

.checkout-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fefce8;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #78350f;
}

.checkout-cd-timer { display: flex; gap: 2px; }

.checkout-cd-num {
    background: #1a1a2e;
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}

/* Steps */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    border: 2px solid #d1d5db;
    color: #9ca3af;
    background: var(--white);
}

.step-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #9ca3af;
}

.step.done .step-num {
    background: #4a7c59;
    border-color: #4a7c59;
    color: var(--white);
}

.step.done .step-label { color: #4a7c59; }

.step.active .step-num {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.step.active .step-label { color: var(--dark); font-weight: 800; }

.step-line {
    width: 60px;
    height: 2px;
    background: #d1d5db;
    margin: 0 8px;
    margin-bottom: 20px;
}

.step-line.done { background: #4a7c59; }

/* Columns */
.checkout-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.checkout-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* Form fields */
.checkout-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkout-field {
    margin-bottom: 16px;
}

.checkout-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.checkout-field label abbr { color: #ef4444; text-decoration: none; }

.checkout-field input,
.checkout-field textarea,
.checkout-field select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    transition: var(--transition);
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.1);
}

.checkout-field textarea { resize: vertical; }

/* Order Summary */
.order-summary {
    background: #fafaf8;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    position: sticky;
    top: 80px;
}

.order-products { margin-bottom: 16px; }

.order-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.order-product-img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
}

.order-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.order-product-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

.order-product-qty {
    font-size: 0.78rem;
    color: var(--text-light);
}

.order-product-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 6px;
}

.order-product-remove {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ef4444;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.order-product-remove:hover { color: #dc2626; }

.order-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
}

.order-qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.order-qty-btn:hover { background: #e5e7eb; }

.order-qty-num {
    width: 30px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--white);
}

.order-product-price {
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    line-height: 1.2;
}
/* All "current" prices share one brand color */
.order-price-new,
.order-totals .order-total-row span:last-child {
    color: var(--dark);
    font-weight: 800;
}
.order-price-old,
.order-total-regular .order-price-strike {
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: line-through;
}
.order-total-regular {
    color: #9ca3af;
}
.order-total-regular span:first-child {
    color: #9ca3af;
}
/* Discounts in green stand out as savings */
.order-total-discount {
    color: #047857;
}
.order-total-discount span:last-child {
    color: #047857 !important;
    font-weight: 800;
}
/* Final total — slightly larger but same color family */
.order-total-final span:last-child {
    color: var(--primary-dark) !important;
}

.order-totals {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-bottom: 16px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
}

.order-total-final {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--dark);
    padding-top: 10px;
    border-top: 1px solid var(--border);
    margin-top: 6px;
}

/* Payment box */
.checkout-payment-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.checkout-payment-box strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-light);
}

.checkout-privacy {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.checkout-terms {
    margin-bottom: 16px;
}

.checkout-terms label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text);
    cursor: pointer;
}

.checkout-terms input {
    margin-top: 2px;
    flex-shrink: 0;
}

/* Submit button */
.checkout-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 18px 24px;
    background: #4a7c59;
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    font-family: inherit;
    letter-spacing: 0.5px;
    transition: var(--transition);
    margin-bottom: 16px;
}

.checkout-submit-btn:hover { background: #3d6b4a; }

.checkout-btn-divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.35);
    margin: 0 16px;
}

.checkout-btn-total { font-size: 1.1rem; }

/* Trust badges */
.checkout-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.checkout-trust-item {
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.checkout-trust-item:nth-child(even) { border-right: none; }
.checkout-trust-item:nth-child(n+3) { border-bottom: none; }

/* Checkout mobile */
@media (max-width: 768px) {
    .checkout-columns {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .checkout-row { grid-template-columns: 1fr; gap: 0; }

    .order-summary { position: static; }

    .step-line { width: 30px; }
    .step-label { font-size: 0.6rem; }

    .checkout-submit-btn { padding: 16px 16px; font-size: 0.9rem; }

    .checkout-trust { grid-template-columns: 1fr; }
    .checkout-trust-item { border-right: none !important; }
    .checkout-trust-item:last-child { border-bottom: none; }
}

/* ========== THANK YOU ========== */
.thankyou-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.thankyou-hero {
    text-align: center;
    margin-bottom: 32px;
}

.thankyou-check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a7c59, #22c55e);
    color: var(--white);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(74, 124, 89, 0.3);
}

.thankyou-hero h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.thankyou-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

.thankyou-call-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.thankyou-call-icon { font-size: 1.6rem; flex-shrink: 0; }

.thankyou-call-notice strong {
    display: block;
    font-size: 0.95rem;
    color: #1e40af;
    margin-bottom: 4px;
}

.thankyou-call-notice p {
    font-size: 0.82rem;
    color: #3b82f6;
    line-height: 1.5;
    margin: 0;
}

.thankyou-order-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
}

.thankyou-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #fafaf8;
    border-bottom: 1px solid var(--border);
    font-weight: 700;
    font-size: 0.95rem;
}

.thankyou-status {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: #fefce8;
    padding: 4px 12px;
    border-radius: 20px;
}

.thankyou-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid var(--border);
}

.thankyou-detail-item {
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.thankyou-detail-item:nth-child(even) { border-right: none; }
.thankyou-detail-item:nth-child(n+3) { border-bottom: none; }

.thankyou-detail-label {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.thankyou-detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.thankyou-total {
    font-size: 1.1rem;
    font-weight: 800;
    color: #4a7c59;
}

.thankyou-products {
    padding: 20px 24px;
}

.thankyou-products h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.thankyou-product-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.thankyou-product-row:last-child { border-bottom: none; }

.thankyou-product-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
}

.thankyou-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thankyou-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.thankyou-product-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}

.thankyou-product-qty {
    font-size: 0.75rem;
    color: var(--text-light);
}

.thankyou-product-price {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Steps */
.thankyou-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.thankyou-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.thankyou-step-icon { font-size: 1.6rem; }

.thankyou-step strong {
    font-size: 0.85rem;
    color: var(--dark);
}

.thankyou-step span {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Actions */
.thankyou-actions { text-align: center; }

.thankyou-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.thankyou-btn-primary:hover {
    background: var(--dark-light);
}

@media (max-width: 768px) {
    .thankyou-hero h1 { font-size: 1.4rem; }
    .thankyou-details { grid-template-columns: 1fr; }
    .thankyou-detail-item { border-right: none !important; border-bottom: 1px solid var(--border); }
    .thankyou-detail-item:last-child { border-bottom: none; }
    .thankyou-steps { grid-template-columns: 1fr; gap: 10px; }
    .thankyou-order-header { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ========== RELATED & RECENTLY VIEWED ========== */
.related-section,
.recently-viewed-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .related-section,
    .recently-viewed-section { padding: 24px 0; margin-top: 24px; }
    .section-title { font-size: 1.1rem; margin-bottom: 16px; }
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 40px 0 24px;
    margin-top: 48px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
@media (max-width: 960px) {
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 560px) {
    .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-links ul { list-style: none; }

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

.footer-links a {
    font-size: 0.88rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 32px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.82rem;
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}
.footer-bottom-meta { color: rgba(255,255,255,0.45); font-size: 0.78rem; margin-top: 4px; }

/* Brand block enhanced */
.footer-brand-gear { color: var(--primary); margin-right: 4px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: rgba(255,255,255,0.8);
    font-size: 0.88rem;
    line-height: 1.4;
    transition: var(--transition);
}
.footer-contact-item:hover { color: var(--primary); }
.footer-contact-item strong { color: var(--white); font-size: 0.95rem; }
.footer-contact-item small { color: rgba(255,255,255,0.55); font-size: 0.75rem; }
.footer-contact-icon {
    font-size: 1.3rem;
    width: 38px;
    height: 38px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Features list (right footer column) */
.footer-features { list-style: none; padding: 0; }
.footer-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 8px;
}
.footer-features li span { font-size: 1.05rem; flex-shrink: 0; }

/* Payment strip */
.footer-payment-strip {
    margin-top: 32px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.15);
}
.footer-payment-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-payment-block strong {
    color: var(--white);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 3px;
}
.footer-payment-block span {
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
}
.footer-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pay-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
}

/* ========== HEADER SEARCH ========== */
.header-search-toggle {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: var(--transition);
}
.header-search-toggle:hover { color: var(--primary); }
.header-search {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    background: rgba(0,0,0,0.25);
}
.header-search.active { max-height: 100px; }
.header-search-form {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    gap: 8px;
}
.header-search-input {
    flex: 1;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
}
.header-search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(245,158,11,0.2); }
.header-search-submit {
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: 8px;
    padding: 0 18px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}
.header-search-submit:hover { background: var(--primary-dark); color: var(--white); }

/* ========== ABOUT PAGE ========== */
.about-page { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.about-hero {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    padding: 32px 32px;
    margin-bottom: 32px;
    border-left: 5px solid var(--primary);
}
.about-hero h2 {
    color: var(--dark);
    font-size: 1.7rem;
    margin: 0 0 14px 0;
}
.about-lead {
    color: #78350f;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}
.about-section {
    margin-bottom: 28px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.about-section:last-of-type { border-bottom: none; }
.about-section h3 {
    color: var(--dark);
    font-size: 1.3rem;
    margin: 0 0 12px 0;
}
.about-section p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 12px 0;
}
.about-section p:last-child { margin-bottom: 0; }

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    background: var(--dark);
    border-radius: 16px;
}
.about-stat {
    text-align: center;
    color: var(--white);
}
.about-stat-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.1;
}
.about-stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-top: 6px;
    line-height: 1.3;
}

.about-cta {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    margin-top: 32px;
}
.about-cta h3 {
    color: var(--dark);
    font-size: 1.4rem;
    margin: 0 0 10px 0;
}
.about-cta p {
    color: rgba(26,26,46,0.8);
    margin: 0 0 18px 0;
    font-size: 1rem;
}
.about-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--dark);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}
.about-cta-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

@media (max-width: 560px) {
    .about-hero { padding: 22px 20px; }
    .about-hero h2 { font-size: 1.4rem; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .about-stat-num { font-size: 1.5rem; }
}

/* ========== REVIEWS SECTION ========== */
.single-product-reviews-section {
    max-width: 1100px;
    margin: 48px auto;
    padding: 0 20px;
}
.reviews-header h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.reviews-count-pill {
    background: var(--primary);
    color: var(--dark);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
    margin-bottom: 32px;
}
.reviews-avg {
    text-align: center;
    padding-right: 32px;
    border-right: 2px solid rgba(146, 64, 14, 0.2);
}
.reviews-avg-num {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #92400e;
    line-height: 1;
}
.reviews-stars-big {
    display: block;
    font-size: 1.5rem;
    color: #f59e0b;
    letter-spacing: 2px;
    margin: 6px 0 4px;
}
.reviews-stars-big .star-empty { color: rgba(245, 158, 11, 0.25); }
.reviews-avg-label {
    display: block;
    font-size: 0.82rem;
    color: #78350f;
    font-weight: 600;
}
.reviews-distribution {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.rating-bar-row {
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #78350f;
}
.rating-bar-label { font-weight: 700; color: #92400e; }
.rating-bar-track {
    height: 10px;
    background: rgba(146, 64, 14, 0.15);
    border-radius: 10px;
    overflow: hidden;
}
.rating-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
    transition: width 0.3s ease;
}
.rating-bar-count { text-align: right; font-weight: 600; }

.reviews-list { display: flex; flex-direction: column; gap: 16px; }
.reviews-list-hidden { display: none; }
.reviews-list-hidden.visible { display: flex; margin-top: 16px; }

.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.review-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.review-author {
    font-size: 0.95rem;
    color: var(--dark);
}
.review-verified {
    font-size: 0.72rem;
    color: #047857;
    font-weight: 600;
}
.review-rating-date {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}
.review-stars {
    font-size: 0.95rem;
    color: #f59e0b;
    letter-spacing: 1px;
}
.review-stars .star-empty { color: #d1d5db; }
.review-date {
    font-size: 0.75rem;
    color: var(--text-light);
}
.review-body {
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.55;
}
.review-body strong { display: block; margin-bottom: 4px; color: var(--dark); font-size: 0.98rem; }

.reviews-show-more {
    display: block;
    margin: 20px auto 0;
    padding: 12px 28px;
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.reviews-show-more:hover {
    background: var(--primary);
    color: var(--dark);
}
.reviews-show-more.hidden { display: none; }

/* Review form */
.review-form-section {
    margin-top: 40px;
    padding: 28px;
    background: var(--bg);
    border-radius: 16px;
}
.review-form-section h3 {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--dark);
    font-size: 1.25rem;
}
.review-login-prompt {
    text-align: center;
    padding: 20px;
}
.review-login-prompt p {
    color: var(--text);
    margin-bottom: 16px;
}
.review-login-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #4a7c59;
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}
.review-login-btn:hover { background: #3d6b4a; }

.review-form-rating { margin-bottom: 16px; }
.review-form-rating label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark); }
.review-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}
.review-rating-input input { display: none; }
.review-rating-input label {
    font-size: 2rem;
    color: #d1d5db;
    cursor: pointer;
    transition: color 0.15s;
    margin: 0;
    line-height: 1;
}
.review-rating-input input:checked ~ label,
.review-rating-input label:hover,
.review-rating-input label:hover ~ label {
    color: #f59e0b;
}

.comment-form-comment label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark); }
.comment-form-comment textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    resize: vertical;
    transition: var(--transition);
}
.comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}
.review-submit-btn,
.form-submit input[type=submit] {
    margin-top: 12px;
    padding: 12px 28px;
    background: #4a7c59;
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}
.review-submit-btn:hover,
.form-submit input[type=submit]:hover { background: #3d6b4a; }

@media (max-width: 768px) {
    .reviews-summary { grid-template-columns: 1fr; gap: 24px; }
    .reviews-avg { padding-right: 0; padding-bottom: 24px; border-right: none; border-bottom: 2px solid rgba(146, 64, 14, 0.2); }
    .review-card-head { grid-template-columns: auto 1fr; gap: 12px; }
    .review-rating-date { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ========== RELATED + RECENTLY VIEWED ========== */
.related-products-section,
.recently-viewed-section {
    background: var(--bg);
    padding: 40px 0;
    margin-top: 32px;
}
.related-products-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.related-products-title {
    font-size: 1.45rem;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}
.related-products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); max-width: 1200px; margin: 0 auto; }
@media (max-width: 768px) {
    .related-products-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .related-products-section,
    .recently-viewed-section { padding: 24px 0; }
    .related-products-title { font-size: 1.1rem; margin-bottom: 16px; }
    .related-products-grid .product-card-title { font-size: 0.78rem; }
    .related-products-grid .price-current { font-size: 0.95rem; }
    .related-products-grid .btn-view-product { padding: 7px 10px; font-size: 0.75rem; }
}
@media (max-width: 480px) {
    .related-products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .related-products-grid .product-card-image { padding: 6px; }
}
.recently-viewed-home { background: transparent; padding-top: 30px; padding-bottom: 50px; }

/* ========== EXIT-INTENT MODAL ========== */
.m4e-exit-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.m4e-exit-modal.active { display: flex; animation: m4e-fade-in 0.2s ease; }
.m4e-exit-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.m4e-exit-modal-card {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #fffbeb 100%);
    border-radius: 20px;
    padding: 36px 32px 28px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    text-align: center;
    border: 2px solid var(--primary);
    animation: m4e-pop-in 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.m4e-exit-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px 8px;
    transition: var(--transition);
}
.m4e-exit-close:hover { color: var(--dark); transform: rotate(90deg); }
.m4e-exit-icon {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 8px;
    animation: m4e-bounce-gift 2s ease-in-out infinite;
}
@keyframes m4e-bounce-gift {
    0%, 100% { transform: translateY(0)   rotate(-6deg); }
    50%      { transform: translateY(-6px) rotate(6deg);  }
}
.m4e-exit-title {
    font-size: 1.6rem;
    color: var(--dark);
    margin: 0 0 10px;
    font-weight: 800;
}
.m4e-exit-text {
    color: var(--text);
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.5;
}
.m4e-exit-text strong {
    color: var(--primary-dark);
    background: #fef3c7;
    padding: 1px 6px;
    border-radius: 4px;
}
.m4e-exit-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 20px;
    margin: 18px auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    border: 2px dashed var(--primary);
    max-width: 280px;
}
.m4e-exit-code-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}
.m4e-exit-code-value {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
    text-shadow: 0 0 12px rgba(245, 158, 11, 0.4);
}
.m4e-exit-submit {
    width: 100%;
    padding: 14px 22px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 10px;
}
.m4e-exit-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}
.m4e-exit-submit:disabled { opacity: 0.7; cursor: default; }
.m4e-exit-msg {
    min-height: 22px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.m4e-exit-msg.pending { color: var(--text-light); }
.m4e-exit-msg.success { color: #047857; }
.m4e-exit-msg.error   { color: #b91c1c; }
.m4e-exit-fine {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}
@keyframes m4e-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes m4e-pop-in {
    0%   { opacity: 0; transform: scale(0.9) translateY(20px); }
    100% { opacity: 1; transform: scale(1)   translateY(0);    }
}
@media (max-width: 480px) {
    .m4e-exit-form { flex-direction: column; }
    .m4e-exit-modal-card { padding: 30px 24px 24px; }
    .m4e-exit-title { font-size: 1.35rem; }
}

/* ========== WOO NOTICES ========== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.woocommerce-message {
    background: #dcfce7;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.woocommerce-info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.woocommerce-error {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
    list-style: none;
}

/* ========== WOO CART & CHECKOUT ========== */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.woocommerce table.shop_table th {
    background: var(--bg);
    font-weight: 600;
    font-size: 0.85rem;
}

.woocommerce .button,
.woocommerce button.button {
    background: var(--primary);
    color: var(--dark);
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .single-product-layout { gap: 32px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .header-nav { display: none; }
    .menu-toggle { display: block; }

    .header-nav.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 16px 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }

    .header-nav.active a {
        padding: 10px 0;
        font-size: 1rem;
    }

    .single-product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 0;
    }

    .page-hero { padding: 24px 0; }
    .page-hero h1 { font-size: 1.4rem; }

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

    .product-card-body { padding: 12px; }
    .product-card-title { font-size: 0.8rem; }
    .price-current { font-size: 1.1rem; }
    .btn-view-product,
    .btn-add-to-cart { padding: 8px 12px; font-size: 0.8rem; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card-image { padding: 8px; }
    .container { padding: 0 12px; }
}

/* ============================================================
   BUY-2-GET-30 PROMO
   ============================================================ */

/* Site-wide promo bar */
.m4e-promo-bar {
    background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 50%, #f59e0b 100%);
    color: #1a1a2e;
    border-bottom: 2px solid #d97706;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}
.m4e-promo-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255,255,255,0.08) 12px, rgba(255,255,255,0.08) 24px);
    pointer-events: none;
}
.m4e-promo-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.m4e-promo-bar-icon {
    font-size: 1.5rem;
    line-height: 1;
    animation: m4e-bounce 2.4s ease-in-out infinite;
}
.m4e-promo-bar-text {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}
.m4e-promo-bar-text strong {
    font-weight: 900;
}
.m4e-promo-bar-sep {
    color: rgba(26,26,46,0.55);
    font-weight: 700;
}
.m4e-promo-bar-discount {
    background: #1a1a2e;
    color: #fbbf24;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.95rem;
}
.m4e-promo-bar-detail {
    font-size: 0.85rem;
    opacity: 0.85;
}
@keyframes m4e-bounce {
    0%, 100% { transform: translateY(0)   rotate(-6deg); }
    50%      { transform: translateY(-3px) rotate(6deg);  }
}

/* Single product page promo card */
.m4e-promo-card {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
    padding: 14px 16px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1.5px dashed #d97706;
    border-radius: 12px;
}
.m4e-promo-card-icon {
    font-size: 2rem;
    line-height: 1;
    flex-shrink: 0;
}
.m4e-promo-card-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.m4e-promo-card-body strong:first-child {
    color: #92400e;
    font-size: 1rem;
    font-weight: 800;
}
.m4e-promo-card-body span {
    color: #78350f;
    font-size: 0.85rem;
    line-height: 1.4;
}
.m4e-promo-card-body strong {
    color: #b45309;
}

/* Checkout promo notice */
.m4e-checkout-promo {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
        "icon body"
        "cta  cta";
    align-items: center;
    column-gap: 12px;
    row-gap: 10px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
}

/* Full-width banner variant (under countdown, above the columns) */
.m4e-checkout-promo-banner {
    max-width: 1100px;
    margin: 0 auto 18px;
    padding: 16px 22px;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "icon body cta";
    row-gap: 0;
    column-gap: 16px;
}
.m4e-checkout-promo-banner .m4e-checkout-promo-icon {
    font-size: 2.2rem;
}
.m4e-checkout-promo-banner .m4e-checkout-promo-body strong:first-child {
    font-size: 1.05rem;
}
.m4e-checkout-promo-banner .m4e-checkout-promo-body span {
    font-size: 0.9rem;
}
@media (max-width: 560px) {
    .m4e-checkout-promo-banner {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "icon body"
            "cta  cta";
        row-gap: 10px;
        padding: 14px 16px;
    }
    .m4e-checkout-promo-banner .m4e-checkout-promo-icon { font-size: 1.8rem; }
    .m4e-checkout-promo-banner .m4e-checkout-promo-body strong:first-child { font-size: 0.95rem; }
    .m4e-checkout-promo-banner .m4e-checkout-promo-body span { font-size: 0.82rem; }
}
.m4e-checkout-promo-icon {
    grid-area: icon;
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}
.m4e-checkout-promo-body {
    grid-area: body;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.m4e-checkout-promo-body strong:first-child {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.25;
}
.m4e-checkout-promo-body span {
    font-size: 0.82rem;
    line-height: 1.4;
}
/* Wider screens — single row when there's enough room */
@media (min-width: 480px) {
    .m4e-checkout-promo {
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "icon body cta";
        row-gap: 0;
    }
}
.m4e-checkout-promo-active {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1.5px solid #10b981;
    color: #064e3b;
}
.m4e-checkout-promo-active .m4e-checkout-promo-body strong { color: #047857; }
.m4e-checkout-promo-pending {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1.5px dashed #d97706;
    color: #78350f;
}
.m4e-checkout-promo-pending .m4e-checkout-promo-body strong { color: #92400e; }
.m4e-checkout-promo-cta {
    grid-area: cta;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    background: #1a1a2e;
    color: #fbbf24;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
    white-space: nowrap;
    justify-self: stretch;
}
@media (min-width: 480px) {
    .m4e-checkout-promo-cta { justify-self: end; }
}
.m4e-checkout-promo-cta:hover {
    background: #0f172a;
    transform: translateY(-1px);
}

/* Discount row in checkout totals */
.order-total-discount {
    color: #047857;
    font-weight: 600;
}
.order-total-discount span:last-child {
    color: #047857;
    font-weight: 800;
}

@media (max-width: 768px) {
    .m4e-promo-bar-inner { gap: 8px; flex-direction: column; padding: 0 12px; }
    .m4e-promo-bar-text { font-size: 0.82rem; gap: 6px; justify-content: center; }
    .m4e-promo-bar-discount { font-size: 0.85rem; padding: 2px 8px; }
    .m4e-promo-bar-detail { width: 100%; text-align: center; font-size: 0.78rem; }
}

/* ============================================================
   AUREUM — DARK LUXURY OVERRIDES (dark + gold)
   Image areas intentionally kept light so watch photos pop.
   ============================================================ */

/* Text/content panels -> dark surfaces (kept legible: light text on dark) */
.product-card,
.page-content-wrap,
.checkout-payment-box,
.thankyou-order-box,
.thankyou-step,
.review-card,
.woocommerce table.shop_table {
    background: var(--surface) !important;
    color: var(--text);
    border-color: var(--border);
}

.product-card {
    border: 1px solid var(--border);
}
.product-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(201,162,74,0.45);
    transform: translateY(-4px);
}
.product-card-title a { color: var(--text); }
.product-card-title a:hover { color: var(--primary); }

/* Inputs / selects / textareas -> dark fields with gold focus */
.header-search-input,
input[type="text"], input[type="email"], input[type="tel"],
input[type="search"], input[type="number"], input[type="password"],
select, textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    background: var(--surface-2) !important;
    color: var(--text) !important;
    border: 1px solid var(--border) !important;
}
input::placeholder, textarea::placeholder { color: #6f6c64 !important; }
input:focus, select:focus, textarea:focus {
    border-color: var(--primary) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(201,162,74,0.18) !important;
}

/* Category bar -> dark with subtle gold underline */
.category-bar {
    background: var(--dark-light) !important;
    border-bottom: 1px solid var(--border);
}
.category-nav a { color: var(--text-light); }
.category-nav a:hover,
.category-nav a.active { color: var(--primary); }

/* Top ticker -> charcoal+gold instead of red */
.top-ticker {
    background: linear-gradient(90deg, #0d0e13 0%, #2a2410 50%, #0d0e13 100%) !important;
    border-bottom: 1px solid rgba(201,162,74,0.30);
}
.ticker-content { color: var(--primary) !important; }

/* Exit-intent modal -> dark luxury card */
.m4e-exit-modal-card {
    background: linear-gradient(135deg, #14161d 0%, #1b1e27 100%) !important;
    color: var(--text) !important;
    border: 1px solid rgba(201,162,74,0.35);
}
.m4e-exit-title { color: var(--white); }

/* Page (legal/info) content typography on dark */
.page-content-wrap,
.page-content-wrap p,
.page-content-wrap li { color: var(--text); }
.page-content-wrap h1,
.page-content-wrap h2,
.page-content-wrap h3 { color: var(--white); }
.page-content-wrap a { color: var(--primary); }

/* WooCommerce tables / notices on dark */
.woocommerce table.shop_table td { border-color: var(--border); color: var(--text); }
.woocommerce-info, .woocommerce-message, .woocommerce-error,
.cart_totals, .woocommerce .cart-collaterals .cart_totals {
    background: var(--surface) !important;
    color: var(--text) !important;
    border-color: var(--border) !important;
}

/* Subtle gold sheen behind the hero for depth */
.home-hero { background: radial-gradient(120% 80% at 50% 0%, #16171f 0%, var(--bg) 70%); }

/* ===== Homepage category sections ===== */
.home-cat-section { padding-top: 18px; }
.home-section-head {
    display: flex; align-items: baseline; justify-content: space-between;
    gap: 16px; margin: 8px 0 22px; padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.home-section-title {
    font-size: 1.7rem; font-weight: 800; color: var(--white);
    letter-spacing: .3px;
}
.home-section-title::before {
    content: ""; display: inline-block; width: 26px; height: 2px;
    background: var(--primary); vertical-align: middle; margin-right: 12px;
}
.home-section-more {
    color: var(--primary); font-weight: 700; font-size: .95rem; white-space: nowrap;
}
.home-section-more:hover { color: var(--primary-dark); }

/* ===== WooCommerce sorting dropdown + result count (dark) ===== */
.woocommerce-ordering, .woocommerce-result-count { display: inline-block; }
.products-section .woocommerce-ordering { float: right; margin-bottom: 18px; }
.products-section .woocommerce-result-count { color: var(--text-light); margin-bottom: 18px; }
.woocommerce-ordering select.orderby {
    background: var(--surface-2); color: var(--text);
    border: 1px solid var(--border); border-radius: 8px;
    padding: 10px 14px; font-size: .95rem; cursor: pointer;
}
.woocommerce-ordering select.orderby:focus { border-color: var(--primary); outline: none; }
.page-hero + .products-section .container > .woocommerce-ordering { margin-top: 4px; }

/* ===== Vauré brand band (homepage) ===== */
.brand-band {
    background: linear-gradient(180deg, var(--bg) 0%, #0d0e13 100%);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 48px 0; text-align: center;
}
.brand-band .container { max-width: 940px; }
.brand-band-kicker {
    color: var(--primary); letter-spacing: 8px; font-weight: 700;
    font-family: Georgia, 'Times New Roman', serif; font-size: 1.05rem; margin-bottom: 12px;
}
.brand-band-title { color: var(--white); font-size: 1.95rem; font-weight: 800; margin-bottom: 14px; line-height: 1.25; }
.brand-band-text { color: var(--text-light); font-size: 1.06rem; max-width: 780px; margin: 0 auto 24px; line-height: 1.75; }
.brand-values { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 26px; }
.brand-value {
    color: var(--text); border: 1px solid var(--border); background: var(--surface);
    border-radius: 999px; padding: 9px 18px; font-size: .92rem;
}
.bv-icon { color: var(--primary); margin-right: 6px; }
.brand-band-link {
    display: inline-block; color: #15120a; font-weight: 800; letter-spacing: .3px;
    background: linear-gradient(135deg, #e7cf8f, #c9a24a); padding: 13px 30px; border-radius: 10px;
    box-shadow: 0 8px 24px rgba(201,162,74,.25);
}
.brand-band-link:hover { filter: brightness(1.06); transform: translateY(-1px); }

/* ===== Vauré story (За нас page) ===== */
.about-kicker { color: var(--primary); letter-spacing: 6px; font-weight: 700; font-family: Georgia, serif; font-size: .95rem; }
.about-headline { color: var(--white); font-size: 2rem; margin: 10px 0 18px; line-height: 1.25; }
.about-lead { font-size: 1.12rem; color: var(--text); line-height: 1.8; }
.vaure-about h3 { color: var(--primary); margin: 30px 0 14px; font-size: 1.3rem; }
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 20px 0; }
.about-value { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.about-value .av-icon { color: var(--primary); font-size: 1.5rem; display: block; margin-bottom: 8px; }
.about-value strong { color: var(--white); display: block; margin-bottom: 6px; font-size: 1.05rem; }
.about-value p { color: var(--text-light); font-size: .95rem; margin: 0; line-height: 1.6; }
.about-sign { color: var(--primary); font-style: italic; margin-top: 20px; font-size: 1.05rem; }
@media (max-width: 600px) { .about-values { grid-template-columns: 1fr; } .brand-band-title { font-size: 1.5rem; } }

/* ===== Mobile: category bar wraps so all categories are visible ===== */
@media (max-width: 768px) {
    .category-nav {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        gap: 2px 2px;
        padding: 4px 8px;
    }
    .category-nav a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* ===== Prevent horizontal overflow / sideways scroll (mobile) ===== */
html { overflow-x: hidden; overflow-x: clip; }
body { max-width: 100%; overflow-x: hidden; overflow-x: clip; }
.single-product-layout,
.single-product-gallery,
.single-product-info { min-width: 0; }
.single-product-info h1 { overflow-wrap: anywhere; word-break: break-word; }
.product-thumbnails { max-width: 100%; }
img, video, iframe, svg { max-width: 100%; }
.container { width: 100%; }

/* ===== Mobile: stack card badges (discount over rank) so they never overlap ===== */
@media (max-width: 600px) {
    .product-badge {
        top: 8px; left: 8px;
        font-size: 0.62rem; padding: 3px 7px;
    }
    .product-rank-badge {
        top: 34px !important;
        left: 8px !important;
        right: auto !important;
        font-size: 0.56rem !important;
        padding: 3px 7px 3px 5px !important;
    }
    .product-rank-badge .rank-icon { font-size: 0.68rem; }
}

/* ===== Shop top bar fix: product grid full-width below result count + sorting ===== */
.products-section .woocommerce-result-count { float: left; margin: 0 0 16px; }
.products-section .woocommerce-ordering { float: right; margin: 0 0 16px; }
.products-section .products-grid { clear: both; }
@media (max-width: 600px) {
    .products-section .woocommerce-result-count,
    .products-section .woocommerce-ordering {
        float: none !important;
        display: block;
        width: 100%;
        margin: 0 0 10px;
    }
    .products-section .woocommerce-ordering select.orderby { width: 100%; }
}

/* ===== Mobile: slightly larger product images ===== */
@media (max-width: 600px) {
    .product-card-image { padding: 0 !important; aspect-ratio: 4 / 5; }
    .products-grid .product-card-body { padding: 12px; }
}

/* ===== Mobile: result count + sorting side by side (one row) ===== */
@media (max-width: 600px) {
    .products-section .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px 10px;
    }
    .products-section .woocommerce-result-count {
        float: none !important;
        width: auto !important;
        flex: 1 1 45%;
        margin: 0 !important;
        font-size: 0.76rem;
    }
    .products-section .woocommerce-ordering {
        float: none !important;
        width: auto !important;
        margin: 0 !important;
        flex: 1 1 50%;
    }
    .products-section .woocommerce-ordering select.orderby { width: 100%; }
    .products-section .products-grid { flex: 0 0 100%; width: 100%; margin-top: 6px; }
}

/* ===== Brand kicker above product title ===== */
.product-brand {
    color: var(--primary);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* ===== Pretty product description ===== */
.single-product-desc { color: var(--text); font-size: 1rem; line-height: 1.8; }
.single-product-desc .pd-lead {
    font-size: 1.08rem;
    color: var(--text);
    margin-bottom: 22px;
    padding-left: 14px;
    border-left: 3px solid var(--primary);
}
.single-product-desc .pd-sub {
    color: var(--primary);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: .3px;
    margin: 26px 0 12px;
}
.single-product-desc .pd-list { list-style: none; margin: 0 0 8px; padding: 0; }
.single-product-desc .pd-list li {
    position: relative;
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}
.single-product-desc .pd-list li:last-child { border-bottom: none; }
.single-product-desc .pd-list li::before {
    content: "\2726"; /* ✦ */
    position: absolute; left: 2px; top: 10px;
    color: var(--primary);
    font-size: 0.9rem;
}

/* ===== Checkout order summary: dark & readable ===== */
.order-summary { background: var(--surface) !important; color: var(--text); border-color: var(--border); }
.order-summary .checkout-section-title { color: var(--white); }
.order-summary .order-product-name { color: var(--white) !important; }
.order-summary .order-product-price,
.order-summary .order-totals .order-total-row span:last-child,
.order-summary .order-total-final span { color: var(--white) !important; }
.order-summary .order-total-row span:first-child { color: var(--text-light) !important; }
.order-summary .checkout-privacy { color: var(--text-light) !important; }
.order-summary .checkout-terms label { color: var(--text) !important; }
.order-summary a { color: var(--primary); }
.order-summary .woocommerce-Price-amount { color: inherit; }
.order-product-img { background: #f3f4f6; border-radius: 8px; }

/* ===== Checkout: hide tax suffix, gold total, static quantity ===== */
.includes_tax,
.order-summary .includes_tax,
.checkout-btn-total .includes_tax { display: none !important; }
.order-summary .order-total-final span:last-child { color: var(--primary) !important; }
.order-summary .order-total-final span:first-child { color: var(--white) !important; }
.order-product-price { color: var(--white) !important; }
.order-product-price del { color: var(--text-light) !important; opacity: .7; }
.order-product-price ins { color: var(--primary) !important; text-decoration: none; }
.order-qty-static {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.82rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 4px 10px;
}

/* ===== Bigger order item image + remove button ===== */
.order-product-img { width: 84px !important; height: 84px !important; }
.order-product-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.order-product-remove {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ef6a6a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.order-product-remove:hover { color: #ef4444; text-decoration: underline; }

/* ===== Tom Select (searchable city/office dropdowns) — dark theme ===== */
.ts-wrapper { margin: 0; }
.ts-wrapper .ts-control {
    background: var(--surface-2) !important;
    border: 1px solid var(--border) !important;
    border-radius: 8px !important;
    color: var(--text) !important;
    padding: 10px 14px !important;
    box-shadow: none !important;
    min-height: 44px;
}
.ts-wrapper.focus .ts-control {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(201,162,74,0.18) !important;
}
.ts-control input, .ts-wrapper .ts-control input::placeholder { color: var(--text) !important; }
.ts-wrapper .ts-control > .item { color: var(--text) !important; }
.ts-wrapper.disabled .ts-control { opacity: 0.55; }
.ts-dropdown {
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: 10px !important;
    box-shadow: var(--shadow-hover) !important;
    margin-top: 4px;
    color: var(--text);
}
.ts-dropdown .ts-dropdown-content { max-height: 280px; }
.ts-dropdown .option {
    padding: 10px 14px !important;
    color: var(--text) !important;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.ts-dropdown .option:hover,
.ts-dropdown .active {
    background: rgba(201,162,74,0.15) !important;
    color: var(--primary) !important;
}
.ts-dropdown .option.selected { background: var(--surface-2) !important; }
.ts-dropdown .no-results { padding: 12px 14px; color: var(--text-light); }
.ts-wrapper .ts-control:after { border-color: var(--primary) transparent transparent !important; }

/* ===== Facebook link in footer ===== */
.footer-social-fb { margin-top: 10px; display: flex; }
.footer-fb-icon {
    background: #1877f2;
    color: #fff !important;
    font-weight: 800;
    font-family: Georgia, serif;
    border-radius: 8px;
    width: 34px; height: 34px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
}

/* ===== Breadcrumbs ===== */
.vaure-breadcrumbs { padding: 18px 0 0; font-size: 0.85rem; color: var(--text-light); }
.vaure-breadcrumbs a { color: var(--text-light); }
.vaure-breadcrumbs a:hover { color: var(--primary); }
.vaure-breadcrumbs .bc-sep { margin: 0 8px; color: var(--primary); }
.vaure-breadcrumbs .bc-current { color: var(--text); }

/* ===== Contact form (dark + gold) ===== */
.vaure-cf { max-width: 560px; margin: 24px auto 0; text-align: left; }
.vaure-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vaure-cf-field { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.vaure-cf-field label { font-size: 0.85rem; color: var(--text-light); font-weight: 600; }
.vaure-cf-field input, .vaure-cf-field textarea {
    background: var(--surface-2); color: var(--text);
    border: 1px solid var(--border); border-radius: 8px; padding: 11px 14px;
}
.vaure-cf-submit {
    background: linear-gradient(135deg, #e7cf8f, #c9a24a); color: #15120a;
    font-weight: 800; padding: 13px 28px; border-radius: 10px; width: 100%;
}
.vaure-cf-submit:hover { filter: brightness(1.06); }
.vaure-cf-ok { color: #6fce8f; font-weight: 700; text-align: center; padding: 16px; }
.vaure-cf-err { color: #ef6a6a; font-weight: 600; text-align: center; }
@media (max-width: 600px) { .vaure-cf-row { grid-template-columns: 1fr; } }

/* ===== Thank-you page: dark & readable ===== */
.thankyou-call-notice {
    background: var(--surface) !important;
    border: 1px solid rgba(201,162,74,0.4) !important;
}
.thankyou-call-notice strong { color: var(--primary) !important; }
.thankyou-call-notice p { color: var(--text) !important; }
.thankyou-order-header {
    background: var(--surface-2) !important;
    color: var(--white) !important;
    border-bottom: 1px solid var(--border) !important;
}
.thankyou-detail-value { color: var(--white) !important; }
.thankyou-detail-label { color: var(--text-light) !important; }
.thankyou-detail-item { border-color: var(--border) !important; }
.thankyou-details { border-color: var(--border) !important; }
.thankyou-product-name, .thankyou-product-name a { color: var(--white) !important; }
.thankyou-product-price { color: var(--primary) !important; }
.thankyou-product-qty { color: var(--text-light) !important; }
.thankyou-product-row { border-color: var(--border) !important; }
.thankyou-total { color: var(--primary) !important; }
.thankyou-step strong { color: var(--white) !important; }
.thankyou-step span { color: var(--text-light) !important; }
.thankyou-step { border: 1px solid var(--border); }
.thankyou-status { background: rgba(201,162,74,0.15) !important; color: var(--primary) !important; }

/* ===== Thank-you: по-големи снимки на продуктите ===== */
.thankyou-product-img { width: 96px !important; height: 96px !important; border-radius: 10px !important; }
.thankyou-product-row { align-items: center; gap: 16px; padding: 14px 0 !important; }
.thankyou-product-name { font-size: 0.95rem !important; }

/* ===== Checkout: видим ред за отстъпката ===== */
.order-total-discount span:first-child { color: #6fce8f !important; font-weight: 600; font-size: 0.85rem; }
.order-total-discount span:last-child { color: #6fce8f !important; font-weight: 800; white-space: nowrap; }

/* ===== Checkout: промо цена на самия продукт ===== */
.order-product-price.promo-applied { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.order-product-price.promo-applied del { color: var(--text-light) !important; font-size: 0.8rem; opacity: .75; }
.order-product-price.promo-applied .promo-new-price { color: #6fce8f !important; font-weight: 800; font-size: 1rem; }
.order-product-price.promo-applied .promo-item-tag {
    background: rgba(111,206,143,0.14);
    color: #6fce8f;
    font-size: 0.66rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    white-space: nowrap;
}

/* ===== Изчерпан продукт: без цени/промо ===== */
.oos-note {
    color: var(--text-light);
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid #ef6a6a;
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.price-oos { color: var(--text-light); font-weight: 700; font-size: 0.95rem; }

/* Забележка при модел, който се доставя по заявка (не е на склад) */
.thankyou-delay-note {
    margin-top: 10px !important;
    padding: 10px 14px;
    background: rgba(212, 175, 55, .10);
    border-left: 3px solid #d4af37;
    border-radius: 6px;
    color: #e8d9a0 !important;
    font-size: 14px;
    line-height: 1.6;
}

/* Брояч на касата — с надписи под числата */
.checkout-cd-timer { display:inline-flex; align-items:flex-start; gap:4px; }
.checkout-cd-cell { display:inline-flex; flex-direction:column; align-items:center; line-height:1.1; }
.checkout-cd-lbl { font-size:9px; letter-spacing:.5px; text-transform:uppercase; opacity:.65; margin-top:2px; }
.checkout-cd-sep { font-weight:700; opacity:.5; padding-top:2px; }

/* Подсказка под полетата на касата */
.checkout-field .field-hint {
    display:block; margin-top:6px; font-size:12px; line-height:1.4;
    color:#9a9aa8; font-style:normal;
}

/* Значка „реални продажби" — горе вдясно върху снимката */
.single-product-image { position: relative; }
.vaure-sales-badge {
    position:absolute; top:14px; right:14px; z-index:5;
    background:rgba(20,18,24,.88); color:#f3d47a;
    border:1px solid rgba(201,162,39,.55); border-radius:999px;
    padding:7px 14px; font:600 13px/1 Arial,sans-serif;
    letter-spacing:.2px; backdrop-filter:blur(4px); white-space:nowrap;
    box-shadow:0 4px 14px rgba(0,0,0,.3);
}
@media (max-width:600px){ .vaure-sales-badge{ top:10px; right:10px; padding:6px 11px; font-size:12px; } }

/* Най-ниска цена за периода */
.price-lowest {
    margin:8px 0 0; font:400 13px/1.5 Arial,sans-serif; color:#9a9aa8;
}
.price-lowest strong { color:#c9c9d4; font-weight:600; }

/* Значка „най-добра цена 60 дни" — при другите две над цената */
.price-lowest-badge {
    display:inline-flex; align-items:center; gap:6px;
    background:rgba(46,160,67,.12); color:#7ee2a8;
    border:1px solid rgba(46,160,67,.4); border-radius:999px;
    padding:7px 14px; font:500 13px/1 Arial,sans-serif; white-space:nowrap;
}
.price-lowest-badge strong { color:#a5f3c4; font-weight:700; }

/* Секция отзиви */
.single-product-reviews { max-width:820px; margin:40px auto 10px; padding:0 20px; }
.single-product-reviews h2 { font:700 24px/1.3 Georgia,serif; color:#f0f0f4; margin:0 0 6px; }
.single-product-reviews .reviews-count { color:#8a8a98; font-size:18px; }
.reviews-avg { display:flex; align-items:center; gap:8px; color:#c9c9d4; font-size:14px; margin:0 0 18px; }
.stars-static { --rating:0; display:inline-block; font-size:16px; line-height:1; letter-spacing:2px;
    background:linear-gradient(90deg,#c9a227 calc(var(--rating)/5*100%),#3a3a44 calc(var(--rating)/5*100%));
    -webkit-background-clip:text; background-clip:text; color:transparent; }
.stars-static::before { content:"\2605\2605\2605\2605\2605"; }
.reviews-list { list-style:none; margin:0; padding:0; }
.review-item { border-bottom:1px solid #232330; padding:16px 0; }
.review-head { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.review-author { color:#e8e8ee; font:600 14px/1 Arial,sans-serif; }
.review-date { color:#6f6f7e; font-size:12px; margin-left:auto; }
.review-text { color:#b9b9c6; font:400 14px/1.6 Arial,sans-serif; margin:8px 0 0; }
.reviews-empty { color:#8a8a98; font-size:14px; }
.review-form-wrap { margin-top:28px; background:#17161c; border:1px solid #26252e; border-radius:12px; padding:22px; }
.review-form-wrap h3 { font:700 18px/1.3 Georgia,serif; color:#f0f0f4; margin:0 0 14px; }
.review-form-wrap label { display:block; color:#c9c9d4; font:600 13px/1 Arial,sans-serif; margin:0 0 6px; }
.review-form-wrap .required { color:#e0655f; }
.review-form-wrap input, .review-form-wrap select, .review-form-wrap textarea {
    width:100%; background:#0f0e13; color:#e8e8ee; border:1px solid #2e2d38;
    border-radius:8px; padding:10px 12px; font:400 14px/1.4 Arial,sans-serif; margin-bottom:14px; }
.review-form-wrap input:focus, .review-form-wrap select:focus, .review-form-wrap textarea:focus {
    outline:none; border-color:#c9a227; }
.review-submit-btn { background:#c9a227; color:#141317; border:none; border-radius:999px;
    padding:12px 28px; font:700 14px/1 Arial,sans-serif; cursor:pointer; }
.review-submit-btn:hover { background:#dbb53a; }
@media (max-width:600px){ .price-lowest-badge{ white-space:normal; line-height:1.4; } }

/* Страници на отзивите */
.reviews-pager { display:flex; justify-content:center; gap:8px; margin:20px 0 4px; flex-wrap:wrap; }
.rp-btn { min-width:38px; height:38px; border-radius:10px; border:1px solid #2e2d38;
    background:#17161c; color:#c9c9d4; font:600 14px/1 Arial,sans-serif; cursor:pointer; }
.rp-btn:hover:not(:disabled) { border-color:#c9a227; color:#f3d47a; }
.rp-btn.active { background:#c9a227; border-color:#c9a227; color:#141317; }
.rp-btn:disabled { opacity:.35; cursor:default; }

/* Рейтинг под цената + бутон към отзивите */
html { scroll-behavior: smooth; }
.price-reviews-row { display:flex; align-items:center; gap:10px; margin:12px 0 0; flex-wrap:wrap; }
.price-reviews-row .stars-static { font-size:17px; }
.price-reviews-info { color:#c9c9d4; font:400 14px/1 Arial,sans-serif; }
.price-reviews-info strong { color:#f0f0f4; }
.price-reviews-btn { display:inline-block; padding:8px 16px; border-radius:999px;
    border:1px solid #c9a227; color:#f3d47a; font:600 13px/1 Arial,sans-serif;
    text-decoration:none; white-space:nowrap; }
.price-reviews-btn:hover { background:#c9a227; color:#141317; }

/* Рейтингът плътно до цената, отдалечен от таймера на промоцията */
.single-product-price { margin-bottom: 4px; }
.price-reviews-row { margin: 4px 0 0; }
.promo-countdown { margin-top: 26px; }

/* Премиум визия на рейтинга под цената */
.price-reviews-row {
    display:inline-flex; align-items:center; gap:14px;
    margin:8px 0 0; padding:11px 16px;
    background:linear-gradient(135deg, rgba(201,162,39,.12), rgba(201,162,39,.03) 65%);
    border:1px solid rgba(201,162,39,.38);
    border-radius:14px;
    box-shadow:0 3px 14px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.05);
}
.price-reviews-row .stars-static {
    font-size:18px;
    filter:drop-shadow(0 0 7px rgba(201,162,39,.5));
}
.price-reviews-info {
    display:flex; align-items:baseline; gap:8px;
    border-left:1px solid rgba(201,162,39,.28); padding-left:14px;
    color:#a8a8b6; font:400 13px/1.2 Arial,sans-serif; white-space:nowrap;
}
.price-reviews-info strong {
    font:700 21px/1 Georgia,serif; color:#f3d47a;
    text-shadow:0 0 14px rgba(201,162,39,.35);
}
.price-reviews-btn {
    background:linear-gradient(135deg,#e3bc45,#b8901f);
    color:#141317 !important; border:none;
    padding:10px 20px; border-radius:999px;
    font:700 13px/1 Arial,sans-serif; letter-spacing:.4px;
    box-shadow:0 3px 12px rgba(201,162,39,.4);
    transition:transform .15s ease, box-shadow .15s ease;
}
.price-reviews-btn:hover {
    background:linear-gradient(135deg,#f0cc55,#c9a227);
    transform:translateY(-1px);
    box-shadow:0 6px 18px rgba(201,162,39,.55);
}
@media (max-width:600px){
    .price-reviews-row { display:flex; flex-wrap:wrap; gap:10px; }
    .price-reviews-info { border-left:none; padding-left:0; }
    .price-reviews-btn { flex:1; text-align:center; }
}

/* Златни звезди в формата за отзив (замяна на грозните текстови линкове на WooCommerce) */
.review-form-wrap .comment-form-rating .stars { display:inline-block; margin:2px 0 12px; line-height:1; }
.review-form-wrap .comment-form-rating .stars span { display:inline-flex; }
.review-form-wrap .comment-form-rating .stars a {
    position:relative; display:inline-block; width:30px; height:30px;
    text-indent:-9999px; overflow:hidden; text-decoration:none; border:none;
}
.review-form-wrap .comment-form-rating .stars a::after {
    content:"\2605"; position:absolute; left:0; top:0; text-indent:0;
    font-size:27px; line-height:30px; color:#3a3a44; transition:color .12s, text-shadow .12s;
}
.review-form-wrap .comment-form-rating .stars:hover a::after { color:#c9a227; text-shadow:0 0 8px rgba(201,162,39,.4); }
.review-form-wrap .comment-form-rating .stars a:hover ~ a::after { color:#3a3a44; text-shadow:none; }
.review-form-wrap .comment-form-rating .stars.selected a::after { color:#c9a227; }
.review-form-wrap .comment-form-rating .stars.selected a.active ~ a::after { color:#3a3a44; }
.review-form-wrap .must-log-in { color:#c9c9d4; font:400 14px/1.6 Arial,sans-serif; margin:0; }
.review-form-wrap .must-log-in a { color:#f3d47a; font-weight:700; }

/* Подаръчна кутия на касата */
.giftbox-bump {
    display:flex; align-items:center; gap:12px; cursor:pointer;
    margin:16px 0; padding:14px 16px; border-radius:14px;
    background:linear-gradient(135deg, rgba(201,162,39,.12), rgba(201,162,39,.03) 65%);
    border:1px dashed rgba(201,162,39,.5);
    transition:border-color .15s, background .15s;
}
.giftbox-bump:hover { border-color:#c9a227; }
.giftbox-bump.checked { border-style:solid; border-color:#c9a227; background:linear-gradient(135deg, rgba(201,162,39,.2), rgba(201,162,39,.06) 65%); }
.giftbox-bump input { width:20px; height:20px; accent-color:#c9a227; flex:none; cursor:pointer; }
.giftbox-icon { font-size:26px; flex:none; }
.giftbox-text { flex:1; min-width:0; }
.giftbox-text strong { display:block; color:#f0f0f4; font:700 14px/1.3 Arial,sans-serif; }
.giftbox-text small { display:block; color:#9a9aa8; font:400 12px/1.4 Arial,sans-serif; margin-top:3px; }
.giftbox-price { flex:none; color:#f3d47a; font:700 16px/1 Georgia,serif; }

/* „Подреди по" — в стила на сайта, не системното синьо */
.woocommerce-ordering select,
select.orderby {
    appearance:none; -webkit-appearance:none; -moz-appearance:none;
    padding:10px 40px 10px 15px; border-radius:12px;
    border:1px solid #c9a227; background-color:#17161c; color:#f0f0f4;
    font:600 13.5px/1.2 Arial,sans-serif; cursor:pointer;
    background-image:url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=http://www.w3.org/2000/svg width=12 height=8%3E%3Cpath d=M1 1l5 5 5-5 stroke=%23c9a227 stroke-width=2 fill=none/%3E%3C/svg%3E");
    background-repeat:no-repeat; background-position:right 14px center;
    transition:box-shadow .15s, border-color .15s;
}
.woocommerce-ordering select:hover,
select.orderby:hover { border-color:#f3d47a; }
.woocommerce-ordering select:focus,
select.orderby:focus { outline:none; box-shadow:0 0 0 3px rgba(201,162,39,.25); }
.woocommerce-ordering select option,
select.orderby option {
    background:#17161c; color:#e8e8ee; font-weight:400;
}

/* Броят резултати вляво, „Подреди по" вдясно — на ВСЯКА продуктова страница,
   вкл. страниците на марките (те не са в .products-section) */
.woocommerce-result-count { float:left; margin:0 0 16px; }
.woocommerce-ordering { float:right; margin:0 0 16px; }
ul.products, .products-grid { clear:both; }
@media (max-width:600px) {
    .woocommerce-result-count, .woocommerce-ordering { float:none; display:block; width:100%; }
    .woocommerce-ordering select { width:100%; }
}

/* Картичка: промо цената голяма и водеща, редовната по-малка, марката вдясно */
.product-card-price .price-current {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}
.product-card-price .price-old {
    font-size: 1.05rem;
    opacity: .75;
}
.card-brand {
    margin-left: auto;
    font: 700 11px/1 Georgia, "Times New Roman", serif;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #c9a227;
    opacity: .8;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .product-card-price .price-current { font-size: 1.45rem; }
    .product-card-price .price-old { font-size: .95rem; }
    .card-brand { font-size: 9.5px; letter-spacing: 1.1px; }
}

/* Цените в картичката никога не се чупят на два реда */
.product-card-price .price-current,
.product-card-price .price-old { white-space: nowrap; }

/* Телефон: марката на собствен ред НАД цената, цените едри и цели */
@media (max-width: 600px) {
    .product-card-price { flex-wrap: wrap; row-gap: 3px; }
    .card-brand {
        flex-basis: 100%;
        order: -1;
        margin-left: 0;
        font-size: 9px;
        letter-spacing: 1.4px;
        opacity: .65;
    }
    .product-card-price .price-current { font-size: 1.4rem; }
    .product-card-price .price-old { font-size: .92rem; }
}

/* Мобилно: заглавията на секциите на началната — компактни, на един-два реда */
@media (max-width: 600px) {
    .home-section-title {
        font-size: 1.15rem !important;
        line-height: 1.3;
        letter-spacing: 0;
    }
    .home-section-more { font-size: 12px; white-space: nowrap; }
}

/* Мобилно: значките на ЕДИН ред — отстъпката вляво, ХИТ/ТОП вдясно */
@media (max-width: 600px) {
    .product-rank-badge {
        top: 8px !important;
        left: auto !important;
        right: 8px !important;
    }
}

/* Кога точно изтича промоцията — под заглавието на таймера */
.promo-countdown-until {
    text-align:center; margin:2px 0 10px;
    font:600 12.5px/1.4 Arial,sans-serif; color:#d8c98e; letter-spacing:.3px;
}
