     @font-face {
  font-family: "San Francisco";
  font-weight: 400;
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}
		
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "San Francisco";
        }


        body {
            
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 22%);*/
            min-height: 100vh;
            color: #333;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }

        .logo {
            color: white;
            font-size: 3rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
            margin: 0; padding: 0; line-height: 1.2;
            font-family: 'Stem', sans-serif;
            text-decoration:none;
            color:#FFFFFF;
            font-weight:900;
            text-shadow: 
        1px 1px 0 #000,
        -1px -1px 0 #fff;
        }

        .subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            font-weight: 300;
        }

        .filter-bar {
            background: rgba(255, 255, 255, 0.95);
            padding: 1.5rem;
            border-radius: 20px;
            margin-bottom: 3rem;
            display: flex;
            gap: 1rem;
            align-items: center;
            flex-wrap: wrap;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .search-input {
            flex: 1;
            min-width: 250px;
            padding: 0.8rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: all 0.3s ease;
        }

        .search-input:focus {
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
        }

        .filter-select {
            padding: 0.8rem 1.2rem;
            border: 2px solid #e0e0e0;
            border-radius: 50px;
            background: white;
            font-size: 1rem;
            cursor: pointer;
            outline: none;
            transition: all 0.3s ease;
        }

        .filter-select:hover {
            border-color: #667eea;
            transform: translateY(-2px);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .product-card {
             display: flex;
    flex-direction: column;
    justify-content: space-between; /* fuerza que la parte de arriba y la parte de abajo queden separadas */
    height: 100%; /* importante, hace que todas tengan el mismo alto */
    padding: 16px; /* opcional, el que uses */
    box-sizing: border-box;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
        }

        .product-image {
            width: 100%;
            height: 250px;
            border-radius:20px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

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

        .product-info {
            padding: 2rem;
            position: relative;
            
        }

        .product-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .product-name {
            /*font-size: 1.5rem;*/
            font-weight: 600;
            text-align:center;
            color: #333;
            margin-bottom: 0.5rem;
            line-height: 1.3;
        }

        .product-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .product-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .feature-tag {
             background: linear-gradient(to right, #FF6A00, #FF9900);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .product-price {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }

   .product-actions {
    margin-top: auto; /* esto manda los botones siempre al final */
    display: flex;
    gap: 8px;
    flex-wrap: wrap; /* por si en mobile se tienen que romper a dos líneas */
}

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            flex: 1;
        }


        .loading {
            text-align: center;
            padding: 3rem;
            color: white;
            font-size: 1.2rem;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 1rem;
        }

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

        .no-products {
            text-align: center;
            padding: 3rem;
            color: white;
            font-size: 1.2rem;
        }

        .floating-wishlist {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .floating-wishlist:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
        }

        .wishlist-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: #ff4757;
            color: white;
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: 600;
        }

.wishlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

        .wishlist-modal.active {
            opacity: 1;
            visibility: visible;
        }

.wishlist-content {
    background-color: white;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

        .wishlist-modal.active .wishlist-content {
            transform: scale(1);
        }

        .wishlist-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .wishlist-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #333;
        }

        .close-btn {
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #666;
            padding: 0;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: #f0f0f0;
            color: #333;
        }

        .wishlist-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .wishlist-item:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .wishlist-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
        }

        .wishlist-item-info {
            flex: 1;
        }

        .wishlist-item-name {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .wishlist-item-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 0.5rem;
        }

        .remove-from-wishlist {
            background: #ff4757;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }

        .remove-from-wishlist:hover {
            background: #ff3838;
            transform: translateY(-2px);
        }

        .checkout-actions {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #f0f0f0;
            display: flex;
            gap: 1rem;
        }

        .checkout-btn {
            flex: 1;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .checkout-whatsapp {
            background: #25d366;
            color: white;
        }

        .checkout-whatsapp:hover {
            background: #128c7e;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
        }

        .checkout-email {
            background: #667eea;
            color: white;
        }

        .checkout-email:hover {
            background: #5a6fd8;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .empty-wishlist {
            text-align: center;
            padding: 3rem 2rem;
            color: #666;
        }

        .empty-wishlist-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .product-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
          /*  visibility: hidden;*/
            transition: all 0.3s ease;
        }

        .product-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .product-modal-content {
            background: white;
            border-radius: 25px;
            max-width: 800px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            position: relative;
        }

        .product-modal.active .product-modal-content {
            transform: scale(1);
        }

        .product-modal-header {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 25px 25px 0 0;
        }

        .product-modal-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .product-modal-close:hover {
            background: white;
            transform: scale(1.1);
        }

        .product-modal-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
        }

        .product-modal-body {
            padding: 2.5rem;
        }

        .product-modal-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .product-modal-price {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
        }

        .product-modal-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 2rem;
        }

        .product-modal-section {
            margin-bottom: 2rem;
        }

        .product-modal-section-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

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

        .feature-item {
            background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
            padding: 1.2rem;
            border-radius: 15px;
            border-left: 4px solid #667eea;
        }

        .feature-item-title {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .feature-item-description {
            color: #666;
            font-size: 0.9rem;
        }

        .product-specs {
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 2rem;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .spec-item:last-child {
            border-bottom: none;
        }

        .spec-label {
            font-weight: 600;
            color: #333;
        }

        .spec-value {
            color: #666;
        }

        .availability-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .availability-status.available {
            background: linear-gradient(135deg, #e8f5e8, #d4edda);
            color: #155724;
        }

        .availability-status.unavailable {
            background: linear-gradient(135deg, #f8e8e8, #f5c6cb);
            color: #721c24;
        }

        .product-modal-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }

        .modal-btn {
            flex: 1;
            padding: 1.2rem 2rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .modal-btn-primary {
            background: linear-gradient(to right, #FF6A00, #FF9900);
            color: white;
        }

        .modal-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .modal-btn-secondary {
            background: transparent;
            color: #667eea;
            border: 2px solid #667eea;
        }

        .modal-btn-secondary:hover {
            background: #667eea;
            color: white;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .product-modal-content {
                width: 95%;
                margin: 1rem;
            }

            .product-modal-body {
                padding: 1.5rem;
            }

            .product-modal-title {
                font-size: 1.8rem;
            }

            .product-modal-price {
                font-size: 2rem;
            }

            .product-features-grid {
                grid-template-columns: 1fr;
            }

            .product-modal-actions {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .logo {
                font-size: 2rem;
            }

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

            .filter-bar {
                flex-direction: column;
                align-items: stretch;
            }

            .search-input {
                min-width: auto;
            }

            .product-actions {
                flex-direction: column;
            }
        }
                :root {
            --primary-color: #FF6A00;
            --secondary-color: #FF9900;
            --dark-color: #333;
            --light-color: #f8f8f8;
            --border-color: #e6e6e6;
            --success-color: #4CAF50;
            --warning-color: #FFC107;
        }
        
        body {
            font-family: Arial, "Microsoft YaHei", sans-serif;
            margin: 0;
            padding: 0;
            color: var(--dark-color);
            background-color: #f5f5f5;
        }
        
        .header-container {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo-img {
            width: 50px;
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
        }
        
        .logo-slogan {
            font-size: 12px;
            margin-top: 5px;
        }
        
        .search-container {
            display: flex;
            flex-grow: 1;
            max-width: 600px;
            margin: 0 20px;
        }
        
        .search-input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            font-size: 14px;
        }
        
        .search-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .user-actions {
            display: flex;
            align-items: center;
        }
        
        .action-btn {
            color: white;
            margin-left: 15px;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }
        
        .action-btn i {
            margin-right: 5px;
        }
        
        .nav-container {
            background-color: white;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .nav-menu {
            display: flex;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0;
            list-style: none;
        }
        
        .nav-item {
            padding: 15px 20px;
            position: relative;
        }
        
        .nav-item a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: bold;
        }
        
        .nav-item:hover {
            background-color: var(--light-color);
        }
        
        .products-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 15px;
        }
        
        .filter-bar {
            background-color: white;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-select {
            padding: 8px 15px;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: white;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .product-card {
            background-color: white;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            position: relative;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: var(--primary-color);
            color: white;
            padding: 3px 8px;
            border-radius: 3px;
            font-size: 12px;
            z-index: 1;
        }
        
        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid var(--border-color);
        }
        
        .product-info {
            padding: 15px;
        }
        
        .product-name {
            font-size: 16px;
            margin: 0 0 10px;
            color: var(--dark-color);
            font-weight: bold;
        }
        
        .product-price {
            color: var(--primary-color);
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0;
        }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
        }
        
        .btn {
            padding: 8px 15px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            transition: background-color 0.3s;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #e05a00;
        }
        
        .btn-secondary {
            background-color: white;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
        }
        
        .btn-secondary:hover {
            background-color: #fff5f0;
        }
        
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-modal-content {
    position: relative;
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    padding: 20px;
}
        
        .product-modal-header {
            position: relative;
        }
        
        .product-modal-gallery {
            display: flex;
            flex-wrap: nowrap;
            overflow-x: auto;
            gap: 10px;
            padding: 15px;
            background-color: #f9f9f9;
        }
        
        .product-modal-gallery img {
            max-height: 300px;
            border-radius: 4px;
            cursor: pointer;
            border: 1px solid var(--border-color);
        }
        
        .product-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .product-modal-body {
            padding: 20px;
        }
        
        .product-modal-title {
            font-size: 24px;
            margin: 0 0 15px;
            color: var(--dark-color);
        }
        
        .product-modal-price {
            font-size: 22px;
            color: var(--primary-color);
            font-weight: bold;
            margin: 10px 0;
        }
        
        .product-modal-section {
            margin: 20px 0;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--border-color);
        }
        
        .product-modal-section-title {
            font-size: 18px;
            margin: 0 0 15px;
            color: var(--dark-color);
        }
        
        .product-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .feature-item {
            background-color: #f9f9f9;
            padding: 10px;
            border-radius: 4px;
            border-left: 3px solid var(--primary-color);
        }
        
        .product-specs {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 10px;
        }
        
        .spec-item {
            display: flex;
            margin-bottom: 8px;
        }
        
        .spec-label {
            font-weight: bold;
            margin-right: 5px;
            color: #666;
            min-width: 120px;
        }
        
        .spec-value {
            color: var(--dark-color);
        }
        
        .product-modal-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .modal-btn {
            flex: 1;
            padding: 12px;
            font-size: 16px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .modal-btn-primary {
            background-color: var(--primary-color);
            color: white;
            border: none;
        }
        
        .modal-btn-primary:hover {
            background-color: #e05a00;
        }
        
        .modal-btn-secondary {
            background-color: white;
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
        }
        
        .modal-btn-secondary:hover {
            background-color: #fff5f0;
        }
        
        .wishlist-btn {
            position: fixed;
            right: 30px;
            bottom: 30px;
            background-color: var(--primary-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            z-index: 100;
        }
        
        .wishlist-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: var(--secondary-color);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .wishlist-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.5);
            z-index: 1000;
        }
        
        .wishlist-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            border-radius: 4px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }
        
        .wishlist-header {
            padding: 15px 20px;
            background-color: var(--primary-color);
            color: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .wishlist-title {
            margin: 0;
            font-size: 18px;
        }
        
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        #wishlistItems {
            flex-grow: 1;
            overflow-y: auto;
            padding: 15px;
        }
        
        .wishlist-item {
            display: flex;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .wishlist-item-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            margin-right: 15px;
            border-radius: 4px;
        }
        
        .wishlist-item-info {
            flex-grow: 1;
        }
        
        .wishlist-item-name {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .remove-from-wishlist {
            background: none;
            border: none;
            color: #ff0000;
            cursor: pointer;
            font-size: 14px;
            padding: 0;
            margin-top: 5px;
        }
        
        .empty-wishlist {
            text-align: center;
            padding: 30px;
        }
        
        .empty-wishlist-icon {
            font-size: 50px;
            margin-bottom: 15px;
        }
        
        .checkout-actions {
            display: flex;
            padding: 15px;
            gap: 10px;
            border-top: 1px solid var(--border-color);
        }
        
        .checkout-btn {
            flex: 1;
            padding: 12px;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 16px;
        }
        
        .checkout-whatsapp {
            background-color: #25D366;
            color: white;
            border: none;
        }
        
        .checkout-email {
            background-color: #4285F4;
            color: white;
            border: none;
        }
        
        .loading {
            text-align: center;
            padding: 50px;
        }
        
        .loading .spinner {
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .no-products {
            text-align: center;
            padding: 50px;
        }
        
        .no-products i {
            font-size: 50px;
            color: #ccc;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .top-bar {
                flex-direction: column;
                gap: 15px;
            }
            
            .search-container {
                width: 100%;
                margin: 15px 0;
            }
            
            .nav-menu {
                flex-wrap: wrap;
            }
            
            .nav-item {
                padding: 10px;
            }
            
            .product-modal-content {
                margin: 20px auto;
                width: 95%;
            }
            
            .product-modal-gallery img {
                max-height: 200px;
            }
            
            .product-modal-actions {
                flex-direction: column;
            }
        }
        .product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.product-modal-content {
    background-color: #fff;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    padding: 20px;
    position: relative;
}