:root {
    --gold-brand: #D4AF37;
    --mist-gray: #E0E0E0;
    --opal-black: #1A1A1A;
    --cream-white: #F9F7F2;
    --light-cream: #F9F7F2;
    --text-black: #1A1A1A;
    --header-black: #1A1A1A;
    --accessories-gray: #E0E0E0;
    --body-line: #E0E0E0;
    --accent: #D4AF37;
    --success-color: #27AE60;
    --danger-color: #E74C3C;
    --warning-color: #f1c40f;
    --card-bg: #F9F7F2;
    --section-bg: #E0E0E0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cream-white);
    color: var(--text-black);
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: var(--header-black);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 3px solid var(--gold-brand);
}

.logo-img {
    max-width: 400px;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 10px;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
.navbar {
    background-color: var(--cream-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    display: flex;
    background-color: var(--cream-white);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid var(--gold-brand);
    transition: all 0.3s ease;
}

.search-bar:focus-within {
    border-color: var(--gold-brand);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;
    color: var(--text-black);
}

.search-bar button {
    background-color: var(--gold-brand);
    border: none;
    color: var(--opal-black);
    padding: 0 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: var(--opal-black);
    color: var(--cream-white);
}

.nav-actions {
    display: flex;
    gap: 15px;
}

.cart-btn, .menu-btn {
    background-color: var(--cream-white);
    border: 2px solid var(--gold-brand);
    color: var(--opal-black);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.cart-btn:hover, .menu-btn:hover {
    background-color: var(--gold-brand);
    color: var(--opal-black);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--danger-color);
    color: var(--cream-white);
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menú Móvil */
.mobile-menu {
    display: none;
    background-color: var(--cream-white);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--opal-black);
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.mobile-menu a:hover {
    background-color: var(--mist-gray);
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--opal-black);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--mist-gray), var(--gold-brand));
    margin: 15px auto 0;
    border-radius: 2px;
}

.products-section,
.accessories-section,
.body-line-section {
    background-color: var(--cream-white);
}

.products-section .section-title,
.accessories-section .section-title,
.body-line-section .section-title {
    color: var(--opal-black);
}

.products-section .section-title::after,
.accessories-section .section-title::after,
.body-line-section .section-title::after {
    background: linear-gradient(to right, var(--mist-gray), var(--gold-brand));
}

.products-section .filter-btn,
.accessories-section .filter-btn,
.body-line-section .filter-btn {
    border-color: var(--gold-brand);
    color: var(--gold-brand);
}

.products-section .filter-btn:hover, 
.products-section .filter-btn.active,
.accessories-section .filter-btn:hover, 
.accessories-section .filter-btn.active,
.body-line-section .filter-btn:hover, 
.body-line-section .filter-btn.active {
    background-color: var(--gold-brand);
    color: var(--opal-black);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ============================================
   FILTROS
   ============================================ */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid var(--gold-brand);
    background-color: var(--cream-white);
    color: var(--gold-brand);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 14px;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--gold-brand);
    color: var(--opal-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel-container {
    position: relative;
    padding: 0 60px;
    overflow: hidden;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 20px 0;
    will-change: transform;
}

/* ============================================
   TARJETAS DE PRODUCTO
   ============================================ */
.product-card {
    min-width: 300px;
    max-width: 300px;
    background-color: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 520px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold-brand);
}

.product-image {
    height: 250px;
    min-height: 250px;
    background: linear-gradient(135deg, var(--cream-white), var(--mist-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    width: 100%;
}

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

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--danger-color);
    color: var(--cream-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    background-color: var(--card-bg);
    gap: 8px;
}

.product-category {
    color: var(--gold-brand);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    flex-shrink: 0;
    line-height: 1;
}

.product-title {
    color: var(--text-black);
    font-size: 1.1rem;
    margin: 4px 0 8px 0;
    font-weight: 700;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6em;
    max-height: 2.6em;
}

/* ============================================
   SECCIÓN DE COMPRESIÓN
   ============================================ */
.product-compression {
    margin: 8px 0;
    padding: 8px 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    flex-shrink: 0;
}

.compression-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #D4AF37, #B8960C);
    color: var(--opal-black);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    border: 2px solid rgba(249, 247, 242, 0.2);
}

.compression-badge i {
    font-size: 10px;
}

/* ============================================
   SECCIÓN DE TALLAS EN PRODUCTOS
   ============================================ */
.product-sizes {
    margin: 8px 0;
    padding: 8px 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    flex-shrink: 0;
}

.sizes-label {
    display: block;
    font-size: 11px;
    color: var(--opal-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    line-height: 1;
}

.sizes-container {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.size-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 24px;
    padding: 0 6px;
    background-color: var(--cream-white);
    color: var(--opal-black);
    font-size: 12px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(26, 26, 26, 0.3);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    line-height: 1;
}

/* ============================================
   SECCIÓN DE COLORES EN PRODUCTOS
   ============================================ */
.product-colors {
    margin: 8px 0;
    padding: 8px 0;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
    flex-shrink: 0;
}

.colors-label {
    display: block;
    font-size: 11px;
    color: var(--opal-black);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    line-height: 1;
}

.colors-container {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--cream-white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    line-height: 1;
    flex-shrink: 0;
}

.color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    z-index: 2;
}

.color-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
}

/* ============================================
   FOOTER DE PRODUCTO
   ============================================ */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 2px solid rgba(26, 26, 26, 0.1);
    flex-shrink: 0;
    min-height: 50px;
}

.product-price {
    font-size: 1.4rem;
    color: var(--gold-brand);
    font-weight: 700;
    line-height: 1;
}

.add-to-cart {
    background-color: var(--gold-brand);
    color: var(--opal-black);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.add-to-cart:hover {
    background-color: var(--opal-black);
    color: var(--cream-white);
    transform: scale(1.1);
}

.add-to-cart:focus {
    outline: 2px solid var(--opal-black);
    outline-offset: 2px;
}

/* Botones del Carousel */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--cream-white);
    border: 2px solid var(--gold-brand);
    color: var(--gold-brand);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.carousel-btn:hover {
    background-color: var(--gold-brand);
    color: var(--opal-black);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:focus {
    outline: 2px solid var(--opal-black);
    outline-offset: 2px;
}

.prev-btn { left: 0; }
.next-btn { right: 0; }

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--mist-gray);
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    padding: 0;
}

.indicator.active {
    background-color: var(--gold-brand);
    width: 30px;
    border-radius: 6px;
}

.indicator:focus {
    outline: 2px solid var(--opal-black);
    outline-offset: 2px;
}

/* ============================================
   MODAL DEL CARRITO
   ============================================ */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: flex-end;
}

.cart-modal.active {
    display: flex;
}

.cart-content {
    background-color: var(--cream-white);
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slideIn 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cart-header {
    background: linear-gradient(135deg, var(--gold-brand), #B8960C);
    color: var(--opal-black);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
}

.close-cart {
    background: none;
    border: none;
    color: var(--opal-black);
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background-color: rgba(249, 247, 242, 0.2);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--cream-white);
    border-radius: 15px;
    margin-bottom: 15px;
    align-items: center;
    animation: fadeIn 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid var(--light-cream);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background-color: var(--mist-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-brand);
    font-size: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 5px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.cart-item-price {
    color: var(--gold-brand);
    font-weight: 600;
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-item-actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 5px;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-black);
}

.cart-item-actions button:hover {
    transform: scale(1.2);
}

.cart-item-actions button:focus {
    outline: 2px solid var(--gold-brand);
    border-radius: 4px;
}

.empty-cart {
    text-align: center;
    color: var(--text-black);
    padding: 40px;
    font-style: italic;
}

.cart-footer {
    border-top: 2px solid var(--light-cream);
    padding: 25px;
    background-color: var(--cream-white);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-black);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold-brand), #B8960C);
    color: var(--opal-black);
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
}

.checkout-btn:hover:not(.disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.checkout-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.checkout-btn:focus {
    outline: 2px solid var(--opal-black);
    outline-offset: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--header-black);
    color: var(--cream-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold-brand);
}

.footer-section p, .footer-section a {
    color: var(--mist-gray);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--cream-white);
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
    color: var(--cream-white);
}

.social-btn.facebook {
    background-color: #1877F2;
}

.social-btn.facebook:hover {
    background-color: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.social-btn.twitter {
    background-color: #1DA1F2;
}

.social-btn.twitter:hover {
    background-color: #0d95e8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-btn.whatsapp {
    background-color: #25D366;
}

.social-btn.whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.social-btn:focus {
    outline: 2px solid var(--gold-brand);
    outline-offset: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(249, 247, 242, 0.3);
    padding: 25px 0;
    text-align: center;
    color: var(--mist-gray);
    font-size: 0.9rem;
}

/* ============================================
   SECCIÓN INFORMATIVA: MEDIAS DE COMPRESIÓN
   ============================================ */
.info-compresion-section {
    background: linear-gradient(135deg, #E0E0E0 0%, #F9F7F2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.info-compresion-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-compresion-section .section-title {
    color: var(--opal-black);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-black);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
    background: var(--cream-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.info-row.reverse {
    flex-direction: row-reverse;
}

.info-image-side {
    flex: 1;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.info-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.info-row:hover .info-image-side img {
    transform: scale(1.05);
}

.info-content-side {
    flex: 1;
    padding: 40px;
    position: relative;
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold-brand), #B8960C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--opal-black);
    font-size: 28px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease;
}

.info-row:hover .info-icon {
    transform: rotate(360deg);
}

.info-content-side h3 {
    color: var(--opal-black);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-content-side p {
    color: var(--text-black);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-black);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

.info-list li i {
    color: var(--gold-brand);
    font-size: 16px;
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.compresion-levels {
    background: var(--cream-white);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.levels-title {
    text-align: center;
    color: var(--opal-black);
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.level-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: var(--light-cream);
    transition: transform 0.3s ease;
}

.level-item:hover {
    transform: translateY(-5px);
}

.level-badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--cream-white);
}

.level-badge.suave {
    background: linear-gradient(135deg, #52c234, #61b15a);
}

.level-badge.moderada {
    background: linear-gradient(135deg, #f1c40f, #f39c12);
}

.level-badge.firme {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.level-item h4 {
    color: var(--opal-black);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.level-item p {
    color: var(--text-black);
    font-size: 1rem;
    line-height: 1.5;
}

/* ============================================
   NOTIFICACIONES
   ============================================ */
.cart-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold-brand), #B8960C);
    color: #1A1A1A;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 3000;
    animation: slideUp 0.3s ease;
    font-weight: 600;
    max-width: 300px;
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .info-row,
    .info-row.reverse {
        flex-direction: column;
    }
    
    .info-image-side {
        width: 100%;
        min-height: 300px;
    }
    
    .info-content-side {
        padding: 30px;
    }
    
    .info-content-side h3 {
        font-size: 1.6rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        max-width: 200px;
        max-height: 120px;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .product-card {
        min-width: 280px;
        max-width: 280px;
        min-height: 500px;
    }
    
    .product-image {
        height: 220px;
        min-height: 220px;
    }
    
    .product-info {
        padding: 15px;
        gap: 6px;
    }
    
    .product-title {
        font-size: 1rem;
        min-height: 2.4em;
        max-height: 2.4em;
        margin: 2px 0 6px 0;
    }
    
    .product-category {
        font-size: 10px;
    }
    
    .nav-container {
        flex-wrap: wrap;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .info-compresion-section {
        padding: 60px 0;
    }
    
    .info-image-side {
        min-height: 250px;
    }
    
    .info-content-side {
        padding: 25px;
    }
    
    .info-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .info-content-side h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .info-content-side p {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .info-row {
        margin-bottom: 40px;
    }
    
    .compresion-levels {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .levels-title {
        font-size: 1.5rem;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .compression-badge {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .compression-badge i {
        font-size: 9px;
    }

    .size-badge {
        min-width: 26px;
        height: 22px;
        font-size: 11px;
        padding: 0 5px;
    }
    
    .color-dot {
        width: 16px;
        height: 16px;
    }
    
    .sizes-label, .colors-label {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .product-sizes, .product-colors, .product-compression {
        margin: 6px 0;
        padding: 6px 0;
    }

    .product-footer {
        padding-top: 12px;
        min-height: 45px;
    }
    
    .product-price {
        font-size: 1.25rem;
    }
    
    .add-to-cart {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo-img {
        max-width: 150px;
        max-height: 90px;
    }
    
    .cart-content {
        max-width: 100%;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .carousel-container {
        padding: 0 30px;
    }
    
    .product-card {
        min-width: 260px;
        max-width: 260px;
        min-height: 480px;
    }
    
    .product-image {
        height: 200px;
        min-height: 200px;
    }
    
    .product-info {
        padding: 12px;
        gap: 5px;
    }
    
    .product-title {
        font-size: 0.95rem;
        min-height: 2.2em;
        max-height: 2.2em;
    }
    
    .product-price {
        font-size: 1.15rem;
    }

    .info-image-side {
        min-height: 200px;
    }
    
    .info-content-side {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .info-content-side h3 {
        font-size: 1.2rem;
    }
    
    .info-list li {
        font-size: 0.9rem;
    }
    
    .cart-notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }

    .compression-badge {
        padding: 4px 8px;
        font-size: 9px;
    }

    .size-badge {
        min-width: 24px;
        height: 20px;
        font-size: 10px;
        padding: 0 4px;
    }
    
    .color-dot {
        width: 14px;
        height: 14px;
    }

    .product-footer {
        padding-top: 10px;
        min-height: 42px;
    }
    
    .add-to-cart {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

/* Accesibilidad - Reducir movimiento */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .info-row:hover .info-icon {
        transform: none;
    }
}

/* ============================================
   MODAL DE REGISTRO (NUEVO)
   ============================================ */
.registration-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 4000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.registration-content {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    padding: 30px;
    animation: modalSlide 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.registration-header {
    text-align: center;
    margin-bottom: 25px;
}

.registration-header h3 {
    color: var(--gold-brand);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.registration-header p {
    color: #666;
    font-size: 0.95rem;
}

.registration-modal .form-group {
    margin-bottom: 15px;
}

.registration-modal .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1A1A1A;
    font-size: 0.9rem;
}

.registration-modal .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.registration-modal .form-control:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.registration-modal .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37, #B8960C);
    color: #1A1A1A;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 5px;
}

.registration-modal .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.registration-modal .required::after {
    content: ' *';
    color: #E74C3C;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   BADGE AGOTADO EN PRODUCTO (NUEVO)
   ============================================ */
.product-image {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--danger-color);
    color: var(--cream-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
}

/* Botón de notificación re-stock (campana) */
.add-to-cart[style*="background:#E74C3C"] {
    background-color: #E74C3C !important;
}

.add-to-cart[style*="background:#E74C3C"]:hover {
    background-color: #c0392b !important;
    transform: scale(1.1);
}

/* Responsive del modal */
@media (max-width: 480px) {
    .registration-content {
        padding: 25px 20px;
        width: 95%;
    }
    
    .registration-header h3 {
        font-size: 1.3rem;
    }
}