:root {
            --primary-color: #5D4E8C;
            --primary-dark: #4A3D70;
            --primary-light: #6B5A9E;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
        }
        
        /* Top Bar */
        .top-bar {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        /* Header */
        .main-header {
            background-color: var(--primary-color);
            padding: 15px 0;
        }
        
        .main-header .navbar-brand img {
            height: 40px;
        }
        
        .main-header .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px !important;
            transition: color 0.3s;
        }
        
        .main-header .nav-link:hover {
            color: white !important;
        }
        
        .header-icons .btn {
            color: white;
            padding: 8px 12px;
        }
        
        .header-icons .btn:hover {
            background-color: rgba(255,255,255,0.2);
            border-radius: 8px;
        }
        
        .cart-badge {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: white;
            color: var(--primary-color);
            font-size: 11px;
            font-weight: bold;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Hero Banner */
        .hero-banner {
            position: relative;
            height: 480px;
            overflow: hidden;
        }
        
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
        }
        
        .hero-content {
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            color: white;
            padding-left: 80px;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 50px;
            padding: 12px 32px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-2px);
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 50px;
            height: 50px;
            background-color: rgba(0,0,0,0.3);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        .carousel-indicators li {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
        /* Categories */
        .categories-section {
            background-color: white;
            padding: 40px 0;
        }
        
        .category-item {
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: transform 0.3s;
        }
        
        .category-item:hover {
            transform: translateY(-5px);
            text-decoration: none;
            color: inherit;
        }
        
        .category-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            transition: transform 0.3s;
        }
        
        .category-item:hover .category-icon {
            transform: scale(1.1);
        }
        
        .category-icon i {
            font-size: 28px;
        }
        
        .category-name {
            font-size: 14px;
            font-weight: 500;
            color: #374151;
        }
        
        /* Products Grid */
        .products-section {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1f2937;
            text-align: center;
            margin-bottom: 40px;
        }
        
        .product-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: all 0.3s;
            margin-bottom: 24px;
        }
        
        .product-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            transform: translateY(-5px);
        }
        
        .product-image {
            position: relative;
            aspect-ratio: 1;
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

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

        .product-image2 {
          position: absolute;        
          inset: 0;
          display: flex;
          align-items: center;
          justify-content: center;
          z-index: 3;
          pointer-events: none;
        }

        /* Imagen AGOTADO */
        .product-image2 img {
          max-width: 80%;
          height: auto;
          object-fit: contain;
        }

        
        
        .product-badge {
            position: absolute;
            top: 10px;
            left: -10px;
            color: white;
            padding: 4px 12px;
            border-radius: 5px;
            font-size: 2px;
            font-weight: 500;
        }
        
        .product-favorite {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 36px;
            height: 36px;
            background-color: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }
        
        .product-favorite:hover {
            background-color: white;
        }
        
        .product-favorite i {
            color: #9ca3af;
            transition: color 0.3s;
        }
        
        .product-favorite:hover i,
        .product-favorite.active i {
            color: var(--primary-color);
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
        
        .product-content {
            padding: 16px;
        }
        
        .product-name {
            font-size: 14px;
            font-weight: 500;
            color: #1f2937;
            min-height: 42px;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        .product-name a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .product-name a:hover {
            color: var(--primary-color);
        }
        
        .product-schedulable {
            font-size: 11px;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 12px;
        }
        
        .product-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 12px;
        }
        
        .btn-add-cart {
            width: 100%;
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            padding: 10px;
        }
        
        .btn-add-cart:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        /* Features */
        .features-section {
            background-color: white;
            padding: 60px 0;
        }
        
        .feature-item {
            text-align: center;
            padding: 20px;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: #ede9fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
        }
        
        .feature-icon i {
            font-size: 32px;
            color: var(--primary-color);
        }
        
        .feature-subtitle {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 4px;
        }
        
        .feature-title {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
        }
        
        /* Testimonials */
        .testimonials-section {
            background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
            padding: 80px 0;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .testimonial-quote {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 40px;
            color: #e9d5ff;
        }
        
        .testimonial-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid #ede9fe;
            margin-bottom: 20px;
        }
        
        .testimonial-text {
            font-size: 18px;
            color: #4b5563;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        /* Footer */
        .main-footer {
            background-color: #111827;
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-logo {
            background-color: white;
            display: inline-block;
            padding: 8px 16px;
            border-radius: 8px;
            margin-bottom: 16px;
        }
        
        .footer-logo span {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .footer-description {
            color: #9ca3af;
            font-size: 14px;
            line-height: 1.7;
        }
        
        .footer-social a {
            width: 40px;
            height: 40px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 10px;
            transition: background-color 0.3s;
        }
        
        .footer-social a:hover {
            background-color: var(--primary-dark);
            color: white;
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #9ca3af;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: #9ca3af;
            font-size: 14px;
        }
        
        .footer-contact i {
            color: var(--primary-color);
            margin-top: 3px;
        }
        
        .footer-bottom {
            border-top: 1px solid #1f2937;
            padding: 24px 0;
            margin-top: 40px;
        }
        
        .footer-copyright {
            color: #6b7280;
            font-size: 14px;
        }
        
        .payment-methods img {
            height: 32px;
            opacity: 0.6;
            margin-left: 16px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content {
                padding-left: 20px;
                padding-right: 20px;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-banner {
                height: 350px;
            }
        }