
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: rgba(0, 0, 0, 0.9);
            color: white;
            padding: 1rem 0;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #f39c12;
        }

        /* Timer */
        .timer {
            background: #e74c3c;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23667eea" width="1200" height="800"/><rect fill="%23764ba2" width="1200" height="400" y="400"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 150px 0 100px;
            text-align: center;
            color: white;
            margin-top: 80px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            background: linear-gradient(45deg, #f39c12, #e67e22);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
        }

        /* Product Gallery */
        .products {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }
        
        
        .section-review {
            color: #fff;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            cursor: pointer; /* Added for quick view */
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-image {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-img-tag {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Or use "contain" if you want full visibility without cropping */
    border-radius: 0;
}

        .product-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #e74c3c;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: bold;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-name {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .product-price {
            font-size: 1.5rem;
            color: #e74c3c;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .product-description {
    color: #666;
    margin-bottom: 1rem;
    max-height: 4.5em; /* roughly 3 lines, adjust as needed */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* limits lines for multiline ellipsis */
    -webkit-box-orient: vertical;
}

        .add-to-cart {
            background: #27ae60;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .add-to-cart:hover {
            background: #219a52;
            transform: translateY(-2px);
        }

        /* Payment Options */
        .payment-section {
            background: #f8f9fa;
            padding: 60px 0;
        }

        .payment-grid {
            display: flex; /* Changed to flex for single item centering */
            justify-content: center; /* Center the single item */
            gap: 3rem;
            align-items: center;
            flex-wrap: wrap; /* Allow wrapping on smaller screens */
        }

        .payment-option {
            padding: 15px 25px;
            border: 2px solid #ddd;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            flex: 0 1 300px; /* Allow shrinking/growing, base width 300px */
            background: linear-gradient(45deg, #f39c12, #e67e22); /* BTC specific styling */
            color: white;
            box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
            font-size: 1.2rem;
            font-weight: bold;
        }

        .payment-option:hover {
            transform: translateY(-5px); /* More pronounced lift on hover */
            box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
        }

        .payment-option small {
            display: block;
            margin-top: 5px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            font-weight: normal;
        }

        .crypto-highlight {
            /* This section is now replaced by the modal functionality */
            display: none;
        }

        /* Reviews Section */
        .reviews {
            padding: 80px 0;
            background: #2c3e50;
            color: white;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 20px;
        }

        .review-card {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .stars {
            color: #f39c12;
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .review-text {
            font-style: italic;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .reviewer-name {
            font-weight: bold;
            color: #f39c12;
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: white;
            padding: 40px 0;
            text-align: center;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: #f39c12;
            margin-bottom: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .payment-grid {
                grid-template-columns: 1fr; /* Stack on smaller screens */
                justify-content: center; /* Center the stacked items */
            }
            
            .header-content {
                flex-direction: column;
                gap: 1rem;
            }
            /* Hamburger menu adjustments */
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                text-align: center;
                background: rgba(0, 0, 0, 0.8);
                position: absolute;
                top: 70px; /* Adjust based on header height */
                left: 0;
                padding-bottom: 10px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links a {
                padding: 10px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block; /* Show hamburger icon */
            }
        }

        /* New CSS for Quick View Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 1001;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(5px);
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .modal-content {
            background-color: #fefefe;
            margin: auto;
            padding: 40px;
            border-radius: 15px;
            width: 90%;
            max-width: 800px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            position: relative;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .modal-image {
            flex: 1;
            min-width: 300px;
            height: 350px;
            background-size: cover;
            background-position: center;
            border-radius: 10px;
        }

        .modal-details {
            flex: 1;
            min-width: 300px;
        }

        .modal-details h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .modal-details .price {
            font-size: 1.8rem;
            color: #e74c3c;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .modal-details .description {
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .modal-details .qty-selector {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .modal-details .qty-selector button {
            background: #eee;
            border: 1px solid #ccc;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
        }

        .modal-details .qty-selector input {
            width: 50px;
            text-align: center;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .modal-details .add-to-cart-modal {
            width: 100%;
            padding: 15px 30px;
            font-size: 1.1rem;
        }

        .close-button {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 30px;
            font-weight: bold;
            color: #aaa;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-button:hover,
        .close-button:focus {
            color: #333;
            text-decoration: none;
        }

        /* Shopping Cart Styles */
        .cart-icon {
            position: relative;
            cursor: pointer;
            font-size: 1.5rem;
            color: white;
            margin-left: 20px;
        }

        .cart-count {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #f39c12;
            color: white;
            border-radius: 50%;
            padding: 2px 7px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .cart-sidebar {
            display: none; /* Hidden by default */
            position: fixed;
            top: 0;
            right: 0;
            width: 350px;
            height: 100%;
            background: #fff;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
            z-index: 1002;
            padding: 20px;
            box-sizing: border-box;
            overflow-y: auto;
            transform: translateX(100%);
            transition: transform 0.3s ease-in-out;
        }

        .cart-sidebar.open {
            transform: translateX(0);
        }

        .cart-sidebar h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #2c3e50;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-close {
            font-size: 2rem;
            cursor: pointer;
            color: #888;
        }

        .cart-items {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;
        }

        .cart-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }

        .cart-item-image {
            width: 70px;
            height: 70px;
            background-size: cover;
            background-position: center;
            border-radius: 8px;
            margin-right: 15px;
        }

        .cart-item-info {
            flex-grow: 1;
        }

        .cart-item-name {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: #e74c3c;
            font-weight: bold;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }

        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .cart-item-qty button {
            background: #eee;
            border: none;
            padding: 3px 8px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 0.9rem;
        }

        .cart-item-qty span {
            min-width: 20px;
            text-align: center;
        }

        .cart-remove {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 5px 10px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 0.8rem;
            margin-left: 10px;
        }

        .cart-total {
            font-size: 1.5rem;
            font-weight: bold;
            text-align: right;
            margin-top: 20px;
            color: #2c3e50;
        }

        .checkout-button {
            width: 100%;
            background: #27ae60;
            color: white;
            border: none;
            padding: 15px 0;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 20px;
        }

        .checkout-button:hover {
            background: #219a52;
        }

        /* Back to Top Button */
        #backToTopBtn {
            display: none;
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 99;
            font-size: 24px;
            background-color: #f39c12;
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s, background-color 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        #backToTopBtn:hover {
            opacity: 1;
            background-color: #e67e22;
        }

        /* Hamburger menu */
        .hamburger {
            display: none; /* Hidden by default, shown on mobile */
            font-size: 2rem;
            cursor: pointer;
            color: white;
            padding-right: 10px; /* Adjust padding if needed */
        }
        .nav-links {
            display: flex;
            gap: 20px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s ease;
        }
        .nav-links a:hover {
            color: #f39c12;
        }

        /* BTC Payment Modal Specific Styles */
        #btcPaymentModal .modal-content {
            max-width: 500px; /* Adjust width for the BTC modal */
            text-align: center;
            flex-direction: column;
            align-items: center;
        }

        #btcPaymentModal h2 {
            font-size: 2.2rem;
            color: #27ae60; /* Green for success/crypto */
            margin-bottom: 20px;
        }

        #btcPaymentModal .bitcoin-address-display {
            background: #e8f5e9; /* Light green background */
            border: 1px dashed #4CAF50;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-family: 'Courier New', monospace;
            font-size: 1.1rem;
            color: #333;
            word-break: break-all; /* Ensure long address breaks */
        }
        

        #btcPaymentModal .copy-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s ease;
            margin-top: 10px;
        }

        #btcPaymentModal .copy-btn:hover {
            background: #2980b9;
        }

        #btcPaymentModal p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 15px;
        }
        #btcPaymentModal .warning-message {
            font-size: 0.9em;
            color: #e74c3c;
            font-weight: bold;
            margin-top: 10px;
        }
        
        /* Hidden class to toggle visibility */
.hidden {
  display: none !important;
}

/* Loader container */
#loader {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;               /* Show loader as flex container */
  justify-content: center;
  align-items: center;
}

/* Loader spinner */
#loader > div {
  width: 56px;                 /* w-14 in tailwind */
  height: 56px;                /* h-14 */
  border: 4px solid white;
  border-top-color: transparent;
  border-radius: 9999px;
  animation: spin 1s linear infinite;
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Toast styling */
#toast {
  position: fixed;
  top: 1rem;
  left: 1.5rem;
  background: #16a34a;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#miniCartPreview {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1100;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  width: 16rem;
  /* Initially hidden */
  display: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Optional: fade-in effect */
#miniCartPreview.fade-in {
  display: block !important;
  opacity: 1;
}
/* Show toast */
.opacity-100 {
  opacity: 1 !important;
  pointer-events: auto;
}
.opacity-0 {
  opacity: 0 !important;
  pointer-events: none;
}

 .pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.pagination-btn {
  background-color: #f1f5f9;
  color: #111827;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  border: 1px solid #e2e8f0;
}

.pagination-btn:hover {
  background-color: #e0e7ff;
  color: #1e3a8a;
}

.pagination-btn.active {
  background-color: #3b82f6;
  color: white;
  font-weight: 600;
  border-color: #3b82f6;
}
.whatsapp-float-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease;
}
.whatsapp-float-left:hover {
  transform: scale(1.05);
}