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

:root {
    --primary-color: #0077be;
    --secondary-color: #005a8d;
    --accent-color: #ff6b35;
    --accent-hover: #e85a2a;
    --success-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f4f7fa;
    --white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Loading Screen */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

#loading.hide {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,255,255,0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    color: white;
    font-size: 1.5em;
    margin-top: 20px;
    font-weight: 700;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar Premium */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

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

.logo-icon {
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    box-shadow: 0 4px 10px rgba(0, 119, 190, 0.3);
    animation: pulse 2s infinite;
}

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

.logo-text h2 {
    color: var(--primary-color);
    font-size: 1.6em;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-text p {
    font-size: 0.8em;
    color: var(--text-light);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1em;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.cart-icon-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    font-size: 1em;
    position: relative;
}

.cart-icon-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cart-badge {
    background: white;
    color: var(--accent-color);
    border-radius: 50%;
    padding: 3px 9px;
    font-size: 0.85em;
    font-weight: bold;
    animation: bounce 0.5s;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    cursor: pointer;
    color: var(--primary-color);
}

/* Slider Premium con Parallax */
.slider {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.slide-text h1 {
    font-size: 4.5em;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
    animation: fadeInDown 1s;
    font-weight: 800;
    line-height: 1.2;
}

.slide-text p {
    font-size: 1.5em;
    margin-bottom: 35px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1s 0.3s backwards;
    line-height: 1.6;
}

.slide-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.2em;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    animation: fadeInUp 1s 0.6s backwards;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.slide-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.5);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 2;
}

.slider-arrow {
    background: rgba(255,255,255,0.3);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 1.5em;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
    transform: scale(1.1);
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: white;
    width: 40px;
    border-radius: 7px;
}

/* Barra de búsqueda */
.search-bar-container {
    background: white;
    padding: 20px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: -40px;
    position: relative;
    z-index: 100;
    border-radius: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 30px;
    font-size: 1em;
    transition: all 0.3s;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

.search-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Badges de Confianza */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 50px 30px;
    background: var(--bg-light);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.trust-badge i {
    font-size: 2.5em;
    color: var(--primary-color);
}

.trust-badge-text h4 {
    color: var(--text-dark);
    font-size: 1.2em;
}

.trust-badge-text p {
    color: var(--text-light);
    font-size: 0.9em;
}

/* Secciones */
section {
    padding: 100px 30px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.2em;
}

/* Por qué elegirnos */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
}

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

.feature-icon {
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 1.3em;
    font-weight: 700;
}

/* Historia */
#nosotros {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

#nosotros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(0,119,190,0.05)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.historia-wrapper {
    position: relative;
    z-index: 1;
}

.historia-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.historia-text {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.historia-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 3px solid var(--bg-light);
}

.historia-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 119, 190, 0.3);
}

.historia-badge i {
    margin-right: 8px;
}

.historia-text h3 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
}

.historia-body {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.1em;
}

.historia-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.historia-body strong {
    color: var(--primary-color);
    font-weight: 700;
}

.historia-img-container {
    position: relative;
}

.historia-img-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    height: 500px;
    border: 5px solid white;
}

.historia-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.historia-img-wrapper:hover .historia-img {
    transform: scale(1.1);
}

.historia-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.1), rgba(0, 168, 232, 0.1));
    opacity: 0;
    transition: opacity 0.3s;
}

.historia-img-wrapper:hover .historia-img-overlay {
    opacity: 1;
}

.historia-decorative {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.decorative-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

.historia-valores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.valor-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05), rgba(0, 168, 232, 0.05));
    transition: left 0.5s;
}

.valor-card:hover::before {
    left: 0;
}

.valor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 190, 0.2);
}

.valor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2em;
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.valor-card:hover .valor-icon {
    transform: scale(1.1) rotate(5deg);
}

.valor-card h4 {
    color: var(--primary-color);
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.valor-card p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    font-size: 1em;
}

/* Cita Inspiracional */
.historia-quote {
    margin: 40px 0 20px 0;
    position: relative;
}

.quote-content {
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 119, 190, 0.3);
}

.quote-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.quote-icon {
    font-size: 4em;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
}

.quote-text {
    font-size: 1.8em;
    font-style: italic;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 30px 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.quote-line {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.5);
}

.quote-name {
    font-size: 1.2em;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Productos con búsqueda */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Sección de productos mejorada */
#productos {
    background: var(--bg-light);
    padding: 50px 30px 100px 30px;
}

#productos .container {
    position: relative;
}

.category-filters-wrapper {
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05) 0%, rgba(0, 168, 232, 0.05) 100%);
    padding: 30px 40px;
    border-radius: 20px;
    margin: 40px 0 50px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 119, 190, 0.1);
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.category-btn {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    padding: 14px 32px;
    border-radius: 35px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.2);
}

.category-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.4);
    transform: translateY(-2px);
}

/* Productos destacados */
.featured-products {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 30px;
    margin-bottom: 50px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.featured-products .section-title h2,
.featured-products .section-title p {
    color: white;
}

/* Grid de productos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 20px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    position: relative;
}

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

.product-img-container {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.product-icon {
    font-size: 6em;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
}

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    color: var(--primary-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-info {
    padding: 30px;
}

.product-name {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95em;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f5f5f5;
}

.product-price {
    font-size: 2em;
    font-weight: 800;
    color: var(--primary-color);
}

.product-price small {
    font-size: 0.5em;
    color: var(--text-light);
    font-weight: 600;
}

.add-cart-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1em;
}

.add-cart-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
}

.view-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    color: white;
    font-size: 1.2em;
    font-weight: 700;
    gap: 10px;
}

.product-card:hover .view-product-overlay {
    opacity: 1;
}

.view-product-overlay i {
    font-size: 1.5em;
}

/* Modal Producto Detalle */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    padding: 20px;
    overflow-y: auto;
}

.product-modal.active {
    display: flex;
    animation: fadeIn 0.3s;
}

.product-modal-content {
    background: white;
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.close-product-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e74c3c;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.close-product-modal:hover {
    background: #c0392b;
    transform: rotate(90deg) scale(1.1);
}

.product-modal-body {
    display: contents;
}

.product-modal-image {
    background: var(--bg-light);
    border-radius: 25px 0 0 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-modal-img-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.product-modal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
}

.product-modal-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.product-modal-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-modal-name {
    font-size: 2.5em;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

.product-modal-description {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.product-modal-description h3 {
    color: var(--primary-color);
    font-size: 1.3em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-modal-description p {
    color: var(--text-dark);
    font-size: 1.1em;
    line-height: 1.8;
    margin: 0;
}

.product-modal-price-section {
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.1), rgba(0, 168, 232, 0.1));
    border-radius: 15px;
    text-align: center;
}

.product-modal-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 1em;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 3em;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-unit {
    font-size: 0.9em;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.product-modal-actions {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.product-modal-add-btn {
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.4);
}

.product-modal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 119, 190, 0.5);
}

.product-modal-add-btn i {
    font-size: 1.2em;
}

.product-modal-close-btn {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e0e0e0;
    padding: 15px 30px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-modal-close-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: var(--bg-light);
}

/* Testimonios */
.testimonials {
    background: var(--bg-light);
    padding: 100px 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s;
}

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

.testimonial-quote {
    font-size: 3em;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    font-weight: 700;
}

.author-info h5 {
    color: var(--text-dark);
    font-weight: 700;
}

.author-info .stars {
    color: #ffd700;
}

/* FAQ */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    transition: all 0.3s;
    font-size: 1.1em;
}

.faq-question:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contacto */
#contacto {
    background: var(--bg-light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 35px;
    font-weight: 700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.info-icon {
    background: linear-gradient(135deg, var(--primary-color), #00a8e8);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3em;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 119, 190, 0.3);
}

.info-text h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 700;
    font-size: 1.1em;
}

.info-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1em;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.15em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 119, 190, 0.3);
}

/* Footer Premium */
footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 25px;
    color: white;
    font-size: 1.4em;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
}

/* WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Modal Carrito Premium */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.cart-modal.active {
    display: flex;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cart-content {
    background: white;
    border-radius: 25px;
    padding: 45px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
    animation: slideUp 0.3s;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 3px solid #f0f0f0;
}

.cart-header h2 {
    color: var(--text-dark);
    font-size: 2.2em;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.close-cart {
    background: #e74c3c;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background: #c0392b;
    transform: rotate(90deg) scale(1.1);
}

.cart-items {
    margin-bottom: 35px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    margin-bottom: 18px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.cart-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.cart-item-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.cart-item-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 1.5em;
    color: var(--primary-color);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.15em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05em;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.15);
}

.quantity {
    font-weight: 800;
    min-width: 40px;
    text-align: center;
    font-size: 1.2em;
    color: var(--text-dark);
}

.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.remove-item:hover {
    background: #c0392b;
    transform: scale(1.05);
}

.cart-form {
    border-top: 3px solid #e8e8e8;
    border-bottom: 3px solid #e8e8e8;
    padding: 25px 0;
    margin: 25px 0;
}

.cart-form h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-form .form-group {
    margin-bottom: 20px;
}

.cart-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 1em;
    transition: all 0.3s;
    font-family: inherit;
}

.cart-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 119, 190, 0.1);
}

.cart-total {
    border-top: 3px solid #e8e8e8;
    padding-top: 25px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.7em;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.whatsapp-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.25em;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.empty-cart {
    text-align: center;
    padding: 70px 20px;
    color: var(--text-light);
}

.empty-cart-icon {
    font-size: 6em;
    margin-bottom: 25px;
    opacity: 0.5;
}

.empty-cart h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.notification {
    position: fixed;
    top: 100px;
    right: 25px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 20px 35px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 3000;
    display: none;
    font-weight: 700;
    font-size: 1.05em;
    animation: slideInRight 0.4s ease-out;
}

.notification.show {
    display: block;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.15);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    .slider {
        height: 300px;
    }

    .slide-text h1 {
        font-size: 1.5em;
    }

    .slide-text p {
        font-size: 0.85em;
    }

    .historia-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .historia-text {
        padding: 30px 25px;
    }
    
    .historia-text h3 {
        font-size: 2em;
    }
    
    .historia-valores {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .historia-img-wrapper {
        height: 350px;
    }
    
    .quote-content {
        padding: 40px 30px;
    }
    
    .quote-text {
        font-size: 1.4em;
    }
    
    .quote-icon {
        font-size: 3em;
        top: 10px;
        left: 20px;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .product-modal-content {
        grid-template-columns: 1fr;
        max-width: 95%;
        max-height: 95vh;
    }

    .product-modal-image {
        border-radius: 25px 25px 0 0;
        padding: 20px;
    }

    .product-modal-img-container {
        min-height: 250px;
    }

    .product-modal-info {
        padding: 30px 20px;
    }

    .product-modal-name {
        font-size: 1.8em;
    }

    .price-value {
        font-size: 2.5em;
    }

    /* PRODUCTOS MÁS DELICADOS EN MÓVIL */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        padding: 0;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 2px 8px rgba(0, 119, 190, 0.08);
    }

    .product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 119, 190, 0.12);
    }

    .product-image {
        height: 140px;
        object-fit: cover;
    }

    .product-card-content {
        padding: 12px;
        background: var(--white);
    }

    .product-name {
        font-size: 0.9em;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--text-dark);
    }

    .product-description {
        font-size: 0.75em;
        line-height: 1.4;
        margin-bottom: 8px;
        color: var(--text-light);
    }

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

    .add-to-cart-btn {
        width: 100%;
        padding: 8px;
        font-size: 0.85em;
    }

    /* CARRITO MEJORADO PARA MÓVIL */
    .cart-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.7);
        z-index: 2000;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(5px);
    }

    .cart-modal.active {
        display: flex;
        animation: fadeIn 0.3s;
    }

    .cart-content {
        width: 95%;
        max-height: 90vh;
        max-width: 500px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        background: white;
        overflow: hidden;
    }

    .cart-header {
        padding: 20px;
        background: linear-gradient(135deg, var(--primary-color), #00a8e8);
        color: white;
        border-radius: 20px 20px 0 0;
        flex-shrink: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-header h2 {
        font-size: 1.3em;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .close-cart {
        background: rgba(255,255,255,0.2);
        border: none;
        color: white;
        font-size: 1.5em;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
    }

    .close-cart:hover {
        background: rgba(255,255,255,0.3);
        transform: rotate(90deg);
    }

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

    .cart-item {
        padding: 15px;
        border-bottom: 1px solid var(--bg-light);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

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

    .cart-item-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .cart-item-image,
    .cart-item-icon {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

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

    .cart-item-name {
        font-weight: 600;
        font-size: 0.95em;
        color: var(--text-dark);
    }

    .cart-item-price {
        font-size: 0.9em;
        color: var(--primary-color);
        font-weight: 600;
    }

    .cart-item-controls {
        display: flex;
        align-items: center;
        gap: 8px;
        background: var(--bg-light);
        padding: 8px;
        border-radius: 10px;
        width: 100%;
    }

    .qty-btn {
        background: var(--primary-color);
        color: white;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.85em;
        transition: all 0.2s;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .qty-btn:active {
        transform: scale(0.95);
    }

    .qty-btn:hover {
        background: var(--secondary-color);
    }

    .quantity {
        font-weight: 600;
        min-width: 40px;
        text-align: center;
        flex: 1;
    }

    .remove-item {
        background: #ff6b6b;
        color: white;
        border: none;
        padding: 6px 10px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.8em;
        transition: all 0.2s;
        flex-shrink: 0;
    }

    .remove-item:active {
        background: #ff4757;
    }

    .remove-item:hover {
        background: #ff5252;
    }

    .empty-cart {
        padding: 60px 20px;
        text-align: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .empty-cart-icon {
        font-size: 3em;
        color: var(--primary-color);
        margin-bottom: 15px;
        opacity: 0.3;
    }

    .empty-cart h3 {
        font-size: 1em;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .empty-cart p {
        font-size: 0.85em;
        color: var(--text-light);
    }

    .cart-total {
        padding: 20px;
        border-top: 2px solid var(--bg-light);
        background: var(--white);
        border-radius: 0 0 20px 20px;
        flex-shrink: 0;
    }

    .total-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding: 15px;
        background: var(--bg-light);
        border-radius: 12px;
        font-weight: 600;
        font-size: 1.2em;
        color: var(--text-dark);
    }

    .total-row span:last-child {
        font-size: 1.4em;
        font-weight: 700;
        color: var(--accent-color);
    }

    .whatsapp-btn {
        width: 100%;
        padding: 13px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
        color: white;
        font-weight: 600;
        cursor: pointer;
        font-size: 0.95em;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .whatsapp-btn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }

    .whatsapp-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    #checkoutBtn {
        width: 100%;
        padding: 13px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
        color: white;
        font-weight: 600;
        cursor: pointer;
        font-size: 0.95em;
        transition: all 0.3s;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    #checkoutBtn:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }

    #checkoutBtn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 1.8em;
    }

    /* FAQ MEJORADO */
    .faq-section {
        margin-top: 30px;
    }

    .faq-container {
        padding: 0;
    }

    .faq-item {
        margin-bottom: 10px;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid var(--bg-light);
        background: white;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95em;
        background: white;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
        transition: all 0.3s;
        color: var(--text-dark);
    }

    .faq-question:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }

    .faq-item.active .faq-question {
        background: var(--primary-color);
        color: white;
    }

    .faq-answer {
        padding: 15px;
        font-size: 0.9em;
        background: var(--bg-light);
        color: var(--text-dark);
        line-height: 1.6;
    }

    .faq-item.active .faq-answer {
        max-height: 500px;
    }

    .faq-question i {
        transition: transform 0.3s;
        color: currentColor;
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
}

@media (max-width: 600px) {
    .slide-text h1 {
        font-size: 2.2em;
    }

    .slide-text p {
        font-size: 1.1em;
    }

    .section-title h2 {
        font-size: 2.2em;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cart-content {
        padding: 30px 20px;
    }

    .search-bar-container {
        margin-top: 20px;
    }

    .search-bar {
        flex-direction: column;
    }

    .category-filters-wrapper {
        padding: 20px 15px;
        margin: 30px 0 40px 0;
    }

    .category-btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .product-modal-content {
        grid-template-columns: 1fr;
        max-width: 95%;
    }

    .product-modal-image {
        border-radius: 25px 25px 0 0;
        padding: 20px;
    }

    .product-modal-img-container {
        min-height: 300px;
    }

    .product-modal-info {
        padding: 30px 20px;
    }

    .product-modal-name {
        font-size: 2em;
    }

    .product-modal-actions {
        flex-direction: column;
    }

    .product-modal-add-btn,
    .product-modal-close-btn {
        width: 100%;
    }
    
    .quote-content {
        padding: 30px 20px;
    }
    
    .quote-text {
        font-size: 1.2em;
    }
    
    .quote-icon {
        font-size: 2em;
        top: 10px;
        left: 15px;
    }
}

html {
    scroll-behavior: smooth;
}
