* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #fff;
}

/* Navbar */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff0000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: bold;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo i {
    font-size: 30px;
    color: #ff0000;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.nav-icons {
    display: flex;
    gap: 25px;
    font-size: 22px;
    color: #fff;
}

.nav-icons i {
    cursor: pointer;
    transition: all 0.3s;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.nav-icons i:hover {
    color: #ff0000;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a0000 0%, #000 50%, #1a0000 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #ff0000;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff0000 0%, #fff 50%, #ff0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 0, 0.5);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #ccc;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 30px;
    transition: all 0.3s;
}

.feature:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.feature i {
    font-size: 26px;
    color: #ff0000;
}

/* Products Section */
.products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ff0000 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #999;
    font-size: 18px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    transition: all 0.4s;
    position: relative;
    border: 2px solid #2a2a2a;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
    border-color: #ff0000;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.bestseller {
    background: linear-gradient(135deg, #ff0000 0%, #ff6600 100%);
}

.product-badge.new {
    background: linear-gradient(135deg, #ff0000 0%, #ff0066 100%);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: #000;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: brightness(0.9);
}

.product-card:hover .product-image img {
    transform: scale(1.15);
    filter: brightness(1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: #fff;
    color: #000;
    border: 2px solid #ff0000;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quick-view:hover {
    background: #ff0000;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.6);
}

.product-info {
    padding: 25px;
}

.product-category {
    color: #ff0000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-info h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
    min-height: 48px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #ff0000;
    font-size: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.product-rating span {
    color: #999;
    font-size: 14px;
    margin-left: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 30px;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.original-price {
    font-size: 18px;
    color: #666;
    text-decoration: line-through;
}

.discount {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.4);
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.add-to-cart-btn:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

/* Checkout Section */
.checkout-section {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 40px 20px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
}

.back-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #ff0000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    font-weight: 600;
}

.back-btn:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
}

.order-summary {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    height: fit-content;
    position: sticky;
    top: 120px;
    border: 2px solid #2a2a2a;
}

.order-summary h2 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.order-summary h2 i {
    color: #ff0000;
}

.summary-product {
    display: flex;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 2px solid #2a2a2a;
    margin-bottom: 25px;
}

.summary-product img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.summary-details h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
}

.summary-price {
    font-size: 24px;
    font-weight: bold;
    color: #ff0000;
    margin-bottom: 18px;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-selector label {
    font-size: 14px;
    color: #999;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #0a0a0a;
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.qty-controls button {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.qty-controls button:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.5);
}

.qty-controls span {
    min-width: 35px;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #fff;
}

.price-breakdown {
    margin-top: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 16px;
    color: #ccc;
}

.price-row.total {
    border-top: 2px solid #ff0000;
    margin-top: 15px;
    padding-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.price-row.total span:last-child {
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.free-tag {
    color: #ff0000;
    font-weight: bold;
}

.customer-form-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    border: 2px solid #2a2a2a;
}

.customer-form-container h2 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.customer-form-container h2 i {
    color: #ff0000;
}

.form-row {
    margin-bottom: 25px;
}

.form-group {
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group label i {
    color: #ff0000;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #fff;
    transition: all 0.3s;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff0000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
    padding-right: 50px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #555;
}

.form-group select option {
    background: #1a1a1a;
    color: #fff;
    padding: 12px;
}

.form-group select option:hover,
.form-group select option:checked {
    background: #ff0000;
    color: #fff;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 15px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

/* Payment Section */
.payment-section {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 50px 20px;
}

.payment-container {
    max-width: 650px;
    margin: 0 auto;
}

.success-animation {
    text-align: center;
    margin-bottom: 35px;
}

.checkmark-circle {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.6s ease;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.6);
}

@keyframes scaleIn {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

.checkmark {
    width: 45px;
    height: 22px;
    border-left: 7px solid white;
    border-bottom: 7px solid white;
    transform: rotate(-45deg);
    margin-top: -12px;
}

.payment-container h2 {
    text-align: center;
    font-size: 32px;
    color: #fff;
    margin-bottom: 12px;
}

.order-id-text {
    text-align: center;
    color: #999;
    margin-bottom: 35px;
    font-size: 16px;
}

.order-id-text strong {
    color: #ff0000;
    font-size: 18px;
}

.payment-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 25px;
    border: 2px solid #2a2a2a;
}

.payment-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.payment-card h3 i {
    color: #ff0000;
}

.payment-amount-box {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.payment-amount {
    font-size: 36px;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.upi-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.upi-section h4 i {
    color: #ff0000;
}

.upi-id-box {
    background: #0a0a0a;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border: 2px solid #2a2a2a;
}

.upi-id-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upi-label {
    font-size: 13px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.upi-id-value {
    font-size: 20px;
    font-weight: bold;
    color: #ff0000;
}

.copy-upi-btn {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.copy-upi-btn:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

.qr-code-section {
    text-align: center;
    margin-bottom: 30px;
}

.qr-code-box {
    width: 220px;
    height: 220px;
    background: #0a0a0a;
    border: 3px dashed #ff0000;
    border-radius: 15px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #999;
}

.qr-code-box i {
    font-size: 70px;
    color: #ff0000;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

.payment-apps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.payment-app-btn {
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    padding: 25px 12px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.payment-app-btn:hover {
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.payment-app-btn i {
    font-size: 38px;
}

.payment-app-btn.gpay i {
    color: #4285f4;
}

.payment-app-btn.phonepe i {
    color: #5f259f;
}

.payment-app-btn.paytm i {
    color: #00baf2;
}

.payment-app-btn span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.payment-note {
    background: rgba(255, 0, 0, 0.1);
    padding: 18px;
    border-radius: 10px;
    display: flex;
    gap: 12px;
    margin-top: 25px;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.payment-note i {
    color: #ff0000;
    font-size: 20px;
}

.payment-note p {
    color: #ccc;
    font-size: 14px;
}

.back-home-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    border: 2px solid #ff0000;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-home-btn:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: white;
    padding: 0;
    border-top: 3px solid #ff0000;
}

/* Trust Badges */
.trust-badges {
    background: rgba(255, 0, 0, 0.05);
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #2a2a2a;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s;
}

.trust-badge:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: #ff0000;
    transform: translateY(-3px);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    font-size: 24px;
    color: white;
}

.badge-content h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 3px;
    font-weight: 600;
}

.badge-content p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Footer Content */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 50px 20px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ff0000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #999;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ff0000;
    padding-left: 5px;
}

.contact-info li {
    color: #999;
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li i {
    color: #ff0000;
    width: 20px;
}

/* Payment Methods */
.payment-methods {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.payment-methods h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.payment-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.payment-icon:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: #ff0000;
    transform: translateY(-2px);
}

.payment-icon i {
    color: #ff0000;
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    color: #999;
    font-size: 14px;
    background: #000;
}

.footer-bottom i {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Utility */
.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-features {
        gap: 25px;
    }
    
    /* Checkout Page Mobile */
    .checkout-section {
        padding: 20px 15px;
    }
    
    .checkout-container {
        padding: 0;
    }
    
    .back-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .order-summary {
        position: static;
        padding: 20px;
        order: 2;
    }
    
    .customer-form-container {
        order: 1;
        padding: 20px;
    }
    
    .order-summary h2,
    .customer-form-container h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .summary-product {
        flex-direction: column;
        text-align: center;
    }
    
    .summary-product img {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .summary-details {
        width: 100%;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .price-breakdown {
        margin-top: 20px;
    }
    
    .form-row {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 14px;
    }
    
    .checkout-btn {
        padding: 16px;
        font-size: 15px;
    }
    
    /* Payment Page Mobile */
    .payment-section {
        padding: 20px 15px;
    }
    
    .payment-container {
        padding: 0;
    }
    
    .payment-container h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .order-id-text {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .order-id-text strong {
        font-size: 16px;
    }
    
    .payment-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .payment-card h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .payment-amount-box {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .payment-amount {
        font-size: 28px;
    }
    
    .upi-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .upi-id-box {
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .upi-id-value {
        font-size: 16px;
        word-break: break-all;
    }
    
    .copy-upi-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .qr-code-box {
        width: 180px;
        height: 180px;
    }
    
    .qr-code-box i {
        font-size: 50px;
    }
    
    .payment-apps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .payment-app-btn {
        padding: 20px;
    }
    
    .payment-app-btn i {
        font-size: 32px;
    }
    
    .payment-app-btn span {
        font-size: 16px;
    }
    
    .timer-box {
        padding: 15px;
    }
    
    .timer-display {
        font-size: 28px;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 15px;
    }
    
    .trust-badge {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .payment-icons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 15px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .hero-section {
        padding: 50px 15px;
    }
    
    .products-section {
        padding: 50px 15px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    /* Checkout Mobile Small */
    .checkout-section {
        padding: 15px 10px;
    }
    
    .back-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .order-summary,
    .customer-form-container {
        padding: 15px;
    }
    
    .order-summary h2,
    .customer-form-container h2 {
        font-size: 18px;
    }
    
    .summary-product img {
        max-width: 150px;
    }
    
    .summary-details h3 {
        font-size: 16px;
    }
    
    .summary-price {
        font-size: 20px;
    }
    
    .qty-controls button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px;
        font-size: 13px;
    }
    
    /* Payment Mobile Small */
    .payment-section {
        padding: 15px 10px;
    }
    
    .payment-container h2 {
        font-size: 20px;
    }
    
    .payment-card {
        padding: 15px;
    }
    
    .payment-card h3 {
        font-size: 16px;
    }
    
    .payment-amount-box {
        padding: 15px;
    }
    
    .payment-amount {
        font-size: 24px;
    }
    
    .upi-id-box {
        padding: 12px;
    }
    
    .upi-id-value {
        font-size: 14px;
    }
    
    .copy-upi-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .qr-code-box {
        width: 150px;
        height: 150px;
    }
    
    .qr-code-box i {
        font-size: 40px;
    }
    
    .payment-app-btn {
        padding: 15px;
    }
    
    .payment-app-btn i {
        font-size: 28px;
    }
    
    .payment-app-btn span {
        font-size: 14px;
    }
    
    .timer-display {
        font-size: 24px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .payment-icons {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-icon {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Page Content Styles */
.page-content {
    background: #0a0a0a;
    min-height: 100vh;
    padding: 40px 20px;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

.content-container h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #ff0000 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #2a2a2a;
    margin-bottom: 25px;
}

.content-box h2 {
    font-size: 24px;
    color: #ff0000;
    margin-bottom: 15px;
}

.content-box p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-box ul {
    list-style: none;
    padding-left: 0;
}

.content-box ul li {
    color: #ccc;
    padding: 10px 0;
    border-bottom: 1px solid #2a2a2a;
}

.content-box ul li:last-child {
    border-bottom: none;
}

.content-box ul li i {
    color: #ff0000;
    margin-right: 10px;
    width: 20px;
}

.content-box a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
}

.content-box a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid rgba(255, 0, 0, 0.3);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.highlight-box h2 {
    font-size: 24px;
    color: #ff0000;
    margin-bottom: 15px;
}

.highlight-box p {
    color: #fff;
    line-height: 1.8;
    font-size: 16px;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #ff0000;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

/* Track Order Styles */
.track-form-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #2a2a2a;
    margin-bottom: 30px;
}

.track-form-box h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

.track-form-box .form-group {
    margin-bottom: 25px;
}

.track-form-box .form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #ccc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.track-form-box .form-group label i {
    color: #ff0000;
}

.track-form-box .form-group input {
    width: 100%;
    padding: 15px;
    background: #0a0a0a;
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
}

.track-form-box .form-group input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.track-form-box .form-group small {
    display: block;
    color: #999;
    font-size: 13px;
    margin-top: 8px;
}

.btn-track {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-track:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.5);
}

.order-details-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #ff0000;
    margin-bottom: 25px;
}

.order-details-box h2 {
    font-size: 24px;
    color: #ff0000;
    margin-bottom: 25px;
    text-align: center;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #999;
    font-weight: 600;
}

.detail-value {
    color: #fff;
    text-align: right;
}

.error-box {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
}

.error-box i {
    font-size: 48px;
    color: #ff0000;
    margin-bottom: 20px;
}

.error-box h3 {
    font-size: 24px;
    color: #ff0000;
    margin-bottom: 15px;
}

.error-box p {
    color: #ccc;
    font-size: 16px;
}

/* Responsive for content pages */
@media (max-width: 768px) {
    .content-container h1 {
        font-size: 28px;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .track-form-box {
        padding: 25px;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .detail-value {
        text-align: left;
    }
}


/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-form-box,
.contact-info-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #2a2a2a;
}

.contact-form-box h2,
.contact-info-box h2 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-box h2 i,
.contact-info-box h2 i {
    color: #ff0000;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    transition: all 0.3s;
}

.info-item:hover {
    border-color: #ff0000;
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: white;
}

.info-content h3 {
    color: #ff0000;
    margin-bottom: 8px;
    font-size: 18px;
}

.info-content p {
    color: #999;
    margin: 5px 0;
    line-height: 1.6;
}

.success-message {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 200, 0, 0.05) 100%);
    border: 2px solid #00ff00;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.success-message i {
    font-size: 48px;
    color: #00ff00;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #00ff00;
    margin-bottom: 10px;
    font-size: 24px;
}

.success-message p {
    color: #ccc;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-box,
    .contact-info-box {
        padding: 20px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto;
    }
}


/* Payment Status Page Styles */
.status-animation {
    text-align: center;
    margin-bottom: 35px;
    padding: 30px;
}

.spinner-circle {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.6);
}

.spinner-circle i {
    font-size: 50px;
    color: white;
}

.checkmark-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: scaleIn 0.6s ease;
}

.checkmark-circle.success {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    box-shadow: 0 10px 40px rgba(0, 255, 0, 0.6);
}

.checkmark-circle.failed {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.6);
}

.checkmark-circle.pending {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.6);
}

.checkmark-circle i {
    font-size: 50px;
    color: white;
}

.status-message {
    color: #999;
    font-size: 16px;
    margin-top: 10px;
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #2a2a2a;
}

.order-detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #999;
    font-size: 14px;
    font-weight: 500;
}

.detail-value {
    color: #fff;
    font-size: 15px;
    text-align: right;
}

.amount-highlight {
    color: #ff0000;
    font-size: 20px;
    font-weight: bold;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

.status-badge.status-success {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
}

.status-badge.status-failed {
    background: rgba(255, 0, 0, 0.2);
    color: #ff0000;
}

.status-info {
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
    margin-top: 25px;
    text-align: center;
}

.status-info p {
    color: #ffa500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-info i {
    font-size: 20px;
}

/* Mobile Responsive for Payment Status */
@media (max-width: 768px) {
    .status-animation {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .spinner-circle,
    .checkmark-circle {
        width: 90px;
        height: 90px;
    }
    
    .spinner-circle i,
    .checkmark-circle i {
        font-size: 40px;
    }
    
    .status-animation h2 {
        font-size: 22px;
    }
    
    .status-message {
        font-size: 14px;
    }
    
    .order-detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .amount-highlight {
        font-size: 18px;
    }
    
    .status-info {
        padding: 15px;
    }
    
    .status-info p {
        flex-direction: column;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .spinner-circle,
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .spinner-circle i,
    .checkmark-circle i {
        font-size: 35px;
    }
    
    .status-animation h2 {
        font-size: 20px;
    }
    
    .detail-label,
    .detail-value {
        font-size: 13px;
    }
    
    .amount-highlight {
        font-size: 16px;
    }
}
