/*
Theme Name: AstroHard
Theme URI: https://electropc.com
Author: ElectroPC
Author URI: https://electropc.com
Description: Theme gaming e-commerce inspirado en Gamepro para tienda de tecnología con soporte WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astrohard
Tags: woocommerce, e-commerce, gaming, dark-theme, custom-header, custom-menu
*/

/* ============================================
   CSS CUSTOM PROPERTIES — GAMEPRO STYLE
   ============================================ */

/* Tipografía Outfit (similar a Gilroy) — cargada desde Google Fonts via functions.php */
:root {
    --color-bg-dark: #0e1225;
    --color-bg-primary: #151C37;
    --color-bg-secondary: #1b2342;
    --color-bg-card: #1e2748;
    --color-bg-card-hover: #242e54;
    --color-bg-light: #f0f0f7;
    --color-bg-content: #eaeaf5;

    --color-accent: #00FFFF;
    --color-accent-hover: #00d6d6;
    --color-accent-light: rgba(0, 255, 255, 0.16);
    --color-accent-gradient: linear-gradient(135deg, #00FFFF 0%, #2ea8ff 100%);
    --color-highlight: #e94560;
    --color-success: #2ecc71;
    --color-warning: #f39c12;
    --color-info: #00FFFF;
    --color-lilac: #00FFFF;

    --color-white: #ffffff;
    --color-text-primary: #e8e8f0;
    --color-text-secondary: #8A8D9B;
    --color-text-muted: #6b7190;
    --color-text-dark: #151C37;

    --color-border: rgba(0, 255, 255, 0.12);
    --color-border-light: rgba(255, 255, 255, 0.06);
    --color-border-hover: rgba(0, 255, 255, 0.3);

    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.8125rem;
    --font-size-base: 0.9375rem;
    --font-size-lg: 1.0625rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.25rem;

    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 5rem;

    --container-max: 1320px;
    --container-wide: 1480px;
    --header-height: 130px;
    --top-bar-height: 36px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-2xl: 20px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px rgba(0, 255, 255, 0.28);
    --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.15);

    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

.container--wide {
    max-width: var(--container-wide);
}

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--color-bg-dark);
    height: var(--top-bar-height);
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__links {
    display: flex;
    gap: var(--spacing-xl);
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar__item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.top-bar__right a {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color var(--transition-fast);
}

.top-bar__right a svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-border-light);
}

.header-main {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: minmax(140px, 180px) minmax(420px, 1fr) minmax(150px, 190px);
    align-items: center;
    gap: clamp(18px, 2.5vw, 36px);
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.site-logo img {
    height: 120px;
    width: auto;
}

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

/* Search bar - central, prominent */
.header-search {
    width: 100%;
    max-width: none;
}

.header-search__fibosearch {
    width: 100%;
}

.header-search form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.header-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.header-search input[type="search"] {
    width: 100%;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    padding: 10px 14px 10px 42px;
    color: var(--color-white);
    font-size: var(--font-size-sm);
    transition: border-color var(--transition-fast);
}

.header-search input[type="search"]::placeholder {
    color: var(--color-text-muted);
}

.header-search input[type="search"]:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.header-search__btn {
    background: var(--color-accent);
    color: var(--color-text-dark);
    border: none;
    padding: 10px 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition-fast);
}

.header-search__btn:hover {
    background: var(--color-accent-hover);
}

.header-search .dgwt-wcas-search-wrapp,
.header-search .dgwt-wcas-search-form,
.header-search .dgwt-wcas-sf-wrapp {
    width: 100%;
}

.header-search .dgwt-wcas-search-wrapp {
    max-width: none;
}

.header-search .dgwt-wcas-search-form {
    display: block;
}

.header-search .dgwt-wcas-sf-wrapp {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    padding: 4px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.header-search .dgwt-wcas-sf-wrapp:focus-within {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-glow);
}

.header-search .dgwt-wcas-sf-wrapp::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.72;
    z-index: 1;
    background: no-repeat center / 18px 18px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23868db4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
}

.header-search .dgwt-wcas-search-input {
    width: 100% !important;
    min-width: 0;
    height: 46px;
    padding: 0 16px 0 42px !important;
    background: transparent !important;
    color: var(--color-white) !important;
    border: 0 !important;
    border-radius: calc(var(--border-radius) - 4px) !important;
    font-size: var(--font-size-sm) !important;
    box-shadow: none !important;
}

.header-search .dgwt-wcas-search-input::placeholder {
    color: var(--color-text-muted) !important;
}

.header-search .dgwt-wcas-search-input:focus {
    outline: none;
}

.header-search .dgwt-wcas-preloader,
.header-search .dgwt-wcas-voice-search {
    right: 126px !important;
}

.header-search .dgwt-wcas-search-submit {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    min-width: 110px;
    padding: 0 22px !important;
    border-radius: calc(var(--border-radius) - 4px) !important;
    border: none !important;
    background: var(--color-accent) !important;
    color: #031321 !important;
    font-size: var(--font-size-sm) !important;
    font-weight: 700 !important;
    box-shadow: none !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.header-search .dgwt-wcas-search-submit:hover {
    background: var(--color-accent-hover) !important;
    box-shadow: var(--shadow-glow) !important;
}

.header-search .dgwt-wcas-search-submit .dgwt-wcas-ico-magnifier {
    display: none;
}

.header-search .dgwt-wcas-suggestions-wrapp,
.header-search .dgwt-wcas-details-wrapp {
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

body.theme-astrohard .dgwt-wcas-suggestions-wrapp,
body.theme-astrohard .dgwt-wcas-details-wrapp {
    background: var(--color-bg-card) !important;
    color: var(--color-text-primary) !important;
    border: 1px solid rgba(0, 255, 255, 0.18) !important;
    border-top: none !important;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg) !important;
    box-shadow: 0 22px 48px rgba(3, 8, 22, 0.46) !important;
    overflow: hidden;
}

body.theme-astrohard .dgwt-wcas-suggestion {
    color: var(--color-text-primary) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 10px 14px !important;
    min-height: 64px;
    background: transparent !important;
}

body.theme-astrohard .dgwt-wcas-suggestion:last-child {
    border-bottom: none !important;
}

body.theme-astrohard .dgwt-wcas-suggestion:hover,
body.theme-astrohard .dgwt-wcas-suggestion-selected {
    background: rgba(0, 255, 255, 0.08) !important;
}

body.theme-astrohard .dgwt-wcas-st,
body.theme-astrohard .dgwt-wcas-st-title,
body.theme-astrohard .dgwt-wcas-content-wrapp,
body.theme-astrohard .dgwt-wcas-sp,
body.theme-astrohard .dgwt-wcas-sp * {
    color: var(--color-text-primary) !important;
}

body.theme-astrohard .dgwt-wcas-st strong,
body.theme-astrohard .dgwt-wcas-keyword,
body.theme-astrohard .dgwt-wcas-suggestion-more .dgwt-wcas-st-more,
body.theme-astrohard a.dgwt-wcas-details-more-products,
body.theme-astrohard a.dgwt-wcas-product-details-readmore {
    color: var(--color-accent) !important;
}

body.theme-astrohard .dgwt-wcas-si img {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

body.theme-astrohard .dgwt-wcas-suggestion-nores,
body.theme-astrohard .dgwt-wcas-no-results {
    color: var(--color-text-primary) !important;
    font-size: var(--font-size-sm) !important;
    line-height: 1.5 !important;
    padding: 18px 20px !important;
    opacity: 1 !important;
}

body.theme-astrohard .dgwt-wcas-preloader-wrapp,
body.theme-astrohard .dgwt-wcas-preloader-wrapp * {
    color: var(--color-text-primary) !important;
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    width: 100%;
    flex-shrink: 0;
}

.header-action-btn {
    position: relative;
    color: var(--color-text-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 12px;
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.header-action-btn:hover {
    color: var(--color-white);
    background: var(--color-bg-secondary);
}

.header-action-btn svg {
    width: 22px;
    height: 22px;
}

.header-action-btn__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.header-action-btn .badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 9px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.menu-toggle {
    display: none;
    color: var(--color-text-secondary);
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

.menu-toggle:hover {
    background: var(--color-bg-secondary);
    color: var(--color-white);
}

.menu-toggle svg {
    width: 22px;
    height: 22px;
}

/* ============================================
   NAV BAR — Barra de categorías
   ============================================ */
.nav-bar {
    background: var(--color-bg-dark);
    border-top: 1px solid var(--color-border-light);
}

.nav-bar .container {
    position: relative;
}

.nav-bar__menu {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.nav-bar__item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    white-space: nowrap;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.nav-bar__item > a svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.nav-bar__item > a .nav-chevron {
    opacity: 0.8;
    transition: transform var(--transition-fast);
}

.nav-bar__item:hover > a {
    color: var(--color-white);
    border-bottom-color: var(--color-accent);
}

.nav-bar__item:hover > a .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-bar__item--cta {
    margin-left: auto;
}

.nav-bar__item--cta > a {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    color: var(--color-white);
    font-weight: 700;
    border-radius: var(--border-radius);
    border-bottom: none;
    padding: 8px 20px;
    margin: 4px 0;
}

.nav-bar__item--cta:hover > a {
    border-bottom-color: transparent;
    opacity: 0.9;
}

/* ============================================
   MEGA DROPDOWN
   ============================================ */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    width: min(760px, calc(100vw - 48px));
    max-width: 100%;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-top: 2px solid var(--color-accent);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
    padding: var(--spacing-xl);
}

.mega-dropdown--wide {
    width: min(920px, calc(100vw - 48px));
}

.has-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-dropdown__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.mega-dropdown--wide .mega-dropdown__inner {
    grid-template-columns: repeat(3, 1fr);
}

.mega-dropdown__col h5 {
    color: var(--color-accent);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border-light);
}

.mega-dropdown__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-dropdown__col ul li {
    margin-bottom: var(--spacing-xs);
}

.mega-dropdown__col ul a {
    display: block;
    padding: 6px 10px;
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-fast);
}

.mega-dropdown__col ul a:hover {
    color: var(--color-white);
    background: var(--color-bg-secondary);
    padding-left: 16px;
}

/* ============================================
   RESPONSIVE HEADER
   ============================================ */
@media (max-width: 900px) {
    .header-main {
        grid-template-columns: auto 1fr auto;
        min-height: 96px;
        gap: var(--spacing-md);
    }

    .menu-toggle {
        display: flex;
    }

    .nav-bar {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg-dark);
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        z-index: 999;
        border-top: none;
    }

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

    .nav-bar__menu {
        display: flex;
        flex-direction: column;
        padding: var(--spacing-lg);
    }

    .nav-bar__item {
        width: 100%;
    }

    .nav-bar__item > a {
        padding: 14px 16px;
        font-size: var(--font-size-base);
        border-bottom: 1px solid var(--color-border-light);
        border-bottom-color: var(--color-border-light);
    }

    .nav-bar__item:hover > a {
        border-bottom-color: var(--color-border-light);
    }

    .mega-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: none;
        border-radius: 0;
        padding: var(--spacing-md) var(--spacing-lg);
        background: var(--color-bg-secondary);
        display: none;
    }

    .has-dropdown:hover .mega-dropdown,
    .has-dropdown.is-open .mega-dropdown {
        display: block;
    }

    .mega-dropdown__inner {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .mega-dropdown--wide .mega-dropdown__inner {
        grid-template-columns: 1fr;
    }

    .nav-bar__item--cta {
        margin-left: 0;
        margin-top: var(--spacing-md);
    }

    .nav-bar__item--cta > a {
        justify-content: center;
    }

    .header-search {
        display: none;
    }

    .header-actions {
        width: auto;
        margin-left: auto;
    }

    .header-action-btn__label {
        display: none;
    }
}
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background:
        radial-gradient(circle at top center, rgba(0, 255, 255, 0.08) 0%, transparent 30%),
        linear-gradient(180deg, #050816 0%, #071128 48%, #030711 100%);
    color: var(--color-text-secondary);
    margin-top: var(--spacing-3xl);
    overflow: hidden;
}

.footer-space-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: transparent;
    transform-origin: 50% 62%;
    will-change: transform, opacity;
}

.stars::after {
    content: '';
    position: absolute;
    top: 420px;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    box-shadow: inherit;
}

.stars--sm {
    width: 1px;
    height: 1px;
    opacity: 0.75;
    box-shadow: 18px 42px rgba(255,255,255,0.9), 74px 18px rgba(0,255,255,0.7), 128px 88px rgba(255,255,255,0.7), 186px 26px rgba(255,255,255,0.9), 232px 154px rgba(0,255,255,0.55), 276px 74px rgba(255,255,255,0.8), 322px 122px rgba(255,255,255,0.65), 366px 34px rgba(0,255,255,0.6), 412px 188px rgba(255,255,255,0.75), 468px 104px rgba(255,255,255,0.6), 524px 48px rgba(0,255,255,0.7), 578px 166px rgba(255,255,255,0.85), 638px 94px rgba(255,255,255,0.7), 694px 28px rgba(0,255,255,0.6), 744px 142px rgba(255,255,255,0.8), 802px 62px rgba(255,255,255,0.65), 856px 192px rgba(0,255,255,0.55), 912px 86px rgba(255,255,255,0.85), 968px 34px rgba(255,255,255,0.7), 1018px 148px rgba(0,255,255,0.65), 1072px 58px rgba(255,255,255,0.8), 1134px 178px rgba(255,255,255,0.65), 1188px 116px rgba(0,255,255,0.6), 1242px 44px rgba(255,255,255,0.8), 1296px 156px rgba(255,255,255,0.7), 1352px 88px rgba(0,255,255,0.7), 1406px 26px rgba(255,255,255,0.8), 44px 232px rgba(255,255,255,0.65), 102px 278px rgba(0,255,255,0.55), 164px 336px rgba(255,255,255,0.75), 228px 246px rgba(255,255,255,0.8), 284px 392px rgba(0,255,255,0.6), 338px 314px rgba(255,255,255,0.75), 394px 268px rgba(255,255,255,0.55), 458px 354px rgba(0,255,255,0.6), 512px 228px rgba(255,255,255,0.85), 566px 384px rgba(255,255,255,0.6), 624px 292px rgba(0,255,255,0.65), 686px 346px rgba(255,255,255,0.75), 742px 238px rgba(255,255,255,0.7), 798px 398px rgba(0,255,255,0.55), 854px 286px rgba(255,255,255,0.8), 912px 332px rgba(255,255,255,0.55), 972px 254px rgba(0,255,255,0.7), 1032px 386px rgba(255,255,255,0.75), 1088px 304px rgba(255,255,255,0.7), 1142px 246px rgba(0,255,255,0.55), 1206px 364px rgba(255,255,255,0.8), 1268px 288px rgba(255,255,255,0.6), 1332px 336px rgba(0,255,255,0.65), 1392px 246px rgba(255,255,255,0.75);
    animation: starfield-expand 24s linear infinite;
}

.stars--md {
    width: 2px;
    height: 2px;
    opacity: 0.82;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.25));
    box-shadow: 64px 72px rgba(255,255,255,0.95), 182px 136px rgba(0,255,255,0.8), 316px 64px rgba(255,255,255,0.75), 458px 172px rgba(255,255,255,0.85), 598px 92px rgba(0,255,255,0.75), 726px 148px rgba(255,255,255,0.85), 868px 68px rgba(255,255,255,0.75), 1008px 184px rgba(0,255,255,0.8), 1146px 104px rgba(255,255,255,0.9), 1288px 162px rgba(255,255,255,0.82), 192px 274px rgba(0,255,255,0.75), 364px 336px rgba(255,255,255,0.82), 548px 242px rgba(255,255,255,0.9), 712px 372px rgba(0,255,255,0.78), 902px 286px rgba(255,255,255,0.86), 1086px 344px rgba(255,255,255,0.8), 1262px 256px rgba(0,255,255,0.72);
    animation: starfield-expand 34s linear infinite;
    animation-delay: -8s;
}

.stars--lg {
    width: 3px;
    height: 3px;
    opacity: 0.95;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.35));
    box-shadow: 124px 112px rgba(255,255,255,0.95), 422px 148px rgba(0,255,255,0.9), 748px 98px rgba(255,255,255,0.92), 1038px 152px rgba(0,255,255,0.9), 1326px 112px rgba(255,255,255,0.95), 286px 312px rgba(255,255,255,0.95), 654px 356px rgba(0,255,255,0.88), 1124px 298px rgba(255,255,255,0.92);
    animation: starfield-expand-bright 14s linear infinite;
    animation-delay: -4s;
}

.nebula {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.24;
}

.nebula--1 {
    top: -120px;
    left: -40px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.28) 0%, rgba(0, 150, 255, 0.12) 35%, transparent 72%);
    animation: nebula-expand 18s linear infinite;
}

.nebula--2 {
    right: -80px;
    bottom: 10px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.22) 0%, rgba(46, 168, 255, 0.12) 40%, transparent 74%);
    animation: nebula-expand 24s linear infinite;
    animation-delay: -7s;
}

.shooting-star {
    position: absolute;
    top: 88px;
    left: -20%;
    width: 160px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.95) 35%, rgba(0,255,255,0.9) 65%, rgba(0,255,255,0));
    border-radius: 999px;
    opacity: 0;
    transform: rotate(-14deg);
    box-shadow: 0 0 14px rgba(0, 255, 255, 0.5);
    animation: shooting-star-travel 9s linear infinite;
}

@keyframes starfield-expand {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    12% {
        opacity: 0.78;
    }
    100% {
        opacity: 0;
        transform: scale(1.72);
    }
}

@keyframes starfield-expand-bright {
    0% {
        opacity: 0;
        transform: scale(0.66);
    }
    16% {
        opacity: 0.96;
    }
    100% {
        opacity: 0;
        transform: scale(1.9);
    }
}

@keyframes nebula-expand {
    0% {
        opacity: 0;
        transform: scale(0.68);
    }
    18% {
        opacity: 0.22;
    }
    100% {
        opacity: 0;
        transform: scale(1.34);
    }
}

@keyframes shooting-star-travel {
    0%, 65% {
        opacity: 0;
        transform: translateX(0) translateY(0) rotate(-14deg);
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(1500px) translateY(120px) rotate(-14deg);
    }
}

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

.footer-main {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--spacing-2xl);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-brand p {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-top: var(--spacing-md);
    max-width: 280px;
}

.footer-credit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: var(--spacing-lg) 0 var(--spacing-2xl);
}

.footer-credit__label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
    text-align: center;
}

.footer-credit__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.footer-credit__link img {
    width: auto;
    height: 34px;
    opacity: 0.9;
}

.footer-credit__link:hover {
    transform: translateY(-1px);
}

.footer-col h4 {
    color: var(--color-accent);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-col ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-col a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 24px;
    padding: 0 0 var(--spacing-xl);
    text-align: center;
}

.footer-legal__seal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-legal__seal img {
    width: 40px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.footer-legal__cta,
.footer-legal__note {
    margin: 0;
}

.footer-legal__cta a {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.footer-legal__cta a:hover,
.footer-legal__note a:hover,
.footer-credit__link:hover img {
    opacity: 1;
}

.footer-legal__note {
    max-width: 680px;
    font-size: var(--font-size-xs);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.56);
}

.footer-legal__note a {
    color: var(--color-accent);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    background: rgba(0, 255, 255, 0.12);
    color: var(--color-accent);
    border: 1px solid rgba(0, 255, 255, 0.24);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: rgba(0, 255, 255, 0.2);
    color: #fff;
    border-color: var(--color-accent);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.35);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-legal {
        gap: 12px 18px;
    }
}

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-credit {
        align-items: center;
    }

    .footer-legal {
        flex-direction: column;
    }
}

/* ============================================
   HERO — GAMEPRO STYLE
   ============================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: var(--color-bg-primary);
    padding: 0 0 var(--spacing-xl);
}

.hero-slide {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg-secondary);
}

.hero-slide__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(28px) brightness(0.12) saturate(0.22) hue-rotate(74deg) contrast(1.08);
    transform: scale(1.14);
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(3px 3px at 10% 18%, rgba(255, 255, 255, 0.92) 0%, transparent 62%),
        radial-gradient(2.5px 2.5px at 18% 38%, rgba(64, 224, 255, 0.96) 0%, transparent 62%),
        radial-gradient(3px 3px at 28% 22%, rgba(255, 255, 255, 0.88) 0%, transparent 62%),
        radial-gradient(2.5px 2.5px at 38% 44%, rgba(196, 170, 255, 0.94) 0%, transparent 62%),
        radial-gradient(3px 3px at 50% 28%, rgba(255, 255, 255, 0.88) 0%, transparent 62%),
        radial-gradient(2.5px 2.5px at 62% 18%, rgba(64, 224, 255, 0.96) 0%, transparent 62%),
        radial-gradient(3px 3px at 72% 34%, rgba(255, 255, 255, 0.9) 0%, transparent 62%),
        radial-gradient(2.5px 2.5px at 84% 20%, rgba(196, 170, 255, 0.96) 0%, transparent 62%),
        radial-gradient(2.5px 2.5px at 92% 32%, rgba(64, 224, 255, 0.9) 0%, transparent 62%),
        radial-gradient(2.4px 2.4px at 14% 74%, rgba(255, 255, 255, 0.82) 0%, transparent 62%),
        radial-gradient(3px 3px at 34% 70%, rgba(64, 224, 255, 0.92) 0%, transparent 62%),
        radial-gradient(2.4px 2.4px at 56% 68%, rgba(255, 255, 255, 0.84) 0%, transparent 62%),
        radial-gradient(3px 3px at 76% 72%, rgba(196, 170, 255, 0.9) 0%, transparent 62%),
        radial-gradient(2.4px 2.4px at 90% 66%, rgba(255, 255, 255, 0.82) 0%, transparent 62%),
        radial-gradient(circle at 72% 20%, rgba(64, 224, 255, 0.18) 0%, transparent 14%),
        radial-gradient(circle at 84% 22%, rgba(64, 224, 255, 0.24) 0%, transparent 18%),
        radial-gradient(circle at 92% 24%, rgba(196, 170, 255, 0.3) 0%, transparent 24%),
        radial-gradient(circle at 82% 56%, rgba(74, 189, 255, 0.18) 0%, transparent 28%),
        linear-gradient(96deg, rgba(4, 8, 22, 0.98) 18%, rgba(8, 12, 28, 0.96) 42%, rgba(11, 22, 52, 0.88) 68%, rgba(18, 18, 52, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-3xl) 0;
}

/* --- Hero Text --- */
.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 0.95;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-title span {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 380px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    align-items: center;
}

/* --- Hero Collage (Gamepro style) --- */
.hero-collage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    height: 420px;
    position: relative;
}

.hero-collage__item {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.hero-collage__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-collage__item:hover img {
    transform: scale(1.05);
}

.hero-collage__item--1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}

.hero-collage__item--2 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    clip-path: polygon(0 5%, 100% 10%, 100% 90%, 0 95%);
}

.hero-collage__item--3 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    clip-path: polygon(0 10%, 100% 5%, 100% 95%, 0 90%);
}

.hero-collage__item--4 {
    grid-column: 4 / 5;
    grid-row: 1 / 3;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

/* --- Hero Promo Cards (debajo del hero) --- */
.hero-promo-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: calc(var(--spacing-xl) * -1);
    position: relative;
    z-index: 3;
    padding: 0 var(--spacing-md);
}

.hero-promo-card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-border);
}

.hero-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 255, 255, 0.2);
}

.hero-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-promo-card:hover img {
    transform: scale(1.08);
}

.hero-promo-card__content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(14, 18, 37, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
}

.hero-promo-card__content span {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* --- Hero Responsive --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-collage {
        height: 340px;
    }
    .hero-promo-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-collage {
        display: none;
    }

    .hero-slide {
        min-height: 380px;
    }

    .hero-promo-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-promo-cards {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
}

/* ============================================
   BOTONES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 10px 24px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn svg {
    width: 16px;
    height: 16px;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-text-dark);
}

.btn--primary:hover {
    background: var(--color-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text-secondary);
    border-color: var(--color-border);
}

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

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

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

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

.btn--sm {
    padding: 6px 14px;
    font-size: var(--font-size-xs);
}

.btn--lg {
    padding: 14px 32px;
    font-size: var(--font-size-base);
}

.btn--block {
    width: 100%;
}

/* ============================================
   SECCIONES HOME
   ============================================ */
.home-section {
    padding: var(--spacing-3xl) 0 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.section-header .see-all {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.section-header .see-all:hover {
    text-decoration: underline;
}

/* Categorías chips */
.categories-row {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    padding-bottom: var(--spacing-sm);
    scrollbar-width: none;
}

.categories-row::-webkit-scrollbar {
    display: none;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.category-chip:hover,
.category-chip.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.category-chip img {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: cover;
}

/* Banner promo */
.promo-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--color-bg-dark);
    border-radius: var(--border-radius-2xl);
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
    min-height: 320px;
}

.promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(21, 28, 55, 0.92) 40%, rgba(21, 28, 55, 0.3) 100%);
    z-index: 1;
}

.promo-banner__content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-2xl) var(--spacing-3xl);
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.14) 0%, transparent 70%);
    pointer-events: none;
    z-index: 2;
}

.promo-badge {
    display: inline-block;
    background: var(--color-highlight);
    color: var(--color-white);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: var(--spacing-md);
}

.promo-banner h2 {
    font-size: var(--font-size-3xl);
    color: var(--color-white);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}

.promo-banner p {
    color: var(--color-text-secondary);
    margin: var(--spacing-md) 0 var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.promo-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-lg);
}

.promo-image img {
    max-height: 280px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

@media (max-width: 768px) {
    .promo-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-xl);
    }

    .promo-image {
        display: none;
    }
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-md);
}

.products-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

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

.products-grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1200px) {
    .products-grid--5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1024px) {
    .products-grid--4,
    .products-grid--5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .products-grid,
    .products-grid--3,
    .products-grid--4,
    .products-grid--5 {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
}

/* ============================================
   PRODUCT CARD
   ============================================ */
.product-card {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--color-border-light);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.product-card__badge {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    z-index: 2;
    display: flex;
    gap: var(--spacing-xs);
}

.product-card__badge span {
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.badge--sale {
    background: var(--color-highlight);
    color: var(--color-white);
}

.badge--new {
    background: var(--color-accent);
    color: var(--color-white);
}

.product-card__wishlist {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    z-index: 2;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    opacity: 0;
    backdrop-filter: blur(4px);
    color: var(--color-white);
}

.product-card:hover .product-card__wishlist {
    opacity: 1;
}

.product-card__wishlist:hover {
    background: var(--color-accent);
}

.product-card__wishlist svg {
    width: 14px;
    height: 14px;
}

.product-card__image {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #ffffff;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform var(--transition-slow);
}

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

.product-card__actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    transform: translateY(100%);
    transition: transform var(--transition-base);
    display: flex;
    justify-content: center;
}

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

.product-card__actions .btn,
.product-card__actions .button,
.product-card__actions a.button,
.product-card__actions a.add_to_cart_button {
    font-size: var(--font-size-xs) !important;
    padding: 6px 16px !important;
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    border-radius: var(--border-radius) !important;
    border: none !important;
}

.product-card__info {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--color-bg-card);
    border-top: 1px solid var(--color-border-light);
}

.product-card__category {
    font-size: 10px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-card__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-white);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-card__rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.product-card__rating .stars {
    color: var(--color-warning);
    font-size: 11px;
}

.product-card__rating .count {
    font-size: 10px;
    color: var(--color-text-muted);
}

.product-card__price {
    margin-top: auto;
    padding-top: 4px;
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.product-card__price .price-current {
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--color-white);
}

.product-card__price .price-original {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-card__price .price-discount {
    font-size: 10px;
    font-weight: 700;
    color: var(--color-highlight);
    background: rgba(233, 69, 96, 0.15);
    padding: 2px 6px;
    border-radius: 3px;
}

/* ============================================
   SHOP / CATÁLOGO
   ============================================ */
.shop-page {
    padding: var(--spacing-2xl) 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--spacing-xl);
}

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

.shop-sidebar {
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-lg));
    align-self: start;
}

.filter-group {
    margin-bottom: var(--spacing-lg);
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border-light);
}

.filter-group h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 6px 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    cursor: pointer;
}

.filter-group label:hover {
    color: var(--color-accent);
}

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

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border-light);
}

.shop-toolbar__count {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.shop-toolbar__sort select {
    padding: 6px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    color: var(--color-text-primary);
    background: var(--color-bg-secondary);
}

.shop-pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
}

.shop-pagination a,
.shop-pagination span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    background: var(--color-bg-card);
    transition: all var(--transition-fast);
}

.shop-pagination a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.shop-pagination .current {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

/* ============================================
   SINGLE PRODUCT
   ============================================ */
.single-product-page {
    padding: var(--spacing-2xl) 0;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
    gap: var(--spacing-2xl);
    background: var(--color-bg-card);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-2xl);
    border: 1px solid var(--color-border-light);
}

@media (max-width: 900px) {
    .product-detail {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg);
    }
}

.product-gallery__main {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: #ffffff;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-gallery__thumbs {
    display: flex;
    gap: var(--spacing-sm);
}

.product-gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: border-color var(--transition-fast);
    background: #ffffff;
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
    border-color: var(--color-accent);
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-summary {
    display: flex;
    flex-direction: column;
}

.product-summary__category {
    font-size: var(--font-size-xs);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.product-summary__title {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.product-summary__rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    color: var(--color-warning);
    font-size: var(--font-size-sm);
}

.product-summary__price {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
}

.product-summary__price .price-current {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--color-white);
}

.product-summary__price .price-original {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.product-summary__description {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.product-shortcodes {
    display: grid;
    gap: var(--spacing-sm);
    margin: calc(var(--spacing-lg) * -1) 0 var(--spacing-xl);
}

.product-shortcodes__item {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.product-shortcodes__item:empty {
    display: none;
}

.product-summary__meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-sm);
}

.product-summary__meta span {
    color: var(--color-text-muted);
}

.product-summary__meta strong {
    color: var(--color-text-primary);
}

.product-quantity {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.quantity-selector button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    transition: all var(--transition-fast);
}

.quantity-selector button:hover {
    background: var(--color-accent-light);
    color: var(--color-accent);
}

.quantity-selector input {
    width: 44px;
    height: 36px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-weight: 600;
    background: var(--color-bg-card);
    color: var(--color-white);
}

.quantity-selector input:focus {
    outline: none;
}

/* Tabs */
.product-tabs {
    margin-top: var(--spacing-2xl);
    background: var(--color-bg-card);
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.product-tabs__nav {
    display: flex;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-secondary);
}

.product-tabs__nav button {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.product-tabs__nav button.active,
.product-tabs__nav button:hover {
    color: var(--color-accent);
    border-bottom-color: var(--color-accent);
    background: var(--color-bg-card);
}

.product-tabs__content {
    padding: var(--spacing-xl);
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.product-tabs__content table {
    width: 100%;
    border-collapse: collapse;
}

.product-tabs__content table tr {
    border-bottom: 1px solid var(--color-border);
}

.product-tabs__content table td {
    padding: var(--spacing-sm) var(--spacing-md);
}

.product-tabs__content table td:first-child {
    font-weight: 600;
    color: var(--color-text-primary);
    width: 200px;
}

/* ============================================
   CART
   ============================================ */
.cart-page {
    padding: var(--spacing-2xl) 0;
}

.cart-page h1 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--color-white);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--spacing-xl);
    align-items: start;
}

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

.cart-items {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    gap: var(--spacing-md);
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
}

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

.cart-item__image {
    width: 90px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--color-bg-secondary);
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__info h3 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 2px;
}

.cart-item__info p {
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.cart-item__price {
    font-weight: 600;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.cart-item__total {
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--color-white);
    min-width: 80px;
    text-align: right;
}

.cart-item__remove {
    color: var(--color-text-muted);
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    transition: all var(--transition-fast);
}

.cart-item__remove:hover {
    color: var(--color-highlight);
    background: rgba(233, 69, 96, 0.1);
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: var(--spacing-sm);
    }
}

.cart-summary {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    border: 1px solid var(--color-border-light);
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-lg));
}

.cart-summary h2 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-white);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.cart-summary__row--total {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-white);
    border-top: 1px solid var(--color-border);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
}

.cart-summary .btn {
    margin-top: var(--spacing-lg);
}

/* ============================================
   CHECKOUT
   ============================================ */
.checkout-page {
    padding: var(--spacing-2xl) 0;
}

.checkout-page h1 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    color: var(--color-white);
}

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.92fr);
    gap: clamp(18px, 3vw, 32px);
    align-items: start;
}

@media (max-width: 1180px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.checkout-form {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    min-width: 0;
    padding: clamp(20px, 3vw, 32px);
    border: 1px solid var(--color-border-light);
}

.checkout-form h2 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-row--full {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    color: var(--color-white);
    background: var(--color-bg-secondary);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.checkout-order-summary {
    background: var(--color-bg-card);
    border-radius: var(--border-radius-lg);
    min-width: 0;
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--color-border-light);
    position: sticky;
    top: calc(var(--header-height) + var(--spacing-lg));
}

.checkout-page .woocommerce-form-coupon-toggle {
    margin-bottom: var(--spacing-lg);
}

.checkout-page .woocommerce-form-coupon-toggle .woocommerce-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    border-radius: var(--border-radius-lg);
    padding: 14px 18px !important;
}

.checkout-page .woocommerce form.checkout_coupon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--spacing-sm);
    margin: 0 0 var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
}

.checkout-page .woocommerce form.checkout_coupon > * {
    margin: 0 !important;
}

.checkout-form .woocommerce-billing-fields h3,
.checkout-form .woocommerce-shipping-fields h3,
.checkout-form .woocommerce-additional-fields h3 {
    color: var(--color-white);
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.checkout-form .woocommerce-billing-fields__field-wrapper,
.checkout-form .woocommerce-shipping-fields__field-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md) var(--spacing-lg);
}

.checkout-form .woocommerce-additional-fields {
    margin-top: var(--spacing-xl);
}

.checkout-form .woocommerce-input-wrapper,
.checkout-form .select2-container,
.checkout-form .select2-selection {
    width: 100% !important;
}

.checkout-form .woocommerce form .form-row,
.checkout-form .form-row {
    width: 100%;
    float: none;
    margin: 0;
    padding: 0;
}

.checkout-form .woocommerce form .form-row label,
.checkout-form .form-group label {
    display: block;
    margin-bottom: 8px;
}

.checkout-form .woocommerce form .form-row input.input-text,
.checkout-form .woocommerce form .form-row textarea,
.checkout-form .woocommerce form .form-row select,
.checkout-form .form-group textarea {
    min-height: 48px;
}

.checkout-form .woocommerce form .form-row textarea,
.checkout-form .form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkout-form .select2-selection {
    min-height: 48px !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--border-radius) !important;
    background: var(--color-bg-secondary) !important;
}

.checkout-form .select2-selection__rendered {
    line-height: 46px !important;
    color: var(--color-white) !important;
    padding: 0 14px !important;
}

.checkout-form .select2-selection__arrow {
    height: 46px !important;
}

.checkout-form #billing_country_field,
.checkout-form #shipping_country_field,
.checkout-form #billing_address_1_field,
.checkout-form #shipping_address_1_field,
.checkout-form #billing_address_2_field,
.checkout-form #shipping_address_2_field,
.checkout-form #billing_email_field,
.checkout-form #shipping_email_field,
.checkout-form .form-row--full,
.checkout-form .woocommerce-additional-fields .form-row {
    grid-column: 1 / -1;
}

.checkout-form #billing_first_name_field,
.checkout-form #billing_last_name_field,
.checkout-form #shipping_first_name_field,
.checkout-form #shipping_last_name_field,
.checkout-form #billing_city_field,
.checkout-form #billing_state_field,
.checkout-form #billing_postcode_field,
.checkout-form #billing_phone_field,
.checkout-form #shipping_city_field,
.checkout-form #shipping_state_field,
.checkout-form #shipping_postcode_field,
.checkout-form #shipping_phone_field {
    grid-column: span 1;
}

.checkout-order-summary .shop_table th,
.checkout-order-summary .shop_table td {
    padding: 14px 16px !important;
    vertical-align: top;
}

.checkout-order-summary .product-name {
    line-height: 1.55;
}

.woocommerce-checkout #payment {
    margin-top: var(--spacing-lg);
    overflow: hidden;
}

.woocommerce-checkout #payment ul.payment_methods {
    margin: 0;
    padding: 0;
    border: 0;
}

.woocommerce-checkout #payment ul.payment_methods > li {
    padding: 16px 18px;
    border-bottom: 1px solid var(--color-border);
}

.woocommerce-checkout #payment ul.payment_methods > li:last-child {
    border-bottom: 0;
}

.woocommerce-checkout #payment div.payment_box {
    margin-top: 12px;
    border-radius: var(--border-radius);
    padding: 14px 16px !important;
}

.woocommerce-checkout #payment .place-order {
    margin: 0;
    padding: 20px 18px 18px;
}

.woocommerce-checkout #payment .woocommerce-privacy-policy-text,
.woocommerce-checkout #payment .payment_methods,
.woocommerce-checkout #payment p,
.woocommerce-checkout #payment li,
.woocommerce-checkout #payment label {
    color: var(--color-text-secondary);
    line-height: 1.65;
}

.woocommerce-checkout #place_order {
    width: 100%;
    min-height: 54px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 14px 24px !important;
    font-size: var(--font-size-base) !important;
    font-weight: 700 !important;
}

@media (max-width: 767px) {
    .checkout-page .woocommerce form.checkout_coupon {
        grid-template-columns: 1fr;
    }

    .checkout-form .woocommerce-billing-fields__field-wrapper,
    .checkout-form .woocommerce-shipping-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .checkout-form #billing_first_name_field,
    .checkout-form #billing_last_name_field,
    .checkout-form #shipping_first_name_field,
    .checkout-form #shipping_last_name_field,
    .checkout-form #billing_city_field,
    .checkout-form #billing_state_field,
    .checkout-form #billing_postcode_field,
    .checkout-form #billing_phone_field,
    .checkout-form #shipping_city_field,
    .checkout-form #shipping_state_field,
    .checkout-form #shipping_postcode_field,
    .checkout-form #shipping_phone_field {
        grid-column: 1 / -1;
    }
}

.checkout-order-summary h2 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

/* ============================================
   PAGE HEADER / BREADCRUMB
   ============================================ */
.page-header {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-primary) 100%);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.page-header h1 {
    font-size: var(--font-size-2xl);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
}

.breadcrumb {
    padding: var(--spacing-sm) 0;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

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

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

.breadcrumb span {
    margin: 0 var(--spacing-sm);
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */
.woocommerce .products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-md);
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
}

.woocommerce .quantity .qty {
    width: 44px;
    text-align: center;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 6px;
    background: var(--color-bg-secondary);
    color: var(--color-white);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--color-accent) !important;
    color: var(--color-white) !important;
    border-radius: var(--border-radius) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: var(--font-size-sm) !important;
    transition: all var(--transition-base) !important;
    border: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--color-accent-hover) !important;
    box-shadow: var(--shadow-glow) !important;
}

.woocommerce-message,
.woocommerce-info {
    border-top-color: var(--color-accent) !important;
    background: var(--color-bg-card) !important;
    color: var(--color-text-primary) !important;
}

.woocommerce-error {
    border-top-color: var(--color-highlight) !important;
    background: var(--color-bg-card) !important;
    color: var(--color-text-primary) !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: var(--color-bg-secondary) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-white) !important;
    border-radius: var(--border-radius) !important;
    padding: 10px 14px !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--color-accent) !important;
    box-shadow: 0 0 0 3px var(--color-accent-light) !important;
}

.woocommerce form .form-row label {
    color: var(--color-text-secondary) !important;
}

.woocommerce table.shop_table {
    background: var(--color-bg-card) !important;
    border: 1px solid var(--color-border-light) !important;
    color: var(--color-text-primary) !important;
    border-radius: var(--border-radius-lg) !important;
    overflow: hidden;
}

.woocommerce table.shop_table th {
    color: var(--color-text-secondary) !important;
    background: var(--color-bg-secondary) !important;
}

.woocommerce-checkout #payment {
    background: var(--color-bg-card) !important;
    border-radius: var(--border-radius-lg) !important;
    border: 1px solid var(--color-border-light) !important;
}

.woocommerce-checkout #payment div.payment_box {
    background: var(--color-bg-secondary) !important;
    color: var(--color-text-secondary) !important;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: var(--spacing-4xl) 0;
}

.empty-state svg {
    margin: 0 auto var(--spacing-lg);
    color: var(--color-text-muted);
}

.empty-state h2 {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: var(--font-size-xl);
}

/* ============================================
   SCROLLBAR & SELECTION
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-card);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent);
}

::selection {
    background: var(--color-accent);
    color: var(--color-white);
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: var(--spacing-3xl) 0;
}

.reviews-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.reviews-header h2 {
    font-size: var(--font-size-2xl);
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.reviews-score {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-white);
}

.reviews-stars {
    font-size: var(--font-size-lg);
    color: #FBBF24;
    letter-spacing: 2px;
}

.reviews-count {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.review-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: border-color var(--transition-fast);
}

.review-card:hover {
    border-color: var(--color-accent);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-base);
    flex-shrink: 0;
}

.review-card__name {
    display: block;
    color: var(--color-white);
    font-size: var(--font-size-sm);
}

.review-card__time {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

.review-card__stars {
    margin-left: auto;
    color: #FBBF24;
    font-size: var(--font-size-sm);
    letter-spacing: 1px;
}

.review-card__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.review-card__source {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-xs);
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   WHATSAPP CTA SECTION
   ============================================ */
.whatsapp-cta-section {
    padding: var(--spacing-2xl) 0 var(--spacing-3xl);
}

.whatsapp-cta {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl) var(--spacing-3xl);
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    text-align: left;
}

.whatsapp-cta__icon {
    color: #25D366;
    flex-shrink: 0;
}

.whatsapp-cta__text {
    flex: 1;
}

.whatsapp-cta__text h3 {
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: 1.5;
}

.btn--whatsapp {
    background: #25D366;
    color: var(--color-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: var(--font-size-sm);
    white-space: nowrap;
    transition: background var(--transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn--whatsapp:hover {
    background: #1da851;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .whatsapp-cta {
        flex-direction: column;
        text-align: center;
        padding: var(--spacing-xl);
    }
}

/* ============================================
   FOOTER CONTACT (icons)
   ============================================ */
.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

.footer-contact ul li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-accent);
}

.footer-contact ul li a {
    color: var(--color-text-muted);
}

.footer-contact ul li a:hover {
    color: var(--color-accent);
}

.footer-logo img {
    max-width: min(100%, 220px);
    max-height: 96px;
    width: auto;
    height: auto;
}
