   :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);
      }

      body {
        background-color: var(--light-gray);
        color: var(--dark-text);
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.6;
      }
      
      /* 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: transform 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);
      }
      
      /* Sección de categorías mejorada */
      .menu-categorias
      {
        background: #2563eb;
      }
      .section-title {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 3rem 0 1.5rem;
        color: var(--primary-dark);
        position: relative;
        padding-bottom: 0.5rem;
        font-family: sans-serif;
      }
      
      .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 70px;
        height: 4px;
        background-color: var(--accent-color);
        border-radius: 2px;
      }
      
      .category-section {
        background-color: white;
        border-radius: var(--border-radius);
        padding: 2rem;
        box-shadow: var(--shadow-sm);
        margin-bottom: 2rem;
      }
      
      .articulos {
        padding: 1rem;
        background-color: rgb(196, 196, 196);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
      }
      
      .articulos img {
        width: 80px;
        height: 80px;
        object-fit: contain;
        margin: 0 auto 15px;
        border-radius: 20px;
        transition: var(--transition);
        padding: 10px;
        background-color: var(--light-gray);
      }
      
      .articulos img:hover {
        transform: scale(1.15) rotate(5deg);
        box-shadow: var(--shadow-md);
      }
      
      .articulos a {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--dark-text);
        transition: var(--transition);
        padding: 1rem 0.5rem;
        border-radius: var(--border-radius);
      }
      
      .articulos a:hover {
        background-color: var(--light-gray);
        transform: translateY(-5px);
      }
      
      .articulos h5 {
        font-weight: 600;
        margin-top: 0.5rem;
        text-align: center;
        font-size: 1rem;
        color: var(--primary-dark);
      }
      
      /* Sección de ofertas mejorada */
      /* .ofertas-section {
        background-color: rgb(211, 211, 211);
        border-radius: 25px;       
        padding-left: 0rem;
        padding-right: 0rem;
        padding-top: 1rem;
        padding-bottom: 5rem;
       
        box-shadow: var(--shadow-sm);
        margin-bottom: 2rem;
      }
       */
      .card-img-container {
        background-color: var(--light-gray);
        padding-left: 2rem;
        padding-right: 2rem;
        display: flex;
        object-fit: contain;
        margin-top: 2rem;
        align-items: center;
        justify-content: center;
        width: 70%;
        height: 80%;
      }
      
      
      .card-body {
        padding: 1rem;
        background-color: white;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }
      
      .card-title {
        color: var(--primary-dark);
        font-weight: 700;
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
      }
      
      .card-text {
        color: var(--medium-text);
        font-size: 0.9rem;
        margin-bottom: 1rem;
        flex-grow: 1;
      }
      
      .price {
        font-weight: 800;
        color: var(--accent-color);
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }
      
      .old-price {
        text-decoration: line-through;
        color: var(--medium-text);
        font-size: 0.9rem;
        margin-left: 0.5rem;
      }
      
      .discount-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: var(--accent-color);
        color: white;
        padding: 0.25rem 0.5rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        z-index: 1;
      }
      
      .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);
      }
      
      /* Anuncios mejorados */
      .anuncios {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        border-radius: var(--border-radius);
        margin: 2rem 0;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
        color: white;
        box-shadow: var(--shadow-md);
        transition: var(--transition);
      }
      
      .anuncios:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
      }
      
      .anuncios img {
        margin-right: 1.5rem;
        width: 60px;
        height: 60px;
      }
      
      .anuncios h5 {
        margin: 0;
        font-size: 1.4rem;
        font-weight: 700;
      }
      
      /* Swiper personalizado */
      .swiper-container {
        background-color: white;
        width: 100%;
        height: 320px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-sm);
        margin: 2rem 0;
        padding: 1rem 0;
      }
      
      .swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 2rem;
      }
      
      .swiper-slide img {
        width: 200px;
        height: 180px;
        object-fit: contain;
        transition: var(--transition);
      }
      
      .swiper-slide:hover img {
        transform: scale(1.05);
      }
      
      .swiper-button-next, .swiper-button-prev {
        color: var(--primary-color);
        background-color: rgba(255,255,255,0.8);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
      }
      
      .swiper-button-next:hover, .swiper-button-prev:hover {
        background-color: white;
        transform: scale(1.1);
      }
      
      .swiper-pagination-bullet {
        background-color: var(--medium-text);
        opacity: 0.5;
      }
      
      .swiper-pagination-bullet-active {
        background-color: var(--primary-color);
        opacity: 1;
      }
      
      /* 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;
      }
      
      /* Efectos y animaciones */
      .animate-pop {
        animation: pop 0.5s ease;
      }
      
      @keyframes pop {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
      }
      
      .hover-grow {
        transition: var(--transition);
      }
      
      .hover-grow:hover {
        transform: scale(1.03);
      } 
      
      /* Responsive adjustments */
      @media (max-width: 992px) {
        .hero-content {
          max-width: 70%;
        }
        
        .hero-title {
          font-size: 2rem;
        }
      }
      
      @media (max-width: 768px) {
        .hero-content {
          max-width: 100%;
          left: 20px;
          bottom: 20px;
        }
        
        .hero-title {
          font-size: 1.8rem;
        }
        
        .hero-subtitle {
          font-size: 1rem;
        }
        
        .section-title {
          font-size: 1.5rem;
        }
      
      }
      
      @media (max-width: 576px) {
        .navbar {
          padding: 0.5rem 1rem;
        }
        
        .hero-banner img {
          height: 300px;
        }
        
        .hero-title {
          font-size: 1.5rem;
        }
        
        .anuncios h5 {
          font-size: 1.1rem;
        }
        
        .anuncios img {
          width: 40px;
          height: 40px;
        }
      }