/* ============================================
   ELUXBOL - ESTILOS NEUROMARKETING
   Diseño premium para máxima conversión
   ============================================ */

/* ===== VARIABLES GLOBALES ===== */
:root {
    /* Colores primarios */
    --primary: #D10024;
    --primary-dark: #B8001F;
    --primary-light: #FF4D6D;
    --primary-gradient: linear-gradient(135deg, #D10024 0%, #B8001F 100%);
    
    /* Colores secundarios */
    --secondary: #1A1A2E;
    --secondary-light: #2D2D44;
    --accent: #FFD700;
    --success: #28A745;
    --warning: #FFC107;
    --danger: #DC3545;
    
    /* Textos */
    --text-dark: #2D2D2D;
    --text-medium: #555555;
    --text-light: #6C6C6C;
    --text-white: #FFFFFF;
    
    /* Fondos */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-dark: #1A1A2E;
    --bg-gray: #F0F0F0;
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(209,0,36,0.25);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
    
    /* Bordes */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    
    /* Transiciones */
    --transition-fast: all 0.2s ease;
    --transition-base: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 13px;
    --font-size-base: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 28px;
    --font-size-3xl: 36px;
}

/* ===== RESET Y BASE ===== */
* {
    font-family: var(--font-primary);
    box-sizing: border-box;
}

body {
    background: var(--bg-light);
    color: var(--text-dark);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* ===== HEADER ===== */
#top-header {
    background: var(--secondary);
    padding: 8px 0;
    border-bottom: 2px solid var(--primary);
}

#top-header .header-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

#top-header .header-links li {
    display: inline-block;
    margin-right: 20px;
}

#top-header .header-links li a {
    color: rgba(255,255,255,0.8);
    font-size: var(--font-size-sm);
    font-weight: 400;
    transition: var(--transition-fast);
}

#top-header .header-links li a:hover {
    color: var(--primary-light);
    text-decoration: none;
}

#top-header .header-links li a i {
    margin-right: 6px;
    color: var(--primary);
}

/* MAIN HEADER */
#header {
    background: var(--bg-white);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-logo img {
    transition: var(--transition-base);
}

.header-logo img:hover {
    transform: scale(1.05);
}

/* Search Bar */
.header-search {
    position: relative;
    display: flex;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.header-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(209,0,36,0.1);
}

.header-search .input-select {
    border: none;
    background: transparent;
    padding: 12px 18px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    min-width: 120px;
    border-right: 1px solid #e0e0e0;
}

.header-search .input {
    flex: 1;
    border: none;
    padding: 12px 18px;
    background: transparent;
    font-size: var(--font-size-base);
}

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

.header-search .search-btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search .search-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Header Actions */
.header-ctn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    padding-top: 5px;
}

.header-ctn > div {
    position: relative;
}

.header-ctn a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

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

.header-ctn a i {
    font-size: 20px;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

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

/* Cart Dropdown */
.cart-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 20px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    z-index: 999;
}

.dropdown:hover .cart-dropdown,
.dropdown.active .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown .cart-summary {
    border-top: 2px solid var(--bg-gray);
    padding-top: 15px;
    margin-top: 15px;
}

.cart-dropdown .cart-summary h5 {
    font-weight: 700;
    color: var(--primary);
}

.cart-dropdown .cart-btns {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cart-dropdown .cart-btns a {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.cart-dropdown .cart-btns a:first-child {
    background: var(--bg-light);
    color: var(--text-dark);
}

.cart-dropdown .cart-btns a:last-child {
    background: var(--primary-gradient);
    color: #fff;
}

/* ===== NAVIGATION ===== */
#navigation {
    background: var(--secondary);
    padding: 0;
}

#navigation .main-nav {
    display: flex;
    gap: 0;
    margin: 0;
    padding: 0;
}

#navigation .main-nav li {
    list-style: none;
}

#navigation .main-nav li a {
    color: rgba(255,255,255,0.8);
    padding: 15px 25px;
    display: block;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
    position: relative;
}

#navigation .main-nav li a:hover,
#navigation .main-nav li.active a {
    color: #fff;
    background: var(--primary);
}

#navigation .main-nav li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

#navigation .main-nav li a:hover:after,
#navigation .main-nav li.active a:after {
    width: 100%;
}

/* ===== BREADCRUMB ===== */
#breadcrumb {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    padding: 35px 0;
    position: relative;
    overflow: hidden;
}

#breadcrumb:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(209,0,36,0.1);
    border-radius: 50%;
}

.breadcrumb-tree {
    background: transparent;
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb-tree li {
    color: rgba(255,255,255,0.6);
    font-weight: 300;
    font-size: var(--font-size-base);
}

.breadcrumb-tree li a {
    color: #fff;
    font-weight: 400;
    transition: var(--transition-fast);
}

.breadcrumb-tree li a:hover {
    color: var(--primary-light);
}

.breadcrumb-tree li.active {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-tree li+li:before {
    color: rgba(255,255,255,0.3);
    content: "/\00a0";
    padding: 0 5px;
}

/* ===== ASIDE FILTROS ===== */
#aside {
    background: var(--bg-white);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 90px;
    transition: var(--transition-base);
}

#aside:hover {
    box-shadow: var(--shadow-lg);
}

.aside {
    margin-bottom: 30px;
}

.aside-title {
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bg-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.aside-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.aside-title i {
    color: var(--primary);
    font-size: 18px;
}

/* Checkbox Filter */
.checkbox-filter {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkbox-filter .input-checkbox {
    transition: var(--transition-base);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

.checkbox-filter .input-checkbox:hover {
    background: var(--bg-light);
    transform: translateX(4px);
}

.checkbox-filter label {
    font-weight: 400;
    color: var(--text-dark);
    font-size: var(--font-size-base);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    width: 100%;
}

.checkbox-filter label small {
    background: var(--bg-gray);
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-weight: 600;
}

/* Custom Checkbox */
.input-checkbox input[type="checkbox"] {
    display: none;
}

.input-checkbox input[type="checkbox"] + label span {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: var(--transition-fast);
    flex-shrink: 0;
    position: relative;
}

.input-checkbox input[type="checkbox"]:checked + label span {
    background: var(--primary);
    border-color: var(--primary);
    animation: checkboxPop 0.2s ease;
}

@keyframes checkboxPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.input-checkbox input[type="checkbox"]:checked + label span:after {
    content: '\f00c';
    font-family: FontAwesome;
    color: #fff;
    font-size: 12px;
}

/* Price Filter */
.price-filter {
    padding: 10px 0;
}

.price-filter .input-number {
    display: inline-block;
    width: 100%;
}

.price-filter .input-number input {
    width: 100%;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 2px solid #eee;
    padding: 0 15px;
    font-weight: 600;
    text-align: center;
    font-size: var(--font-size-base);
    transition: var(--transition-fast);
}

.price-filter .input-number input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(209,0,36,0.1);
}

/* NoUiSlider Custom */
.noUi-connect {
    background: var(--primary) !important;
}

.noUi-handle {
    border-radius: 50% !important;
    background: #fff !important;
    border: 3px solid var(--primary) !important;
    box-shadow: 0 2px 8px rgba(209,0,36,0.3) !important;
    width: 22px !important;
    height: 22px !important;
    right: -11px !important;
    top: -9px !important;
    cursor: pointer;
    transition: var(--transition-fast);
}

.noUi-handle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(209,0,36,0.4) !important;
}

.noUi-handle:before,
.noUi-handle:after {
    display: none !important;
}

.noUi-target {
    border-radius: 10px !important;
    height: 6px !important;
    border: none !important;
    background: #e9ecef !important;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

/* Botón Filtrar */
#btn {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: var(--font-size-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 100%;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(209,0,36,0.35);
    cursor: pointer;
}

#btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(209,0,36,0.5);
}

#btn:active {
    transform: scale(0.97);
}

#btn:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-base);
}

#btn:hover:after {
    opacity: 1;
    transform: scale(1.2);
}

#btn i {
    margin-right: 8px;
}

.clear-filters {
    display: inline-block;
    color: var(--text-light);
    font-size: var(--font-size-sm);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
    margin-top: 12px;
    text-align: center;
    width: 100%;
}

.clear-filters:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ===== CARDS DE PRODUCTOS ===== */
.product {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-slow);
    margin-bottom: 30px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
    transform: translateY(0);
}

.product:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

/* Product Image */
.product-img {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    background: var(--bg-light);
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition-slow);
}

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

/* Product Labels */
.product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-label span {
    padding: 5px 16px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.product-label .sale {
    background: var(--primary-gradient);
    color: #fff;
    animation: pulse 2s infinite;
}

.product-label .new {
    background: var(--success);
    color: #fff;
}

.product-label .hot {
    background: var(--accent);
    color: var(--secondary);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Product Body */
.product-body {
    padding: 20px 20px 15px;
}

.product-category {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-name {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 46px;
}

.product-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.product-price {
    font-size: var(--font-size-xl);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

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

/* Product Rating */
.product-rating {
    margin-bottom: 10px;
}

.product-rating i {
    color: var(--accent);
    font-size: var(--font-size-sm);
    margin-right: 1px;
}

.product-rating .rating-count {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    margin-left: 5px;
}

/* Product Buttons */
.product-btns {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.product-btns button,
.product-btns a {
    border: none;
    background: var(--bg-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
    color: var(--text-dark);
    font-size: var(--font-size-md);
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.product-btns button:hover,
.product-btns a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(209,0,36,0.35);
}

.product-btns .tooltipp {
    display: none;
}

.product-btns .btn-view {
    flex: 1;
    border-radius: var(--radius-full);
    width: auto;
    padding: 0 18px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: var(--secondary);
    color: #fff;
    gap: 6px;
}

.product-btns .btn-view:hover {
    background: var(--primary);
}

/* Add to Cart */
.add-to-cart {
    padding: 0 20px 20px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 700;
    font-size: var(--font-size-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(209,0,36,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(209,0,36,0.45);
}

.add-to-cart-btn:active {
    transform: scale(0.97);
}

.add-to-cart-btn i {
    font-size: var(--font-size-lg);
}

/* ===== STORE ===== */
.store-filter {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.store-qty {
    font-weight: 500;
    color: var(--text-dark);
}

.store-qty i {
    margin-right: 8px;
    color: var(--primary);
}

.store-grid {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.store-grid li {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-light);
}

.store-grid li.active {
    background: var(--primary);
    color: #fff;
}

.store-grid li:hover:not(.active) {
    background: var(--bg-light);
}

/* ===== PAGINACIÓN ===== */
.store-pagination {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.store-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    padding: 0 12px;
}

.store-pagination li a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(209,0,36,0.3);
}

.store-pagination li.active a {
    background: var(--primary);
    color: #fff;
}

.store-pagination li.disabled a {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* ===== NEWSLETTER ===== */
#newsletter {
    background: var(--secondary);
    padding: 60px 0;
}

#newsletter .newsletter {
    text-align: center;
    color: #fff;
}

#newsletter .newsletter p {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: 20px;
}

#newsletter .newsletter p strong {
    color: var(--primary);
}

#newsletter .newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 30px;
    gap: 10px;
}

#newsletter .newsletter .input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--font-size-base);
}

#newsletter .newsletter .input:focus {
    outline: 2px solid var(--primary);
}

#newsletter .newsletter .newsletter-btn {
    padding: 14px 30px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    color: #fff;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
}

#newsletter .newsletter .newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(209,0,36,0.4);
}

.newsletter-follow {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.newsletter-follow li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #fff;
    transition: var(--transition-fast);
}

.newsletter-follow li a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ===== FOOTER ===== */
#footer {
    background: var(--secondary);
    color: rgba(255,255,255,0.8);
}

#footer .section {
    padding: 60px 0 30px;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    font-size: var(--font-size-lg);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.footer p {
    font-size: var(--font-size-base);
    line-height: 1.8;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
    font-size: var(--font-size-base);
}

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

.footer-links li a i {
    margin-right: 10px;
    color: var(--primary);
    width: 16px;
}

/* Bottom Footer */
#bottom-footer {
    background: rgba(0,0,0,0.3);
    padding: 20px 0;
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.footer-payments li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 22px;
    transition: var(--transition-fast);
}

.footer-payments li a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    font-size: var(--font-size-sm);
    opacity: 0.6;
}

/* ===== ANIMACIONES ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .product-name {
        font-size: var(--font-size-base);
        min-height: 40px;
    }
    .product-price {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 991px) {
    #aside {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    
    .product {
        margin-bottom: 20px;
    }
    
    #top-header .header-links {
        text-align: center;
    }
    
    #top-header .header-links li {
        margin: 0 10px;
    }
    
    .header-search .input-select {
        min-width: 80px;
        font-size: var(--font-size-sm);
    }
    
    .header-search .search-btn {
        padding: 12px 20px;
        font-size: var(--font-size-sm);
    }
    
    .header-ctn {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .product-name {
        font-size: var(--font-size-sm);
        min-height: 36px;
    }
    
    .product-price {
        font-size: var(--font-size-md);
    }
    
    .product-body {
        padding: 15px;
    }
    
    .add-to-cart {
        padding: 0 15px 15px;
    }
    
    .add-to-cart-btn {
        padding: 12px;
        font-size: var(--font-size-sm);
    }
    
    #newsletter .newsletter form {
        flex-direction: column;
        padding: 0 20px;
    }
    
    #newsletter .newsletter p {
        font-size: var(--font-size-xl);
    }
    
    .store-filter {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .store-pagination {
        justify-content: center;
    }
    
    .header-search .input-select {
        min-width: 60px;
        font-size: var(--font-size-xs);
        padding: 10px 12px;
    }
    
    .header-search .input {
        font-size: var(--font-size-sm);
        padding: 10px 12px;
    }
    
    .header-search .search-btn {
        padding: 10px 16px;
        font-size: var(--font-size-xs);
    }
    
    .header-ctn a span {
        display: none;
    }
    
    .cart-dropdown {
        min-width: 280px;
        right: -80px;
    }
}

@media (max-width: 480px) {
    .product-btns .btn-view span {
        display: none;
    }
    
    .product-btns .btn-view {
        padding: 0 12px;
    }
    
    .product-label span {
        font-size: 9px;
        padding: 3px 10px;
    }
    
    .breadcrumb-tree li {
        font-size: var(--font-size-sm);
    }
    
    .store-qty {
        font-size: var(--font-size-sm);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-accent { color: var(--accent) !important; }

.bg-primary { background: var(--primary) !important; }
.bg-secondary { background: var(--secondary) !important; }
.bg-light { background: var(--bg-light) !important; }

.btn-primary-custom {
    background: var(--primary-gradient);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.shadow-hover {
    transition: var(--transition-base);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
