        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            font-size: clamp(14px, 2vw, 16px);
        }
        
        body { 
            font-family: Arial, sans-serif; 
            /* NEW: Purple gradient background */
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            line-height: 1.6;
            width: 100vw;
            overflow-x: hidden;
        }
        
        .container { 
            width: 100%;
            max-width: 100vw;
            margin: 0 auto; 
            background: white; 
            min-height: 100vh;
            box-shadow: 0 0 20px rgba(0,0,0,0.3);
        }
        
        /* NEW: Deployment banner */
        .deployment-banner {
            background: linear-gradient(90deg, #ff0000 0%, #ff0000 100%);
            color: #1a1a2e;
            padding: 15px;
            text-align: center;
            font-weight: bold;
            font-size: 1.2rem;
            box-shadow: 0 2px 10px #8b0000;
            animation: pulse 2s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        .nav { 
            /* NEW: Dark navy background */
            background: #1a1a2e;
            padding: clamp(0.75rem, 2vw, 1.5rem) clamp(1rem, 3vw, 2rem); 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }
        
        .nav h1 { 
            /* NEW: Bright green title */
            color: #ff0000;
            font-size: clamp(1.25rem, 3vw, 2rem);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .nav-links { 
            display: flex; 
            gap: clamp(0.75rem, 2vw, 1.5rem);
            list-style: none;
            flex-wrap: wrap;
        }
        
        .nav-links a { 
            color: white; 
            text-decoration: none; 
            padding: clamp(0.4rem, 1vw, 0.6rem) clamp(0.75rem, 2vw, 1.2rem); 
            /* NEW: Purple buttons */
            background: #667eea;
            border-radius: 5px; 
            transition: all 0.3s;
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .nav a { 
            color: white; 
            text-decoration: none; 
            margin-right: clamp(1rem, 3vw, 2.5rem); 
            padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1.25rem); 
            border-radius: 4px; 
            transition: background 0.3s;
            font-size: clamp(0.9rem, 1.8vw, 1.1rem);
        }
        
        .nav a:hover { 
            background: #34495e; 
        }
        
        .hero { 
            background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%); 
            color: white; 
            padding: clamp(2rem, 8vw, 4rem) clamp(1rem, 4vw, 2rem); 
            text-align: center;
            width: 100%;
        }
        
        .hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: clamp(1rem, 2vw, 1.25rem);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .mission {
            padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 2rem);
            text-align: center;
            background: #ecf0f1;
            margin: clamp(1rem, 4vw, 2rem) 0;
            width: 100%;
        }
        
        .mission h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
        }
        
        .mission p {
            max-width: 800px;
            margin: 0 auto;
            font-size: clamp(1rem, 2vw, 1.1rem);
            color: #555;
        }
        
        .separator {
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            margin: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 2rem);
            border-radius: 2px;
            width: calc(100% - 2 * clamp(1rem, 4vw, 2rem));
        }
        
        .products-section {
            padding: clamp(1rem, 4vw, 2rem);
            width: 100%;
        }
        
        .products-section h2 {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 3rem;
            font-size: clamp(1.5rem, 3vw, 2.5rem);
        }
        
        .products { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); 
            gap: clamp(1rem, 3vw, 2rem); 
            margin-bottom: clamp(2rem, 6vw, 3rem);
            width: 100%;
        }
        
        .product { 
            background: white; 
            border-radius: 12px; 
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .product:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .product-image { 
            width: 100%; 
            height: 200px; 
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .product-content {
            padding: clamp(1rem, 3vw, 1.5rem);
        }
        
        .product h3 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
            font-size: clamp(1.1rem, 2.5vw, 1.25rem);
        }
        
        .product p {
            color: #666;
            margin-bottom: 1.5rem;
            font-size: clamp(0.9rem, 2vw, 0.95rem);
        }
        
        .product-buttons {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        button { 
            background: #3498db; 
            color: white; 
            border: none; 
            padding: clamp(0.6rem, 2vw, 0.75rem) clamp(1rem, 3vw, 1.5rem); 
            border-radius: 6px; 
            cursor: pointer; 
            font-size: clamp(0.85rem, 2vw, 0.9rem);
            transition: all 0.3s;
            flex: 1;
            min-width: clamp(100px, 25vw, 120px);
        }
        
        button:hover { 
            background: #2980b9; 
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: #95a5a6;
        }
        
        .btn-secondary:hover {
            background: #7f8c8d;
        }
        
        .cart-icon {
            position: fixed;
            top: clamp(15px, 3vw, 20px);
            right: clamp(15px, 3vw, 20px);
            background: #e74c3c;
            color: white;
            border: none;
            padding: clamp(0.8rem, 2.5vw, 1rem);
            border-radius: 50%;
            cursor: pointer;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #f39c12;
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        /* Success page styles */
        .success-content {
            padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 2rem);
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .success-icon {
            font-size: clamp(3rem, 8vw, 5rem);
            margin-bottom: 2rem;
            display: block;
            text-align: center;
        }
        
        .success-content h1 {
            color: #27ae60;
            text-align: center;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 1rem;
        }
        
        .success-content > p {
            text-align: center;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 3rem;
            color: #555;
        }
        
        .order-details, .order-items, .next-steps, .contact-info {
            background: #f8f9fa;
            padding: clamp(1.5rem, 4vw, 2rem);
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .order-details h2, .order-items h2, .next-steps h2, .contact-info h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: clamp(1.3rem, 3vw, 1.8rem);
        }
        
        .detail-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .detail-row:last-child {
            border-bottom: none;
        }
        
        .ordered-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .item-name {
            font-weight: bold;
            color: #2c3e50;
        }
        
        .item-quantity {
            color: #666;
            font-size: 0.9rem;
        }
        
        .item-price {
            font-weight: bold;
            color: #27ae60;
        }
        
        .order-total {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 2px solid #2c3e50;
        }
        
        .total-row {
            display: flex;
            justify-content: space-between;
            padding: 0.3rem 0;
        }
        
        .grand-total {
            font-weight: bold;
            font-size: 1.2rem;
            color: #2c3e50;
            border-top: 1px solid #ddd;
            padding-top: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .steps {
            display: grid;
            gap: 1.5rem;
        }
        
        .step {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }
        
        .step-number {
            background: #3498db;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .step-content h3 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .step-content p {
            color: #666;
            line-height: 1.5;
        }
        
        .contact-details {
            display: grid;
            gap: 0.8rem;
        }
        
        .contact-item {
            padding: 0.5rem 0;
        }
        
        .action-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .btn {
            padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: clamp(0.9rem, 2vw, 1rem);
            text-decoration: none;
            display: inline-block;
            text-align: center;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background: #3498db;
            color: white;
        }
        
        .btn-primary:hover {
            background: #2980b9;
        }
        
        /* Cart page styles */
        .cart-header {
            text-align: center;
            padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 4vw, 2rem);
            background: #f8f9fa;
        }
        
        .cart-header h1 {
            color: #2c3e50;
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 0.5rem;
        }
        
        .cart-header p {
            color: #666;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
        }
        
        .cart-content {
            padding: clamp(1rem, 4vw, 2rem);
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .cart-items {
            margin-bottom: 2rem;
        }
        
        .cart-item {
            display: grid;
            grid-template-columns: 1fr auto auto;
            gap: clamp(1rem, 3vw, 2rem);
            align-items: center;
            padding: clamp(1rem, 3vw, 1.5rem);
            border-bottom: 1px solid #eee;
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .item-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .item-name {
            font-weight: bold;
            color: #2c3e50;
            font-size: clamp(1rem, 2.5vw, 1.1rem);
        }
        
        .item-price {
            color: #27ae60;
            font-weight: bold;
        }
        
        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .quantity-btn {
            background: #95a5a6;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quantity-btn:hover {
            background: #7f8c8d;
        }
        
        .quantity {
            min-width: 30px;
            text-align: center;
            font-weight: bold;
        }
        
        .remove-btn {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.9rem;
        }
        
        .remove-btn:hover {
            background: #c0392b;
        }
        
        .cart-summary {
            background: #f8f9fa;
            padding: clamp(1.5rem, 4vw, 2rem);
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .summary-row:last-child {
            border-bottom: none;
        }
        
        .summary-total {
            font-weight: bold;
            font-size: 1.2rem;
            color: #2c3e50;
            border-top: 2px solid #2c3e50;
            padding-top: 1rem;
            margin-top: 1rem;
        }
        
        .checkout-section {
            background: white;
            padding: clamp(1.5rem, 4vw, 2rem);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        
        .checkout-section h2 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            font-size: clamp(1.5rem, 3vw, 2rem);
        }
        
        .form-group {
            margin-bottom: 1rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: bold;
        }
        
        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3498db;
        }
        
        .checkout-btn {
            background: #27ae60;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 6px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            width: 100%;
            margin-top: 1rem;
            transition: background 0.3s;
        }
        
        .checkout-btn:hover {
            background: #229954;
        }
        
        .checkout-btn:disabled {
            background: #95a5a6;
            cursor: not-allowed;
        }
        
        .empty-cart {
            text-align: center;
            padding: clamp(3rem, 8vw, 5rem);
        }
        
        .empty-cart h2 {
            color: #2c3e50;
            margin-bottom: 1rem;
            font-size: clamp(1.5rem, 4vw, 2rem);
        }
        
        .empty-cart p {
            color: #666;
            margin-bottom: 2rem;
            font-size: clamp(1rem, 2.5vw, 1.2rem);
        }
        
        .continue-shopping {
            background: #3498db;
            color: white;
            padding: 1rem 2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            transition: background 0.3s;
        }
        
        .continue-shopping:hover {
            background: #2980b9;
        }
        
        /* Responsive breakpoints */
        @media (max-width: 1024px) {
            .products {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .nav {
                flex-direction: column;
                gap: 0.5rem;
            }
            
            .nav a {
                margin-right: 0.5rem;
            }
            
            .products {
                grid-template-columns: 1fr;
            }
            
            .product-buttons {
                flex-direction: column;
            }
            
            .cart-item {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .action-buttons {
                flex-direction: column;
            }
            
            .step {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                margin: 0;
                box-shadow: none;
            }
            
            .nav {
                padding: 1rem 0.5rem;
            }
            
            .nav a {
                font-size: 0.9rem;
                padding: 0.4rem 0.6rem;
            }
            
            .product-image {
                height: clamp(150px, 40vw, 200px);
            }
        }
