/* Variables */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --dark-color: #0c1226;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --success-color: #4bb543;
    --warning-color: #ffb142;
    --danger-color: #ff5252;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

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

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

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

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2 .highlight {
    color: var(--primary-color);
    position: relative;
}

.section-header h2 .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(67, 97, 238, 0.2) 0%, rgba(58, 12, 163, 0.2) 100%);
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 4px;
}

.section-subheading {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.section-header h2 span {
    color: var(--primary-color);
}

.section-header p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-color);
}

/* Estilos para títulos de sección */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--dark-color);
}

.section-title span {
    color: var(--primary-color);
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(67, 97, 238, 0.15) 0%, rgba(58, 12, 163, 0.15) 100%);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 8px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

.btn {
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

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

.btn-outline-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

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

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
    background-color: rgba(17, 24, 39, 0.8); /* Fondo semitransparente oscuro por defecto */
    backdrop-filter: blur(10px); /* Efecto de desenfoque para mejorar la legibilidad */
}

.navbar.scrolled, 
.navbar.navbar-scrolled {
    background-color: var(--dark-color);
    box-shadow: var(--box-shadow);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-dark .navbar-brand {
    color: white;
}

.navbar-dark .navbar-brand .text-primary {
    color: var(--primary-color) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-dark .navbar-toggler {
    border-color: transparent;
    outline: none;
}

#cart-icon {
    position: relative;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section h1 span {
    color: var(--primary-color);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    transform: perspective(500px) rotateY(-5deg);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

@keyframes float {
    0% {
        transform: perspective(500px) rotateY(-5deg) translateY(0px);
    }
    50% {
        transform: perspective(500px) rotateY(-5deg) translateY(-20px);
    }
    100% {
        transform: perspective(500px) rotateY(-5deg) translateY(0px);
    }
}

/* Promo Banner */
.promo-banner {
    background-color: var(--accent-color);
    padding: 1.5rem 0;
    color: white;
}

.promo-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.promo-text p {
    margin-bottom: 0;
    opacity: 0.9;
}

.promo-text .highlight {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: var(--border-radius);
    font-weight: 800;
}

/* Productos Section */
.productos-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
    position: relative;
}

/* Estilo moderno para las tarjetas de productos */
.modern-card {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.modern-card .product-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.modern-card .product-image img {
    transition: transform 0.5s ease;
}

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

.modern-card .product-info {
    padding: 1.5rem;
    text-align: left;
}

.modern-card .product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-card .product-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.8rem;
}

.modern-card .product-price-current {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.modern-card .product-price-old {
    text-decoration: line-through;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.modern-card .product-category {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-top: 0.5rem;
}

.modern-card .product-category span {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-weight: 500;
}

.modern-card .product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 0 0 12px 12px;
}

.modern-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.modern-card .product-actions button {
    background-color: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.modern-card .product-actions button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.modern-card .product-discount,
.modern-card .product-new {
    position: absolute;
    top: 15px;
    z-index: 2;
    padding: 0.3rem 1rem;
    border-radius: 0 20px 20px 0;
    font-weight: 600;
    font-size: 0.8rem;
}

.modern-card .product-discount {
    left: 0;
    background-color: #f44336;
    color: white;
}

.modern-card .product-new {
    left: 0;
    background-color: var(--primary-color);
    color: white;
}

/* Ajuste para el slider de productos */
.productos-slider .slick-track {
    padding: 1rem 0;
}

.productos-slider .slick-dots {
    bottom: -30px;
}

.producto-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
    position: relative;
}

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

.producto-card .badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}

.producto-img {
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: #f8f9fa;
    overflow: hidden;
}

.producto-img img {
    max-height: 100%;
    transition: var(--transition);
}

.producto-card:hover .producto-img img {
    transform: scale(1.1);
}

.producto-info {
    padding: 1.5rem;
}

.producto-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.producto-info p {
    color: var(--gray-color);
    margin-bottom: 1rem;
    min-height: 50px;
}

.producto-price {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.precio-actual {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.precio-anterior {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--gray-color);
    margin-left: 1rem;
}

.producto-footer {
    display: flex;
    justify-content: space-between;
}

.btn-add-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 600;
}

.btn-add-cart:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.rating, 
.rating i,
.product-rating,
.product-rating i,
.product-rating span {
    display: none !important;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

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

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info li i {
    margin-right: 15px;
    color: var(--primary-color);
}

.copyright {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    margin-bottom: 0;
    font-size: 14px;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-dark .navbar-nav .nav-link {
        color: var(--text-color);
    }
    
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-section h1 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section {
        padding: 130px 0 80px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 50px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 7rem 0 4rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .floating-cart {
        width: 100%;
    }
}

/* Loader & Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* Productos Slider */
.productos-slider {
    padding: 1rem 0;
}

/* Categorías Home Section */
.categorias-home-section {
    padding: 5rem 0;
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
}

.categorias-home-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(67, 97, 238, 0.05) 50%, transparent 70%);
    z-index: 0;
}

.categorias-home-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 12, 163, 0.1) 0%, rgba(58, 12, 163, 0.05) 50%, transparent 70%);
    z-index: 0;
}

.categoria-card-home {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ffffff, #f5f7ff);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1.275);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    color: var(--dark-color);
    height: 220px;
    border: 1px solid rgba(67, 97, 238, 0.05);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.categoria-card-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(67, 97, 238, 0.03) 50%, transparent 70%);
    z-index: 1;
    transition: all 0.4s ease;
    opacity: 0;
}

.categoria-card-home:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    border-color: rgba(67, 97, 238, 0.2);
}

.categoria-card-home:hover::before {
    opacity: 1;
}

.categoria-card-home:hover .categoria-arrow {
    opacity: 1;
    transform: translateX(0);
}

.categoria-icon-home {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.categoria-card-home:hover .categoria-icon-home {
    transform: scale(1.1);
}

.categoria-card-home h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.categoria-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    z-index: 2;
}

.categoria-card-home:hover .categoria-arrow {
    transform: translateX(0) rotate(0deg);
}

@media (max-width: 767px) {
    .categoria-card-home {
        height: 180px;
        padding: 2rem 1rem;
    }
    
    .categoria-icon-home {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .categoria-card-home h3 {
        font-size: 1.2rem;
    }
}

/* Parallax Section */
.parallax-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    text-align: center;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.parallax-content {
    position: relative;
    z-index: 2;
}

.parallax-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* New Products Section */
.new-products-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.product-tabs {
    margin-bottom: 2rem;
}

.nav-tabs {
    border: none;
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--gray-color);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.nav-tabs .nav-link.active, 
.nav-tabs .nav-link:hover {
    color: white;
    background-color: var(--primary-color);
}

.new-products-slider {
    padding: 1rem 0;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: white;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    background-color: var(--light-color);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 2rem;
    height: 100%;
}

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

.benefit-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonial-item {
    padding: 15px;
}

.testimonial-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-color);
}

.testimonial-user {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.testimonial-info span {
    font-size: 14px;
    color: var(--gray-color);
}

.testimonials-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonials-slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background-color: white;
}

.newsletter-container {
    background-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.newsletter-container h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-container p {
    margin-bottom: 0;
    opacity: 0.9;
}

.newsletter-form .form-control {
    height: 50px;
    border-radius: var(--border-radius);
    border: none;
    padding: 0 1.5rem;
}

.newsletter-form .btn {
    padding: 0.65rem 1.5rem;
    background-color: var(--accent-color);
    border: none;
}

.newsletter-form .btn:hover {
    background-color: var(--dark-color);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 5rem 0 1rem;
}

.footer h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    position: relative;
}

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

.footer p {
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

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

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

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

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

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.contact-info li i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.copyright {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
}

.floating-cart.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--danger-color);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

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

.cart-empty i {
    font-size: 4rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.cart-empty p {
    margin-bottom: 1.5rem;
    color: var(--gray-color);
}

.cart-items {
    display: none;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-right: 1rem;
}

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

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-quantity-btn {
    width: 28px;
    height: 28px;
    background-color: var(--light-color);
    border: none;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: var(--transition);
}

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

.cart-item-quantity span {
    margin: 0 0.5rem;
    font-weight: 600;
}

.remove-cart-item {
    color: var(--danger-color);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.remove-cart-item:hover {
    color: var(--danger-color);
    transform: scale(1.2);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cart-total span {
    font-size: 1.1rem;
}

.cart-total strong {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* Product Add Animation */
.product-add-animation {
    position: fixed;
    z-index: 9997;
    pointer-events: none;
    animation: flyToCart 1s ease-in-out forwards;
}

@keyframes flyToCart {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    20% {
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(0.1) translateX(1000px) translateY(-200px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section {
        padding: 8rem 0 5rem;
    }
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }

    .navbar-collapse {
        background-color: var(--dark-color);
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
    }

    .floating-cart {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }

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

    .promo-text {
        margin-bottom: 1rem;
    }

    .newsletter-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 7rem 0 4rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .floating-cart {
        width: 100%;
    }
}

/* Slick Customization */
.slick-dots {
    bottom: -40px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.3;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.slick-prev:before, .slick-next:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    opacity: 1;
}

.slick-prev:before {
    content: "\f104";
}

.slick-next:before {
    content: "\f105";
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:hover, .slick-next:hover {
    background-color: var(--secondary-color);
}

/* Estilos para la página de Categorías */
.categorias-section {
    padding: 6rem 0;
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
}

.categorias-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.08) 0%, rgba(67, 97, 238, 0.05) 50%, transparent 70%);
    z-index: 0;
}

.categorias-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.06) 0%, rgba(247, 37, 133, 0.03) 50%, transparent 70%);
    z-index: 0;
}

.categoria-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(67, 97, 238, 0.08);
    z-index: 1;
}

.categoria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(67, 97, 238, 0.05) 60%, transparent 80%);
    z-index: -1;
    transition: all 0.5s ease;
    opacity: 0;
}

.categoria-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(67, 97, 238, 0.15);
    border-color: rgba(67, 97, 238, 0.15);
}

.categoria-card:hover::before {
    opacity: 1;
}

.categoria-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.2);
}

.categoria-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.4;
    z-index: -1;
    transition: all 0.4s ease;
    transform: translateY(5px) scale(0.95);
}

.categoria-card:hover .categoria-icon {
    transform: translateY(-5px) scale(1.05);
}

.categoria-card:hover .categoria-icon::after {
    opacity: 0.6;
    transform: translateY(8px) scale(0.92);
}

.categoria-icon i {
    font-size: 2.5rem;
    color: white;
}

.categoria-content {
    padding-top: 0.5rem;
}

.categoria-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.categoria-card:hover .categoria-content h3 {
    color: var(--primary-color);
}

.categoria-content p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.categoria-stats {
    display: flex;
    margin-bottom: 1.5rem;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--gray-color);
    margin-top: 0.25rem;
}

.btn-categoria {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(67, 97, 238, 0.2);
}

.btn-categoria i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-categoria:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
    background-position: right center;
}

.btn-categoria:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .categoria-card {
        padding: 2rem;
    }
    
    .categoria-content h3 {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .categoria-stats {
        gap: 1rem;
    }
    
    .categoria-icon {
        width: 70px;
        height: 70px;
    }
    
    .categoria-icon i {
        font-size: 2rem;
    }
}

/* Estilo para el título de la página de categorías */
.animated-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.animated-title .highlight {
    position: relative;
    z-index: 1;
}

.animated-title .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, rgba(67, 97, 238, 0.2) 0%, rgba(58, 12, 163, 0.2) 100%);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}

.page-title {
    background-color: #f9fafc;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-title::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(67, 97, 238, 0.03) 50%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    z-index: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--gray-color);
    font-size: 1.2rem;
    line-height: 1;
    vertical-align: middle;
    padding-right: 0.5rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--gray-color);
    font-weight: 500;
}

/* Sección de Marcas */
.marcas-section {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.marcas-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.03) 0%, rgba(67, 97, 238, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.marcas-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.02) 0%, rgba(247, 37, 133, 0.01) 50%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    z-index: 0;
}

.marcas-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.marca-item {
    text-align: center;
    padding: 1.5rem;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.4s ease;
}

.marca-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.marca-item img {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .marca-item {
        padding: 1rem;
    }
    
    .marca-item img {
        max-height: 60px;
    }
}

/* Sección de Equipo */
.team-section {
    padding: 6rem 0;
    background-color: #f9fafc;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(67, 97, 238, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    z-index: 0;
}

.team-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 37, 133, 0.04) 0%, rgba(247, 37, 133, 0.02) 50%, transparent 70%);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
    z-index: 0;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin-bottom: 2rem;
    transform: translateY(0);
    position: relative;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.8s ease;
}

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

.team-details {
    padding: 1.5rem;
    text-align: center;
}

.team-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.team-details .position {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.team-details p {
    font-size: 0.95rem;
    color: var(--gray-color);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.team-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

@media (max-width: 991px) {
    .team-card {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 767px) {
    .team-image img {
        height: 250px;
    }
    
    .team-details {
        padding: 1.2rem;
    }
    
    .team-details h3 {
        font-size: 1.2rem;
    }
}
