/* ========================================
   VARIABLES Y RESET
======================================== */
:root {
    --primary-color: #00d084;
    --primary-dark: #00a86a;
    --secondary-color: #1a1a2e;
    --accent-color: #e94560;
    --text-dark: #1a1a2e;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --border-color: #e0e0e0;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-dark: linear-gradient(135deg, var(--secondary-color), #16213e);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* ========================================
   NAVEGACIÓN - HEADER PREMIUM
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #154140;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: var(--transition);
    height: 90px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: #154140;
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.4);
}

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

/* Logo Premium */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0, 208, 132, 0.3));
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo:hover img {
    filter: drop-shadow(0 0 15px rgba(0, 208, 132, 0.6));
}

/* Menú Centrado */
.nav-menu {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 0;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
}

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

/* Ocultar elementos del menú móvil en desktop */
.nav-menu-header,
.nav-menu-footer,
.close-menu-btn,
.nav-menu-logo,
.nav-menu-social,
.nav-menu-contact {
    display: none !important;
}

.nav-menu a i {
    display: none !important;
}

.nav-menu li {
    display: block;
}

/* Iconos Derecha */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Hamburger - Oculto en desktop */
.hamburger {
    display: none;
}

/* Overlay - Oculto en desktop */
.nav-menu-overlay {
    display: none;
}

/* ========================================
   BUSCADOR
======================================== */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.search-form.active {
    opacity: 1;
    visibility: visible;
    width: 300px;
}

.search-input {
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-family: inherit;
    flex: 1;
    outline: none;
    color: var(--text-dark);
}

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

.search-submit-btn {
    background: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-submit-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.search-toggle {
    display: flex;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    width: auto;
    height: auto;
}

.search-toggle:hover {
    background: transparent;
    transform: none;
}

.search-toggle i {
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.search-toggle:hover i {
    color: var(--primary-color);
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    text-decoration: none;
}

.nav-icon-btn:hover {
    background: rgba(0, 208, 132, 0.2);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-icon-btn.active {
    background: rgba(233, 69, 96, 0.2);
    color: var(--accent-color);
}

.favorites-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(233, 69, 96, 0.5);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 208, 132, 0.5);
}

.cart-icon:hover {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/banners/baner.png') no-repeat center center/cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--primary-color);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 208, 132, 0.3);
    border-radius: 5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

/* ========================================
   BOTONES
======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 208, 132, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 208, 132, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

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

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* ========================================
   ANIMACIONES DE SCROLL
======================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease 0.6s forwards;
}

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

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

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

/* ========================================
   CARACTERÍSTICAS
======================================== */
.features {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

/* ========================================
   CATEGORÍAS
======================================== */
.categories-section {
    padding: 80px 0;
    background: #9cac7f;
}

.categories-header {
    text-align: left;
    margin-bottom: 50px;
}

.categories-header .section-title {
    display: inline-block;
    font-size: 2rem;
    color: var(--secondary-color);
    position: relative;
}

.categories-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #174441;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    justify-items: center;
}

.category-card {
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    background: #174441 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    position: relative;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: #174441;
    opacity: 0.3;
    z-index: -1;
    filter: blur(10px);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.category-card h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   SECCIONES GENERALES
======================================== */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* ========================================
   PRODUCTOS DESTACADOS
======================================== */
.featured-products {
    padding: 100px 0;
}

.featured-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.featured-products .product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-image {
    width: 100%;
    height: 220px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(1) contrast(1.05);
}

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

.product-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--text-muted);
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.price-new {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 208, 132, 0.4);
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   BANNER PROMOCIONAL
======================================== */
.promo-banner {
    padding: 80px 0;
    background: var(--gradient);
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.promo-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.promo-text p {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.95;
}

.promo-code {
    margin-top: 15px !important;
}

.promo-code span {
    background: var(--white);
    color: var(--primary-color);
    padding: 5px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ========================================
   TESTIMONIOS
======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--light-bg);
}

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

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

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

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--secondary-color);
    font-size: 1rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   NEWSLETTER
======================================== */
.newsletter {
    padding: 80px 0;
    background: var(--gradient-dark);
}

.newsletter-content {
    text-align: center;
    color: var(--white);
}

.newsletter-content > i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-content p {
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.3);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 70px 0 30px;
}

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

.footer-col .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-col .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

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

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.contact-info i {
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

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

/* ========================================
   HEADER DE PÁGINA
======================================== */
.page-header {
    padding: 150px 0 80px;
    background: url('../img/logo-3.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========================================
   FILTROS DE PRODUCTOS
======================================== */
.filter-group {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.filter-group > h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group > h3 i {
    color: var(--primary-color);
}

.filter-category,
.filter-price,
.filter-rating {
    margin-bottom: 30px;
}

.filter-category h4,
.filter-price h4,
.filter-rating h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.checkbox-label:hover {
    color: var(--primary-color);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.price-slider {
    width: 100%;
    height: 5px;
    accent-color: var(--primary-color);
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========================================
   PÁGINA DE PRODUCTOS (CON SIDEBAR)
======================================== */
.products-page {
    padding: 80px 0;
}

.products-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

.products-sidebar {
    position: sticky;
    top: 120px;
}

.products-content {
    width: 100%;
}

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

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.btn-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.btn-favorite:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.btn-favorite.active {
    background: var(--accent-color);
    color: var(--white);
}

.btn-favorite.active i {
    font-weight: 900;
}

.product-image {
    width: 100%;
    height: 220px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(1) contrast(1.05);
}

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

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    color: #ffc107;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.product-rating span {
    color: var(--text-muted);
    margin-left: 5px;
}

.product-price {
    margin-bottom: 15px;
}

.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.85rem;
    margin-right: 8px;
}

.price-new {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
}

.btn-add-cart:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 208, 132, 0.4);
}

.page-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 10px;
    transition: var(--transition);
}

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

/* ========================================
   PÁGINA NOSOTROS
======================================== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* MISIÓN Y VISIÓN */
.mission-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.mission-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.mission-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

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

/* EQUIPO */
.team-section {
    padding: 100px 0;
}

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

.team-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.team-card h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* POR QUÉ ELEGIRNOS */
.why-us-section {
    padding: 100px 0;
    background: var(--light-bg);
}

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

.why-us-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: #154140;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.why-us-item h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.why-us-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA SECTION */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* ========================================
   PÁGINA CONTACTO
======================================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.contact-form-wrapper > p,
.contact-info-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

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

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

.checkbox-group .checkbox-label {
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* CONTACT CARDS */
.contact-cards {
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 208, 132, 0.15);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-card-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* REDES SOCIALES */
.social-section {
    margin-bottom: 40px;
}

.social-section h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 500;
    transition: var(--transition);
}

.social-link i {
    font-size: 1.5rem;
}

.social-link.facebook {
    background: #e8f4fd;
    color: #1877f2;
}

.social-link.instagram {
    background: #fce4ec;
    color: #e4405f;
}

.social-link.twitter {
    background: #e8f4fd;
    color: #1da1f2;
}

.social-link.youtube {
    background: #fce4ec;
    color: #ff0000;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* MAPA */
.map-container {
    border-radius: 15px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 250px;
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

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

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question h3 i {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 992px) {
    .products-wrapper {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }

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

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

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

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

@media (max-width: 768px) {
    /* ========================================
       HEADER MOBILE - OPTIMIZADO
    ======================================== */
    .navbar {
        height: 60px;
        min-height: 60px;
        background: linear-gradient(135deg, #154140 0%, #0f3633 100%);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    }

    .navbar.scrolled {
        background: linear-gradient(135deg, #0f3633 0%, #0a2a27 100%);
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    }

    .nav-container {
        padding: 0 12px 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        width: 100%;
    }

    /* Logo más pequeño y nítido en mobile */
    .logo {
        gap: 0;
        flex-shrink: 0;
        flex-grow: 0;
        order: 1;
        margin: 0;
        max-width: 110px;
        padding: 5px 0;
    }

    .logo img {
        height: 32px;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 2px 4px rgba(0, 208, 132, 0.3));
    }

    /* Iconos más grandes y fáciles de tocar */
    .nav-icons {
        gap: 8px;
        flex-shrink: 0;
        flex-grow: 0;
        order: 2;
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 8px;
    }

    .nav-icon-btn,
    .search-toggle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1rem;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-icon-btn:active,
    .search-toggle:active {
        transform: scale(0.9);
        background: rgba(0, 208, 132, 0.3);
    }

    .nav-icon-btn i {
        color: #fff;
    }

    .cart-count,
    .favorites-count {
        font-size: 0.65rem;
        min-width: 18px;
        height: 18px;
        top: -5px;
        right: -5px;
        background: linear-gradient(135deg, #00d084, #00a86a);
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid #154140;
    }

    /* Menú hamburguesa más grande y visible */
    .hamburger {
        display: flex !important;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        margin-left: 0;
        padding: 10px;
        cursor: pointer;
        z-index: 1001;
        background: rgba(0, 208, 132, 0.2);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .hamburger:active {
        background: rgba(0, 208, 132, 0.4);
        transform: scale(0.95);
    }

    .hamburger span {
        width: 24px;
        height: 3px;
        background: #fff;
        margin: 3px 0;
        border-radius: 3px;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }

    .hamburger.active {
        background: rgba(0, 208, 132, 0.3);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #00d084;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #00d084;
    }

    /* Menú móvil - Panel lateral mejorado */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85vw;
        min-width: 320px;
        max-width: 380px;
        height: 100vh;
        background: linear-gradient(180deg, #154140 0%, #0d2a27 100%);
        flex-direction: column;
        padding: 0;
        box-shadow: 5px 0 30px rgba(0, 0, 0, 0.5);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-menu.active {
        transform: translateX(100%);
        left: -100%;
    }

    .nav-menu.active {
        left: 0;
        transform: translateX(0);
    }

    /* Header del menú móvil - Más espacioso */
    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        background: linear-gradient(135deg, rgba(0, 208, 132, 0.15) 0%, rgba(0, 0, 0, 0.2) 100%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: sticky;
        top: 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu-logo {
        font-size: 1.3rem;
        font-weight: 800;
        color: #00d084;
        text-transform: uppercase;
        letter-spacing: 3px;
        text-shadow: 0 2px 10px rgba(0, 208, 132, 0.3);
    }

    .close-menu-btn {
        width: 42px;
        height: 42px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #fff;
        font-size: 1.3rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .close-menu-btn:hover {
        background: linear-gradient(135deg, rgba(0, 208, 132, 0.3) 0%, rgba(0, 208, 132, 0.2) 100%);
        border-color: #00d084;
        transform: rotate(90deg) scale(1.1);
        box-shadow: 0 4px 15px rgba(0, 208, 132, 0.4);
    }

    .close-menu-btn:active {
        transform: rotate(90deg) scale(0.95);
    }

    /* Enlaces del menú - Más grandes y fáciles de tocar */
    .nav-menu a {
        font-size: 1.05rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.95) !important;
        text-align: left;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-transform: uppercase;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 18px;
        width: 100%;
        box-sizing: border-box;
        white-space: nowrap;
        transition: all 0.3s ease;
        min-height: 60px;
    }

    .nav-menu a:active {
        transform: scale(0.98);
    }

    .nav-menu a i {
        width: 24px;
        text-align: center;
        color: #00d084;
        font-size: 1.2rem;
        filter: drop-shadow(0 2px 4px rgba(0, 208, 132, 0.3));
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #00d084 !important;
        background: linear-gradient(90deg, rgba(0, 208, 132, 0.2) 0%, rgba(0, 208, 132, 0.05) 100%);
        padding-left: 35px;
        border-left: 4px solid #00d084;
    }

    .nav-menu a::after {
        display: none;
    }

    /* Footer del menú móvil - Más atractivo */
    .nav-menu-footer {
        margin-top: auto;
        padding: 25px 25px;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 208, 132, 0.1) 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu-social {
        display: flex;
        gap: 12px;
        justify-content: center;
        margin-bottom: 18px;
    }

    .nav-menu-social a {
        width: 45px;
        height: 45px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .nav-menu-social a:hover {
        background: linear-gradient(135deg, #00d084 0%, #00a86a 100%);
        border-color: #00d084;
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 5px 20px rgba(0, 208, 132, 0.4);
    }

    .nav-menu-social a:active {
        transform: translateY(-3px) scale(1.05);
    }

    .nav-menu-contact {
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
        line-height: 1.8;
        background: rgba(255, 255, 255, 0.05);
        padding: 15px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu-contact i {
        color: #00d084;
        margin-right: 8px;
    }

    /* Overlay mejorado */
    body.menu-open {
        overflow: hidden;
    }

    .nav-menu-overlay {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.75);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* ========================================
       BUSCADOR MOBILE
    ======================================== */
    .search-form {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .search-form.active {
        width: 100%;
    }

    .search-input {
        padding: 15px;
        font-size: 1rem;
    }

    .search-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

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

    .categories-header {
        text-align: center;
    }

    .categories-header .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .category-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .featured-products .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .navbar {
        height: 70px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #154140;
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        transition: var(--transition);
        gap: 25px;
    }

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

    .nav-menu a {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-icon-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* ========================================
       FOOTER MOBILE - Centrar todo
    ======================================== */
    .footer {
        text-align: center;
    }

    .footer-grid {
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col .logo {
        justify-content: center;
        display: inline-flex;
    }

    .footer-col p {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul {
        display: inline-block;
        text-align: center;
    }

    .footer-col ul li {
        text-align: center;
    }

    .footer-col .contact-info li {
        justify-content: center;
        display: inline-flex;
        gap: 10px;
        margin-bottom: 10px;
    }

    .social-links {
        justify-content: center;
        display: inline-flex;
    }
}

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .featured-products .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid,
    .products-grid,
    .testimonials-grid,
    .mission-grid,
    .team-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

    .cart-wrapper {
        grid-template-columns: 1fr !important;
    }

    .cart-summary {
        position: static !important;
        margin-top: 30px;
    }

    .cart-item {
        flex-direction: column !important;
        text-align: center;
    }

    .cart-item-image {
        width: 150px !important;
        height: 150px !important;
    }
}

/* ========================================
   ANIMACIONES
======================================== */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

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

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