   :root {
        --primary-color: #2563eb;
        --primary-dark: #1e40af;
        --primary-light: #3b82f6;
        --accent-color: #dc2626;
        --accent-light: #ef4444;
        --light-bg: #ffffff;
        --light-gray: #ffffff;
        --dark-text: #1e293b;
        --medium-text: #475569;
        --light-text: #f9fafb;
        --border-radius: 12px;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
        --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
        --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
        --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
      }



/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}
  /* Barra de navegación mejorada */
      .navbar {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        box-shadow: var(--shadow-md);
        padding: 0.8rem 2rem;
        transition: var(--transition);
      }
      
      .navbar-brand img {
        transition: var(--transition);
      }
      
      .navbar-brand:hover img {
        transform: rotate(-5deg) scale(1.05);
      }
      
      .navbar.scrolled {
        padding: 0.5rem 2rem;
        background: rgba(37, 99, 235, 0.95);
        box-shadow: var(--shadow-lg);}
      
      .nav-link {
        font-weight: 500;
        position: relative;
        padding: 8px 15px;
        border-radius: 4px;
        transition: var(--transition);
      }
      
      .nav-link:hover, .nav-link.active {
        color: white !important;
        background-color: rgba(255,255,255,0.15);
        transform: translateY(-2px);
      }
      
      .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 15px;
        width: 0;
        height: 2px;
        background-color: white;
        transition: var(--transition);
      }
      
      .nav-link:hover::after, .nav-link.active::after {
        width: calc(100% - 30px);
      }
      
      /* Hero banner mejorado */
      .hero-banner {
        margin-top: 80px;
        border-radius: var(--border-radius);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        position: relative;
      }
      
      .hero-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
        z-index: 1;
      }
      
      .hero-banner img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: 0.5s ease;
      }
      
      .hero-banner:hover img {
        transform: scale(1.02);
      }
      
      .hero-content {
        position: absolute;
        bottom: 40px;
        left: 40px;
        z-index: 2;
        color: white;
        max-width: 50%;
      }

      .hero-content h1{
        font-family: sans-serif;
      }

      .hero-title {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
      }
      
      .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
      }
      
      .btn-hero {
        background-color: var(--accent-color);
        border: none;
        padding: 10px 25px;
        font-weight: 600;
        border-radius: 50px;
        transition: var(--transition);
      }
      
      .btn-hero:hover {
        background-color: var(--accent-light);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
      }
/* Estilos para las tarjetas de producto */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-card span
{
    height: fit-content;
}

.product-card .card-img-top {
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
    transform: scale(1.03);
}

.product-card .card-body {
    padding: 1.25rem;
}

.product-card .card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #212529;
}

.product-card .card-text {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

/* Estilos para el encabezado */
header {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    margin-bottom: 2rem;
}

/* Estilos para la paginación */
.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.pagination .page-link {
    color: #0d6efd;
}

.btn-add-to-cart {
        background-color: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem;
        border-radius: 50px;
        font-weight: 600;
        transition: var(--transition);
        width: 50%;
        margin-top: auto;
      }
      
      .btn-add-to-cart:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
      }
/* Estilos para el pie de página */
/* Footer mejorado */
      .main-footer {
        background: linear-gradient(135deg, #1e293b, #0f172a);
        color: white;
        padding: 3rem 0 1rem;
        margin-top: 3rem;
      }
      
      .footer-logo {
        margin-bottom: 1.5rem;
      }
      
      .footer-logo img {
        width: 120px;
        border-radius: 10px;
      }
      
      .footer-title {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: white;
        position: relative;
        padding-bottom: 0.5rem;
      }
      
      .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--accent-color);
      }
      
      .footer-links {
        list-style: none;
        padding: 0;
      }
      
      .footer-links li {
        margin-bottom: 0.75rem;
      }
      
      .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: var(--transition);
      }
      
      .footer-links a:hover {
        color: white;
        padding-left: 5px;
      }
      
      .newsletter-input {
        background-color: rgba(255,255,255,0.1);
        border: none;
        color: white;
        padding: 0.75rem 1rem;
        border-radius: 50px 0 0 50px;
      }
      
      .newsletter-input::placeholder {
        color: #94a3b8;
      }
      
      .newsletter-btn {
        background-color: var(--accent-color);
        border: none;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 0 50px 50px 0;
        font-weight: 600;
        transition: var(--transition);
      }
      
      .newsletter-btn:hover {
        background-color: var(--accent-light);
      }
      
      .social-icons {
        display: flex;
        gap: 2rem;
        margin-top: 1.5rem;
      }
      
      .social-icons img {
        width: 30px;
        height: 30px;
        padding: 15%;
        border-radius: 50%;
        background-color: rgb(242, 240, 240);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
      }
      
      .social-icons img:hover {
        background-color: rgb(134, 134, 134);
        transform: translateY(-3px);
      }
      
      .footer-bottom {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
        text-align: center;
        font-size: 0.9rem;
        color: #94a3b8;
      }
/* Estilos para badges de estado */
.badge.bg-success {
    background-color: #198754 !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .product-card {
        margin-bottom: 1.5rem;
    }
    
    footer .col-lg-4, 
    footer .col-lg-3, 
    footer .col-lg-2 {
        margin-bottom: 2rem;
    }
}