/* ==========================================================================
   Shova Theme — Main Stylesheet
   ========================================================================== */

:root {
    --color-primary: #1a1a2e;
    --color-accent: #e94560;
    --color-accent-hover: #c73652;
    --color-dark: #0f3460;
    --color-light: #f8f8f8;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-muted: #777777;
    --color-border: #e5e5e5;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.15);
    --transition: all 0.25s ease;
    --container: 1280px;
    --container-padding: 1.5rem;
}

/* Reset & Base
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

input, button, select, textarea {
    font-family: var(--font-primary);
}

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

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

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

ul, ol {
    list-style: none;
}

/* Layout
   ========================================================================== */

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

.site-main {
    min-height: 60vh;
    padding: 2rem 0;
}

.site-main.front-page {
    padding: 0;
}

/* Announcement Bar
   ========================================================================== */

.shova-announcement {
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem 0;
}

.shova-announcement__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.shova-announcement__close {
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.125rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}

.shova-announcement__close:hover {
    opacity: 1;
}

/* Header / Navigation
   ========================================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow);
}

.main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 2rem;
}

/* Logo */
.shova-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.shova-logo:hover {
    color: inherit;
}

.shova-logo svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.shova-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.shova-logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.3px;
    line-height: 1;
}

.shova-logo--light .shova-logo-name {
    color: #ffffff;
}

.shova-logo-tagline {
    font-size: 9px;
    font-weight: 500;
    color: var(--color-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
    font-family: 'Poppins', sans-serif;
}

.shova-logo--light .shova-logo-tagline {
    color: rgba(255,255,255,0.5);
}

.footer-col--about .shova-logo {
    margin-bottom: 0.75rem;
}

.main-nav__brand .site-title {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.main-nav__brand .custom-logo {
    max-height: 40px;
    width: auto;
}

.main-nav__menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    padding: 0.25rem 0;
    position: relative;
    text-decoration: none;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.25s ease;
}

.nav-menu li a:hover::after,
.nav-menu li.current-menu-item > a::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
    color: var(--color-accent);
}

.main-nav__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.nav-cart,
.nav-account {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-primary);
    transition: var(--transition);
}

.nav-cart:hover,
.nav-account:hover {
    color: var(--color-accent);
    background: var(--color-light);
}

.nav-cart__count {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-white);
}

/* Search Toggle */
.nav-search-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
    transition: var(--transition);
}

.nav-search-toggle:hover {
    color: var(--color-accent);
    background: var(--color-light);
}

.nav-search-expand {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    padding: 0.75rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 100;
}

.nav-search-expand.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--color-white);
    padding: 1.5rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.is-open .mobile-nav__panel {
    transform: translateX(0);
}

.mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav__title {
    font-size: 1.125rem;
    font-weight: 600;
}

.mobile-nav__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

.mobile-menu li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu li a {
    display: block;
    padding: 0.75rem 0;
    font-weight: 500;
}

/* Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: var(--color-white);
}

.btn--outline {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn--outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn--white {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn--white:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1.0625rem;
}

/* Homepage — Hero
   ========================================================================== */

.shova-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    min-height: 520px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 80px 60px;
}

.shova-hero-badge { display: inline-block; background: rgba(233,69,96,0.15); color: var(--color-accent); font-size: 11px; font-weight: 600; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(233,69,96,0.3); margin-bottom: 16px; letter-spacing: 0.5px; }
.shova-hero h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.shova-hero-sub { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.7; max-width: 480px; }
.shova-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.shova-hero-stats { display: flex; gap: 32px; }
.shova-hero-stat-val { font-size: 20px; font-weight: 700; color: white; line-height: 1; }
.shova-hero-stat-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; }
.shova-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shova-hero__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
    max-width: 460px;
    width: 100%;
}

.shova-hero__img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.shova-hero__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,26,46,0.1) 0%, transparent 35%, rgba(26,26,46,0.5) 100%);
    pointer-events: none;
}

.shova-hero__img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: #fff;
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 2;
}

.shova-hero__img-badge a {
    color: inherit;
    text-decoration: none;
}

/* Keep the full-bleed background */
.front-page .shova-hero { max-width: 100%; }

/* Homepage — Section Headers
   ========================================================================== */

.shova-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.shova-section-title { font-size: 24px; font-weight: 700; color: var(--color-primary); letter-spacing: -0.3px; }
.shova-section-link { font-size: 13px; color: var(--color-accent); text-decoration: none; font-weight: 500; }

/* Legacy section headers (used by other pages) */
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.section-title { font-size: 1.75rem; font-weight: 700; color: var(--color-primary); }
.section-link { font-weight: 600; color: var(--color-accent); }

/* Homepage — Categories
   ========================================================================== */

.shova-categories { padding: 60px var(--container-padding); max-width: var(--container); margin: 0 auto; }
.shova-cats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.shova-cat-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; color: inherit; transition: var(--transition); }
.shova-cat-card:hover { border-color: var(--color-accent); transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; }
.shova-cat-card__img { height: 140px; overflow: hidden; }
.shova-cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.shova-cat-card:hover .shova-cat-card__img img { transform: scale(1.05); }
.shova-cat-card__info { padding: 14px 16px; text-align: center; }
.shova-cat-card__info h3 { font-size: 13px; font-weight: 600; color: var(--color-primary); margin-bottom: 3px; }
.shova-cat-card__info span { font-size: 11px; color: var(--color-muted); }

/* Homepage — Featured Products
   ========================================================================== */

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

/* Homepage — Promo Banner
   ========================================================================== */

.shova-promo { max-width: calc(var(--container) - 2 * var(--container-padding)); margin: 0 auto 60px; background: linear-gradient(135deg, #0f3460, #1a1a2e); border-radius: var(--radius-lg); padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.shova-promo-tag { font-size: 11px; color: var(--color-accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.shova-promo h2 { font-size: 32px; font-weight: 800; color: white; margin-bottom: 10px; line-height: 1.2; }
.shova-promo h2 span { color: var(--color-accent); }
.shova-promo-sub { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.shova-promo-stats { display: flex; gap: 12px; }
.shova-promo-stat { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px 20px; text-align: center; }
.shova-promo-stat-val { font-size: 24px; font-weight: 800; color: var(--color-accent); }
.shova-promo-stat-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 3px; }

/* Homepage — Testimonials
   ========================================================================== */

.shova-testimonials { padding: 0 var(--container-padding) 60px; max-width: var(--container); margin: 0 auto; }
.shova-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shova-testi-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px; }
.shova-testi-stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.shova-testi-text { font-size: 14px; color: var(--color-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.shova-testi-author { display: flex; align-items: center; gap: 10px; }
.shova-testi-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: white; flex-shrink: 0; }
.shova-testi-name { font-size: 13px; font-weight: 600; color: var(--color-primary); }
.shova-testi-role { font-size: 11px; color: var(--color-muted); }

/* Homepage — Newsletter
   ========================================================================== */

.shova-newsletter { max-width: calc(var(--container) - 2 * var(--container-padding)); margin: 0 auto 60px; background: white; border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.shova-newsletter h2 { font-size: 28px; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.shova-newsletter p { font-size: 15px; color: var(--color-muted); margin-bottom: 24px; }
.shova-newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.shova-newsletter-input { flex: 1; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 12px 16px; font-size: 14px; color: var(--color-text); }
.shova-newsletter-input:focus { outline: none; border-color: var(--color-accent); }
.shova-newsletter-btn { background: var(--color-accent); color: white; border: none; border-radius: var(--radius); padding: 12px 24px; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: var(--transition); }
.shova-newsletter-btn:hover { background: var(--color-accent-hover); }

/* Products Grid
   ========================================================================== */

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

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.product-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: #f5f5f5;
    min-height: 240px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.product-card__badge--sale {
    background: var(--color-accent);
    color: var(--color-white);
}

.product-card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.04), transparent);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-card__actions {
    opacity: 1;
    transform: translateY(0);
}

.product-card__actions .button,
.product-card__actions .add_to_cart_button {
    width: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    display: block;
}

.product-card__actions .button:hover,
.product-card__actions .add_to_cart_button:hover {
    background: var(--color-accent);
}

.product-card__info {
    padding: 1rem;
}

.product-card__category {
    font-size: 0.6875rem;
    color: var(--color-muted);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-card__category a {
    color: var(--color-muted);
}

.product-card__title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-card__title a {
    color: var(--color-text);
}

.product-card__title a:hover {
    color: var(--color-accent);
}

.product-card__price {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
}

.product-card__price del {
    color: var(--color-muted);
    font-weight: 400;
    font-size: 13px;
}

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

.product-card__rating {
    margin-top: 0.375rem;
}

/* Categories Grid
   ========================================================================== */

.categories-section {
    padding: 3rem 0;
    background: var(--color-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    display: block;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.category-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
    color: inherit;
}

.category-card__image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-light);
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    opacity: 0.15;
}

.category-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.category-card__count {
    font-size: 0.8125rem;
    color: var(--color-muted);
}

/* Featured Products
   ========================================================================== */

.featured-products {
    padding: 3rem 0;
}

/* Banner / CTA
   ========================================================================== */

.banner {
    padding: 3rem 0;
}

.banner__inner {
    background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
    border-radius: var(--radius-lg);
    padding: 3.5rem;
    text-align: center;
    color: var(--color-white);
}

.banner__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.banner__text {
    opacity: 0.85;
    margin-bottom: 1.5rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Shop Layout
   ========================================================================== */

.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
}

.product-filters__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.product-filters__section h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.product-categories li {
    padding: 0.375rem 0;
    border-bottom: 1px solid var(--color-border);
}

.product-categories li a {
    font-size: 0.875rem;
    color: var(--color-text);
}

.product-categories li a:hover {
    color: var(--color-accent);
}

/* Blog — Magazine Layout
   ========================================================================== */

.blog-header { padding: 32px var(--container-padding) 24px; border-bottom: 1px solid var(--color-border); max-width: var(--container); margin: 0 auto; }
.blog-header h1 { font-size: 1.75rem; font-weight: 700; color: var(--color-primary); }
.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.blog-cat-btn { font-size: 11px; font-weight: 500; padding: 5px 14px; border-radius: 20px; border: 1px solid var(--color-border); color: var(--color-muted); text-decoration: none; transition: var(--transition); }
.blog-cat-btn:hover, .blog-cat-btn.active { background: var(--color-accent); color: white; border-color: var(--color-accent); }

.featured-post { margin: 24px auto; max-width: var(--container); padding: 0 var(--container-padding); }
.featured-post-inner { display: grid; grid-template-columns: 1.4fr 1fr; border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.featured-img { min-height: 280px; background: linear-gradient(135deg, #1a1a2e, #0f3460); position: relative; display: flex; align-items: center; justify-content: center; }
.featured-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.featured-img-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.featured-label { position: absolute; top: 16px; left: 16px; background: var(--color-accent); color: white; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 4px; z-index: 1; text-transform: uppercase; letter-spacing: 0.5px; }
.featured-content { padding: 32px; display: flex; flex-direction: column; justify-content: center; background: var(--color-white); }
.featured-cat { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.featured-title { font-size: 20px; font-weight: 700; color: var(--color-primary); line-height: 1.35; margin-bottom: 10px; }
.featured-title a { color: inherit; text-decoration: none; }
.featured-excerpt { font-size: 13px; color: var(--color-muted); line-height: 1.7; margin-bottom: 16px; }
.featured-read-more { font-size: 13px; font-weight: 600; color: var(--color-accent); text-decoration: none; }

.blog-body { display: grid; grid-template-columns: 1fr 280px; gap: 24px; max-width: var(--container); margin: 0 auto; padding: 24px var(--container-padding) 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-content: start; }

.post-card { border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--color-white); transition: var(--transition); }
.post-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.post-card-img { height: 160px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; }
.post-card-cat { position: absolute; top: 10px; left: 10px; font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
.post-card-body { padding: 14px; }
.post-card-title { font-size: 14px; font-weight: 600; color: var(--color-primary); line-height: 1.4; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card-title a { color: inherit; text-decoration: none; }
.post-card-excerpt { font-size: 12px; color: var(--color-muted); line-height: 1.6; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.post-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--color-border); }
.post-author { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--color-muted); }
.post-author-avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--color-primary); color: white; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 600; flex-shrink: 0; }
.post-read-time { font-size: 10px; color: var(--color-muted); background: var(--color-light); padding: 2px 8px; border-radius: 10px; }

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-widget { border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 16px; background: var(--color-white); }
.sidebar-widget-title { font-size: 13px; font-weight: 600; color: var(--color-primary); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--color-border); }
.sidebar-recent-post { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; text-decoration: none; color: inherit; }
.sidebar-recent-img { width: 44px; height: 44px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--color-light); }
.sidebar-recent-title { font-size: 12px; font-weight: 500; color: var(--color-primary); line-height: 1.4; margin-bottom: 2px; }
.sidebar-recent-date { font-size: 10px; color: var(--color-muted); }
.sidebar-cat-item { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--color-border); font-size: 12px; color: var(--color-text); text-decoration: none; }
.sidebar-cat-item:last-child { border-bottom: none; }
.sidebar-cat-count { background: var(--color-light); color: var(--color-muted); font-size: 10px; padding: 1px 7px; border-radius: 10px; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sidebar-tag { font-size: 10px; padding: 3px 10px; border-radius: 4px; border: 1px solid var(--color-border); color: var(--color-muted); text-decoration: none; transition: var(--transition); }
.sidebar-tag:hover { background: var(--color-accent); color: white; border-color: var(--color-accent); }

/* Single Post
   ========================================================================== */

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
}

.entry-header {
    margin-bottom: 1.5rem;
}

.entry-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.25;
}

.entry-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.entry-thumbnail {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 1.5rem 0 0.75rem;
    color: var(--color-primary);
}

.entry-content p {
    margin-bottom: 1rem;
}

.entry-content img {
    border-radius: var(--radius);
    margin: 1rem 0;
}

/* Archive / Search
   ========================================================================== */

.archive-header,
.search-header {
    margin-bottom: 2rem;
}

.archive-title,
.search-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* 404
   ========================================================================== */

.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-404__title {
    font-size: 6rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-404__message {
    font-size: 1.125rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
}

.error-404__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.error-404 .search-form {
    max-width: 400px;
    margin: 0 auto;
}

/* Sidebar
   ========================================================================== */

.sidebar .widget {
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent);
}

/* Comments
   ========================================================================== */

.comments-area {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.comments-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.comment-list .comment {
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
}

/* Footer
   ========================================================================== */

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 3.5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-grid:has(.footer-col--widgets) {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

.footer-brand {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.footer-description {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-col__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.footer-menu li {
    margin-bottom: 0.625rem;
}

.footer-menu li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s ease;
}

.footer-menu li a:hover {
    color: var(--color-white);
}

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

/* Pagination
   ========================================================================== */

.nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-weight: 500;
    border: 1px solid var(--color-border);
}

.nav-links .page-numbers.current {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

/* Search Form
   ========================================================================== */

.search-form {
    display: flex;
    gap: 0;
}

.search-form .search-field {
    flex: 1;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 100px 0 0 100px;
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    outline: none;
    transition: border-color 0.2s ease;
    background: var(--color-light);
}

.search-form .search-field:focus {
    border-color: var(--color-accent);
    background: var(--color-white);
}

.search-form .search-submit {
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 0 100px 100px 0;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: var(--transition);
}

.search-form .search-submit:hover {
    background: var(--color-accent-hover);
}

/* Breadcrumb
   ========================================================================== */

.breadcrumb {
    font-size: 0.8125rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.breadcrumb-sep {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* No Results
   ========================================================================== */

.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-primary);
}

.no-results p {
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.no-results .search-form {
    max-width: 400px;
    margin: 0 auto;
}

/* Elementor Compatibility
   ========================================================================== */

.elementor-section-boxed > .elementor-container {
    max-width: var(--container);
}

.elementor-widget-wrap {
    margin: 0;
    padding: 0;
}

.shova-full-width {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

/* Shop Filter Sidebar
   ========================================================================== */

.shova-shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
}

.shova-shop-sidebar {
    position: relative;
    width: 260px;
    flex-shrink: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}

.shova-filters {
    position: sticky;
    top: 80px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 16px;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.shova-filters::-webkit-scrollbar {
    width: 4px;
}

.shova-filters::-webkit-scrollbar-track {
    background: transparent;
}

.shova-filters::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 4px;
}

.shova-filters::-webkit-scrollbar-thumb:hover {
    background: var(--color-muted);
}

.shova-filters__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--color-primary);
}

.shova-filters__header h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-primary);
}

.shova-filters__clear {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
}

.shova-filters__section {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.shova-filters__section:last-child {
    border-bottom: none;
}

.shova-filters__section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.shova-filters__checkboxes {
    max-height: 200px;
    overflow-y: auto;
}

.shova-filters__checkboxes li {
    margin-bottom: 0.375rem;
}

.shova-filters__checkboxes label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    cursor: pointer;
    color: var(--color-text);
}

.shova-filters__checkboxes input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-accent);
    flex-shrink: 0;
}

.shova-filters__count {
    color: var(--color-muted);
    font-size: 0.75rem;
    margin-left: auto;
}

.shova-filters__price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.shova-filters__price-inputs input {
    width: 100%;
    padding: 0.375rem 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    outline: none;
}

.shova-filters__price-inputs input:focus {
    border-color: var(--color-accent);
}

.shova-price-range {
    width: 100%;
    accent-color: var(--color-accent);
}

.shova-filters__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shova-filter-color {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.shova-filter-color:hover,
.shova-filter-color.is-active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary);
}

.shova-filters__sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.shova-filter-size {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: none;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.shova-filter-size:hover,
.shova-filter-size.is-active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.shova-filters__ratings li {
    margin-bottom: 0.375rem;
}

.shova-filters__ratings label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    cursor: pointer;
}

.shova-filters__ratings input[type="radio"] {
    accent-color: var(--color-accent);
}

.shova-filters__stars {
    color: #f9a825;
    letter-spacing: 1px;
}

.shova-filters__toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.shova-filters__toggle input[type="checkbox"] {
    accent-color: var(--color-accent);
}

/* Filter toggle button (mobile) */
.shova-filters-toggle {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.shova-filters-toggle:hover {
    border-color: var(--color-accent);
}

.shova-filters-toggle__count {
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.6875rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Filtering loading state */
.shova-shop-content.is-filtering {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.shova-shop-content.is-filtering::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 32px;
    height: 32px;
    margin-left: -16px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: shovaSpinner 0.6s linear infinite;
}

/* Back to Top
   ========================================================================== */

.shova-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 900;
    box-shadow: var(--shadow);
}

.shova-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.shova-back-to-top:hover {
    background: var(--color-accent-hover);
    box-shadow: var(--shadow-hover);
}

/* Toast Notifications
   ========================================================================== */

#shova-toasts {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.shova-toast {
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-white);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: var(--shadow-hover);
}

.shova-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.shova-toast--success { background: #2ecc71; }
.shova-toast--error { background: var(--color-accent); }

/* Modal & Drawer Base
   ========================================================================== */

.shova-modal,
.shova-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}

.shova-modal.is-open,
.shova-drawer.is-open {
    display: flex;
}

.shova-modal {
    align-items: center;
    justify-content: center;
}

.shova-modal__overlay,
.shova-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.shova-modal__content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: shovaModalIn 0.25s ease;
}

@keyframes shovaModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.shova-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: var(--color-text);
    z-index: 2;
    line-height: 1;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.shova-modal__close:hover {
    background: var(--color-light);
}

/* Drawer (Mini Cart)
   ========================================================================== */

.shova-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: var(--color-white);
    z-index: 1;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.shova-drawer.is-open .shova-drawer__panel {
    transform: translateX(0);
}

.shova-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.shova-drawer__header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.shova-drawer__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

.shova-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.shova-drawer__footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--color-border);
}

.shova-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.btn--full {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Mini Cart Items
   ========================================================================== */

.shova-minicart__item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.shova-minicart__img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.shova-minicart__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shova-minicart__details {
    flex: 1;
    min-width: 0;
}

.shova-minicart__name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shova-minicart__price {
    font-size: 0.8125rem;
    color: var(--color-muted);
    margin: 0.125rem 0;
}

.shova-minicart__qty {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.125rem 0.25rem;
}

.shova-minicart__qty-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
}

.shova-minicart__qty span {
    font-size: 0.8125rem;
    font-weight: 600;
    min-width: 1rem;
    text-align: center;
}

.shova-minicart__remove {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--color-muted);
    flex-shrink: 0;
    transition: var(--transition);
}

.shova-minicart__remove:hover {
    color: var(--color-accent);
}

.shova-minicart__empty {
    text-align: center;
    padding: 2rem 0;
    color: var(--color-muted);
}

/* Quick View Modal
   ========================================================================== */

.shova-qv {
    width: 800px;
    max-width: 95vw;
    padding: 2rem;
}

.shova-qv__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.shova-qv__gallery {
    border-radius: var(--radius);
    overflow: hidden;
}

.shova-qv__gallery img {
    width: 100%;
    display: block;
}

.shova-qv__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.shova-qv__price {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.shova-qv__desc {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.shova-qv__link {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--color-accent);
}

.shova-qv__loading {
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shova-qv__loading::after {
    content: '';
    width: 32px;
    height: 32px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: shovaSpinner 0.6s linear infinite;
}

@keyframes shovaSpinner {
    to { transform: rotate(360deg); }
}

/* Product Card — Badges
   ========================================================================== */

.product-card__badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    z-index: 2;
}

.product-card__badge--new { background: #2ecc71; color: var(--color-white); }
.product-card__badge--hot { background: #e67e22; color: var(--color-white); }
.product-card__badge--oos { background: var(--color-muted); color: var(--color-white); }

.product-card__oos-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.5);
    z-index: 1;
}

/* Product Card — Tool Buttons (Wishlist/Compare/Quick View)
   ========================================================================== */

.product-card__tools {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.product-card__tool-btn,
.product-card__action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-text);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.product-card__tool-btn:hover,
.product-card__action-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.product-card__tool-btn.is-active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.product-card__tool-btn.is-active svg {
    fill: currentColor;
}

/* Loading spinner on buttons
   ========================================================================== */

.is-loading {
    pointer-events: none;
    opacity: 0.7;
    position: relative;
}

.is-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: shovaSpinner 0.6s linear infinite;
    right: 0.75rem;
    top: 50%;
    margin-top: -8px;
}

/* Variation Swatches
   ========================================================================== */

.shova-swatches__options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.shova-swatch {
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: none;
    font-family: var(--font-primary);
}

.shova-swatch.is-active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 1px var(--color-primary);
}

.shova-swatch.is-oos {
    opacity: 0.4;
    cursor: not-allowed;
}

.shova-swatch.is-oos::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, transparent calc(50% - 1px), var(--color-muted) calc(50% - 1px), var(--color-muted) calc(50% + 1px), transparent calc(50% + 1px));
}

.shova-swatch--color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0;
}

.shova-swatch--color.is-oos::after {
    border-radius: 50%;
}

.shova-swatch--size {
    min-width: 40px;
    height: 36px;
    padding: 0 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shova-swatch--image {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    padding: 2px;
    overflow: hidden;
}

.shova-swatch--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
}

/* Wishlist Header Icon
   ========================================================================== */

.nav-wishlist {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--color-primary);
    transition: var(--transition);
}

.nav-wishlist:hover {
    color: var(--color-accent);
    background: var(--color-light);
}

.shova-wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.6875rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wishlist Modal
   ========================================================================== */

.shova-wishlist-modal {
    width: 600px;
    max-width: 95vw;
    padding: 0;
}

.shova-wishlist__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.shova-wishlist__header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.shova-wishlist__body {
    padding: 1rem 1.5rem;
    max-height: 60vh;
    overflow-y: auto;
}

.shova-wishlist__item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.shova-wishlist__img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.shova-wishlist__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shova-wishlist__info {
    flex: 1;
}

.shova-wishlist__info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.shova-wishlist__info h4 a {
    color: var(--color-primary);
}

.shova-wishlist__price {
    font-size: 0.875rem;
    color: var(--color-muted);
    margin-bottom: 0.5rem;
}

.shova-wishlist__oos {
    color: var(--color-accent);
    font-size: 0.8125rem;
    font-weight: 500;
}

.shova-wishlist__remove {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-muted);
    flex-shrink: 0;
}

.shova-wishlist__remove:hover {
    color: var(--color-accent);
}

.shova-wishlist__empty {
    text-align: center;
    padding: 2rem 0;
    color: var(--color-muted);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
}

/* Compare Bar
   ========================================================================== */

.shova-compare-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 0.75rem 0;
    z-index: 900;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

.shova-compare-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shova-compare-bar__actions {
    display: flex;
    gap: 0.5rem;
}

/* Compare Modal
   ========================================================================== */

.shova-compare-content {
    width: 1000px;
    max-width: 95vw;
    padding: 0;
}

.shova-compare__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.shova-compare__header h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.shova-compare__body {
    padding: 1.5rem;
    overflow-x: auto;
}

.shova-compare__table {
    width: 100%;
    border-collapse: collapse;
}

.shova-compare__table th,
.shova-compare__table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
    font-size: 0.875rem;
    min-width: 180px;
}

.shova-compare__table td:first-child,
.shova-compare__table th:first-child {
    font-weight: 600;
    color: var(--color-primary);
    min-width: 120px;
    background: var(--color-light);
}

.shova-compare__product-head {
    text-align: center;
}

.shova-compare__product-head img {
    width: 100px;
    margin: 0 auto 0.5rem;
    border-radius: var(--radius);
}

.shova-compare__product-head a {
    font-weight: 600;
    color: var(--color-primary);
}

/* Sticky Add to Cart Bar
   ========================================================================== */

.shova-sticky-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    z-index: 800;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    animation: shovaStickyIn 0.3s ease;
}

@keyframes shovaStickyIn {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.shova-sticky-cart__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.shova-sticky-cart__product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shova-sticky-cart__img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.shova-sticky-cart__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shova-sticky-cart__name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-primary);
}

.shova-sticky-cart__price {
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* WC Default Loop — Tool Buttons
   ========================================================================== */

ul.products li.product {
    position: relative;
}

/* Product Image Zoom
   ========================================================================== */

.woocommerce-product-gallery__image img {
    transition: transform 0.25s ease;
}

/* About Page
   ========================================================================== */

.shova-about-hero { background: linear-gradient(135deg, var(--color-primary), var(--color-dark)); color: var(--color-white); padding: 4rem 0; text-align: center; }
.shova-about-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; }
.shova-about-hero p { max-width: 560px; margin: 0 auto; opacity: 0.8; line-height: 1.7; }
.shova-about-stats { padding: 3rem 0; background: var(--color-light); }
.shova-about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.shova-about-stats__num { display: block; font-size: 2rem; font-weight: 800; color: var(--color-accent); }
.shova-about-stats__label { font-size: 0.875rem; color: var(--color-muted); font-weight: 500; }
.shova-about-who { padding: 4rem 0; }
.shova-about-who__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.shova-about-who__text h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-primary); }
.shova-about-who__text p { color: var(--color-muted); line-height: 1.8; margin-bottom: 1rem; }
.shova-about-who__placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #e0e0e0, #f5f5f5); border-radius: var(--radius-lg); }
.shova-about-team { padding: 4rem 0; background: var(--color-light); text-align: center; }
.shova-about-team > .container > h2 { font-size: 1.75rem; font-weight: 700; margin-bottom: 2rem; }
.shova-about-team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.shova-about-team__card { background: var(--color-white); border-radius: var(--radius-lg); padding: 2rem 1rem; }
.shova-about-team__avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--color-primary); color: var(--color-white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.25rem; margin: 0 auto 1rem; }
.shova-about-team__card h4 { font-size: 1rem; font-weight: 600; color: var(--color-primary); margin-bottom: 0.25rem; }
.shova-about-team__card span { font-size: 0.8125rem; color: var(--color-muted); }
.shova-about-values { padding: 4rem 0; }
.shova-about-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.shova-about-values__card { text-align: center; padding: 2rem; border: 1px solid var(--color-border); border-radius: var(--radius-lg); }
.shova-about-values__icon { margin-bottom: 1rem; color: var(--color-accent); }
.shova-about-values__card h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--color-primary); }
.shova-about-values__card p { font-size: 0.875rem; color: var(--color-muted); line-height: 1.6; }
.shova-about-cta { padding: 4rem 0; background: linear-gradient(135deg, var(--color-primary), var(--color-dark)); color: var(--color-white); text-align: center; }
.shova-about-cta h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.5rem; }
.shova-about-cta p { opacity: 0.8; margin-bottom: 1.5rem; }

/* Contact Page
   ========================================================================== */

.shova-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 2rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.shova-contact__info { background: var(--color-primary); color: var(--color-white); padding: 3rem; }
.shova-contact__info h1 { font-size: 1.75rem; font-weight: 700; margin-bottom: 0.5rem; }
.shova-contact__info > p { opacity: 0.7; margin-bottom: 2rem; line-height: 1.6; }
.shova-contact__items { display: flex; flex-direction: column; gap: 1.5rem; }
.shova-contact__item { display: flex; gap: 1rem; align-items: flex-start; }
.shova-contact__item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }
.shova-contact__item strong { display: block; margin-bottom: 0.25rem; }
.shova-contact__item div { font-size: 0.875rem; line-height: 1.6; opacity: 0.8; }
.shova-contact__form { padding: 3rem; }
.shova-contact__form h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--color-primary); }
.shova-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.shova-form__field { margin-bottom: 1rem; }
.shova-form__field label { display: block; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.375rem; color: var(--color-text); }
.shova-form__field input,
.shova-form__field textarea { width: 100%; padding: 0.625rem 0.875rem; border: 1px solid var(--color-border); border-radius: var(--radius); font-family: var(--font-primary); font-size: 0.875rem; transition: border-color 0.2s; outline: none; }
.shova-form__field input:focus,
.shova-form__field textarea:focus { border-color: var(--color-accent); }
.shova-contact__map { margin-top: 2rem; }
.shova-contact__map-placeholder { width: 100%; height: 300px; background: var(--color-light); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--color-muted); font-size: 1.25rem; font-weight: 600; }

/* FAQ Page
   ========================================================================== */

.shova-faq-hero { background: var(--color-light); padding: 3rem 0; text-align: center; }
.shova-faq-hero h1 { font-size: 2rem; font-weight: 700; color: var(--color-primary); margin-bottom: 0.5rem; }
.shova-faq-hero p { color: var(--color-muted); max-width: 500px; margin: 0 auto; }
.shova-faq { padding: 3rem 0; }
.shova-faq__container { max-width: 720px; margin: 0 auto; }
.shova-faq__section { margin-bottom: 2rem; }
.shova-faq__section h2 { font-size: 1.25rem; font-weight: 700; color: var(--color-primary); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--color-accent); }
.shova-faq__item { border-bottom: 1px solid var(--color-border); }
.shova-faq__toggle { display: none; }
.shova-faq__question { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; font-weight: 600; font-size: 0.9375rem; cursor: pointer; color: var(--color-text); transition: color 0.2s; }
.shova-faq__question:hover { color: var(--color-accent); }
.shova-faq__icon { font-size: 1.25rem; font-weight: 400; transition: transform 0.25s; }
.shova-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.shova-faq__answer p { padding: 0 0 1rem; font-size: 0.875rem; color: var(--color-muted); line-height: 1.7; }
.shova-faq__toggle:checked ~ .shova-faq__question { color: var(--color-accent); }
.shova-faq__toggle:checked ~ .shova-faq__question .shova-faq__icon { transform: rotate(45deg); }
.shova-faq__toggle:checked ~ .shova-faq__answer { max-height: 300px; }
.shova-faq-cta { padding: 3rem 0; background: var(--color-light); text-align: center; }
.shova-faq-cta h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.shova-faq-cta p { color: var(--color-muted); margin-bottom: 1.5rem; }

/* (Blog styles consolidated in Magazine Layout section above) */

/* Utility
   ========================================================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal;
}
