/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F47A00;
    --primary-dark: #e55a2b;
    --secondary: #2c3e50;
    --accent: #27ae60;
    --light: #f8f9fa;
    --dark: #1a1a2e;
    --text: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
    --radius: 12px;
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 10px auto 0;
    border-radius: 2px;
}

.bg-light { background: var(--light); }
.text-center { text-align: center; }
.highlight { color: var(--primary); }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 20px;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 35px;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
    box-sizing: border-box;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
    text-transform: uppercase;
}

.logo i { font-size: 1.5rem; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: nowrap;
}

.nav-links a {
    padding: 6px 10px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: var(--transition);
    color: var(--text);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--primary);
    color: var(--white);
}

.cart-link { position: relative; margin-right: 5px; }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.lang-selector {
    margin-left: 5px;
    margin-right: 5px;
    flex-shrink: 0;
}
.lang-selector select {
    padding: 4px 10px;
    border: 2px solid #ff6b35;
    border-radius: 20px;
    background: #fff;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff6b35' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}
.lang-selector select:hover,
.lang-selector select:focus {
    background-color: #ff6b35;
    color: #fff;
    border-color: #ff6b35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Page Sections ===== */
.page {
    display: none;
    padding-top: 0;
    min-height: 100vh;
}
.page.active { display: block; }

.page-header {
    background: linear-gradient(135deg, var(--secondary), var(--dark));
    color: var(--white);
    padding: 60px 20px;
    padding-top: 155px;
    text-align: center;
}
.page-header h1 { font-size: 2.5rem; margin-bottom: 10px; }
.page-header p { font-size: 1.1rem; opacity: 0.9; }

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    padding-top: 155px;
    text-align: center;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
}

.hero-content {
    flex: 1;
    color: var(--white);
}

.hero-image-left {
    flex-shrink: 0;
    width: 250px;
}

.hero-image-left img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-image {
    flex-shrink: 0;
    width: 250px;
}

.hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }
    .hero-image-left {
        display: none;
    }
    .hero-image {
        width: 100%;
        display: flex;
        gap: 10px;
    }
    .hero-image img {
        width: 48%;
        border-radius: 10px;
    }
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-text {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 30px;
}

.hero-cta-img {
    display: none;
}

.hero-activities {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Weight Program ===== */
.weight-program {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.program-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.disclaimer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 30px 0;
}
.disclaimer i { color: #856404; font-size: 1.5rem; flex-shrink: 0; }
.disclaimer p { color: #856404; font-size: 0.9rem; text-align: left; }

/* ===== Contact Info ===== */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}
.contact-item i { font-size: 1.5rem; color: var(--primary); }

/* ===== Exercise Cards ===== */
.exercise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.exercise-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}
.exercise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.exercise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.exercise-icon i { font-size: 2rem; color: var(--white); }

.exercise-card h3 { color: var(--secondary); margin-bottom: 10px; font-size: 1.3rem; }
.exercise-desc { color: var(--text-light); margin-bottom: 15px; font-size: 0.9rem; }

.exercise-details { text-align: left; margin-bottom: 20px; }
.exercise-details h4 { color: var(--secondary); margin-bottom: 8px; }
.exercise-details ul { padding-left: 20px; margin-bottom: 15px; }
.exercise-details li { color: var(--text-light); font-size: 0.9rem; margin-bottom: 5px; list-style: disc; }

.batch-info { background: var(--light); padding: 15px; border-radius: 8px; }
.batch-info p { font-size: 0.9rem; margin-bottom: 5px; }

/* ===== Diet Cards ===== */
.diet-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.diet-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.diet-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

.diet-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent), #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.diet-icon i { font-size: 1.5rem; color: var(--white); }

.diet-card h3 { color: var(--secondary); margin-bottom: 10px; }
.diet-card p { color: var(--text-light); margin-bottom: 15px; font-size: 0.9rem; }
.diet-card ul { padding-left: 20px; }
.diet-card li { color: var(--text-light); font-size: 0.9rem; margin-bottom: 5px; list-style: disc; }

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.tip-item {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
}
.tip-item i { font-size: 2rem; color: var(--accent); margin-bottom: 10px; }
.tip-item h4 { color: var(--secondary); margin-bottom: 8px; }
.tip-item p { color: var(--text-light); font-size: 0.85rem; }

/* ===== Products ===== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
    position: sticky;
    top: 145px;
    z-index: 99;
    background: #fff;
    padding: 15px 10px;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: var(--white);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.product-image {
    width: 100%;
    height: 250px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-image i { font-size: 4rem; color: var(--primary); opacity: 0.5; }

.product-info { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-info h3 { color: var(--secondary); margin-bottom: 5px; font-size: 1.1rem; }
.product-desc { color: var(--text-light); font-size: 0.85rem; margin-bottom: 10px; }
.product-size { color: var(--text-light); font-size: 0.8rem; margin-bottom: 10px; }
.product-price { font-size: 1.3rem; font-weight: 700; color: var(--primary); margin-bottom: 15px; }

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.qty-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: var(--white); }
.qty-value { font-size: 1.1rem; font-weight: 600; min-width: 30px; text-align: center; }

/* ===== Cart ===== */
.cart-container { min-height: 50vh; }

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}
.cart-empty i { font-size: 4rem; color: var(--text-light); opacity: 0.3; margin-bottom: 20px; }
.cart-empty h3 { color: var(--secondary); margin-bottom: 10px; }
.cart-empty p { color: var(--text-light); margin-bottom: 20px; }

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.cart-table th {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 15px;
    text-align: left;
    font-size: 0.9rem;
}
.cart-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}
.cart-table .qty-btn { width: 28px; height: 28px; font-size: 1rem; }

.remove-btn {
    background: #e74c3c;
    color: var(--white);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition);
}
.remove-btn:hover { background: #c0392b; }

.cart-summary {
    max-width: 400px;
    margin-left: auto;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
}
.summary-row.total {
    border-top: 2px solid var(--secondary);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* ===== Payment ===== */
.payment-container {
    max-width: 600px;
    margin: 0 auto;
}

.payment-summary {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 30px;
    text-align: center;
}
.payment-summary h3 { color: var(--secondary); margin-bottom: 15px; }
.payment-amount { font-size: 1.1rem; }
.payment-amount .amount { font-size: 1.8rem; font-weight: 700; color: var(--primary); display: block; margin-top: 5px; }

.payment-options h3 { color: var(--secondary); margin-bottom: 10px; }
.payment-instruction { color: var(--text-light); margin-bottom: 20px; font-size: 0.9rem; }

.upi-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.upi-option {
    padding: 20px 10px;
    border: 2px solid #eee;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}
.upi-option:hover, .upi-option.selected {
    border-color: var(--primary);
    background: rgba(255,107,53,0.05);
}
.upi-option i { font-size: 1.5rem; color: var(--primary); display: block; margin-bottom: 8px; }
.upi-option span { font-size: 0.8rem; font-weight: 500; }

.upi-input { margin-bottom: 20px; }
.upi-input input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}
.upi-input input:focus { border-color: var(--primary); outline: none; }

.qr-section { text-align: center; margin-bottom: 20px; }
.qr-placeholder {
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius);
    display: inline-block;
}
.qr-placeholder i { font-size: 5rem; color: var(--secondary); margin-bottom: 10px; }
.qr-upi { color: var(--text-light); font-size: 0.85rem; margin-top: 10px; }

/* ===== Order Confirmation ===== */
.confirmation-container {
    text-align: center;
    padding: 80px 20px;
}
.confirmation-icon i { font-size: 5rem; color: var(--accent); margin-bottom: 20px; }
.confirmation-container h2 { color: var(--secondary); margin-bottom: 15px; }
.confirmation-container p { color: var(--text-light); margin-bottom: 20px; }

.order-details {
    background: var(--light);
    padding: 20px 30px;
    border-radius: var(--radius);
    display: inline-block;
    text-align: left;
    margin-bottom: 30px;
}
.order-details p { margin-bottom: 8px; }

/* ===== Enquiry ===== */
.enquiry-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.enquiry-info h3 { color: var(--secondary); margin-bottom: 10px; font-size: 1.5rem; }
.enquiry-info > p { color: var(--text-light); margin-bottom: 25px; }
.enquiry-contact { display: flex; flex-direction: column; gap: 15px; }

.enquiry-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.error-msg { color: #e74c3c; font-size: 0.8rem; display: none; margin-top: 5px; }
.error-msg.show { display: block; }

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-section p,
.footer-section li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-section a:hover { color: var(--primary); }
.footer-section li i { margin-right: 8px; color: var(--primary); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 5px; }
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--primary); }

/* ===== Admin Panel ===== */
.admin-container { max-width: 100%; }

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}
.admin-header h2 { color: var(--secondary); }
.admin-header h2 i { color: var(--primary); margin-right: 10px; }

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.stat-card i { font-size: 2rem; color: var(--primary); margin-bottom: 10px; }
.stat-card h3 { font-size: 2rem; color: var(--secondary); }
.stat-card p { color: var(--text-light); font-size: 0.9rem; }

.admin-section {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    overflow: hidden;
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--light);
    border-bottom: 1px solid #eee;
}
.admin-section-header h3 { color: var(--secondary); font-size: 1.1rem; }
.admin-section-header h3 i { color: var(--primary); margin-right: 8px; }

.btn-sm { padding: 8px 18px; font-size: 0.8rem; }

.table-responsive { overflow-x: auto; padding: 15px; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.admin-table th {
    background: var(--secondary);
    color: var(--white);
    padding: 10px 12px;
    text-align: left;
    white-space: nowrap;
}
.admin-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}
.admin-table tr:hover td { background: rgba(255,107,53,0.03); }
.no-data { text-align: center; color: var(--text-light); padding: 20px !important; font-style: italic; }

/* ===== Auth Pages ===== */
.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.auth-title {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.auth-tab.active {
    background: var(--primary);
    color: var(--white);
}

.auth-form .form-group { margin-bottom: 20px; }

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.9rem;
}

.input-icon input,
.input-icon textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.input-icon input:focus,
.input-icon textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.textarea-icon i {
    top: 18px;
    transform: none;
}

.otp-timer {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.auth-footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.login-link {
    background: var(--accent) !important;
    color: var(--white) !important;
}

.user-welcome {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 0.9rem;
}

.logout-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.8rem;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: var(--secondary);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    z-index: 9999;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
}
.toast.show { 
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 105px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a { display: block; padding: 12px 20px; }

    .hero-content h1 { font-size: 2rem; }
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

    .enquiry-container { grid-template-columns: 1fr; }

    .cart-table { font-size: 0.8rem; }
    .cart-table th, .cart-table td { padding: 10px 8px; }

    .upi-options { grid-template-columns: repeat(3, 1fr); }

    .page-header h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.6rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .exercise-grid { grid-template-columns: 1fr; }
    .diet-categories { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .upi-options { grid-template-columns: repeat(2, 1fr); }

    .cart-table th:nth-child(2),
    .cart-table td:nth-child(2) { display: none; }
}


/* ===== Home Page Images Grid ===== */
.home-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 20px;
}

.home-image-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.home-image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.home-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.home-image-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 30px 20px 20px;
    color: var(--white);
}

.image-overlay h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .home-images-grid {
        grid-template-columns: 1fr;
    }
    .home-image-card img {
        height: 220px;
    }
}


/* ===== Discount Banner - Fixed Right Corner ===== */
.discount-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    z-index: 10000;
    animation: bounceIn 0.6s ease, pulse 2s infinite 1s;
    max-width: 280px;
}

.discount-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0.8;
    line-height: 1;
}

.discount-close:hover {
    opacity: 1;
}

.discount-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.discount-percent {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.discount-text {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

@keyframes bounceIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    50% { transform: scale(1.03); }
}

@media (max-width: 768px) {
    .discount-banner {
        bottom: 75px;
        right: 10px;
        max-width: 180px;
        padding: 8px 10px;
        z-index: 10000;
    }
    .discount-percent {
        font-size: 1rem;
    }
    .discount-text {
        font-size: 0.65rem;
    }
}   }
}


/* ===== Highlights Banner ===== */
.highlights-banner {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 30px;
    background-color: #1a5c2e;
    background: linear-gradient(135deg, #1a5c2e, #27ae60);
    color: #fff !important;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff !important;
    transition: var(--transition);
}

.highlight-item:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

.highlight-item i {
    font-size: 1.1rem;
    color: #ffd700;
}

.highlight-item span {
    color: #fff;
}

/* ===== Nutrition Benefits Grid ===== */
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.nutrition-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.nutrition-benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.nutrition-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.nutrition-benefit-item i {
    font-size: 2.2rem;
    color: var(--primary);
    background: rgba(255, 107, 53, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nutrition-benefit-item h4 {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .highlights-banner {
        padding: 15px;
        gap: 10px;
    }
    .highlight-item {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    .nutrition-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ===== Updated Payment Section ===== */
.qr-section {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius);
    margin: 20px 0;
    border: 2px dashed #ddd;
}

.qr-upi {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.payment-steps {
    background: #f0f8f0;
    padding: 15px 20px;
    border-radius: var(--radius);
    margin: 15px 0;
    border-left: 4px solid var(--accent);
}

.payment-steps ol {
    margin-left: 20px;
    margin-top: 8px;
}

.payment-steps li {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text);
}


/* ===== Guest Delivery Form ===== */
.delivery-form {
    background: #fff8f0;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 25px;
}

.delivery-form h3 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.delivery-form .form-group {
    margin-bottom: 15px;
}

.delivery-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--secondary);
}

.delivery-form input,
.delivery-form textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: var(--transition);
}

.delivery-form input:focus,
.delivery-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}


/* ===== Field Hint ===== */
.field-hint {
    display: block;
    font-size: 0.78rem;
    color: #888;
    margin-top: 4px;
    font-style: italic;
}


/* ===== Free Delivery Banner ===== */
.free-delivery-banner {
    padding: 8px 20px;
    font-size: 0.85rem;
    text-align: center;
    display: block;
    position: fixed;
    top: 105px;
    left: 0;
    right: 0;
    z-index: 999;
    border-radius: 0;
    margin-bottom: 0;
}

.free-delivery-banner.info {
    background: #1a237e;
    color: #fff;
    border: none;
    font-weight: 500;
}

.free-delivery-banner.info strong {
    color: #ffd700;
}

.free-delivery-banner.success {
    background: #1b5e20;
    color: #fff;
    border: none;
    font-weight: 500;
}

.free-delivery-banner i {
    margin-right: 8px;
}


/* ===== Banner Cart Button ===== */
.banner-cart-btn {
    display: inline-block;
    background: #fff;
    color: #1a237e;
    border: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 10px;
    transition: var(--transition);
}

.banner-cart-btn:hover {
    background: #ffd700;
    color: #000;
}

.free-delivery-banner.success .banner-cart-btn {
    color: #1b5e20;
}


/* ===== Top Contact Banner ===== */
.top-contact-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.top-contact-banner a {
    color: #ffd700;
    text-decoration: none;
}

.top-contact-banner a:hover {
    text-decoration: underline;
}

.top-contact-banner i {
    margin-right: 6px;
    color: #27ae60;
}

.top-contact-banner .banner-divider {
    display: none;
}


/* ===== Results Gallery ===== */
.results-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.result-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.result-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    background: var(--light);
}

@media (max-width: 768px) {
    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .result-card img {
        height: 180px;
    }
}
    }
}


/* ===== Thank You Overlay ===== */
.thankyou-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.thankyou-card {
    background: #fff;
    padding: 40px 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: scaleIn 0.4s ease;
    max-width: 400px;
}

.thankyou-card i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.thankyou-card h2 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.thankyou-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


/* ===== Language Tooltip ===== */
.lang-selector {
    position: relative;
}

.lang-tooltip {
    display: none;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1002;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.lang-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #333;
}

.lang-selector:hover .lang-tooltip {
    display: block;
    animation: fadeIn 0.3s ease;
}

.lang-tooltip.hidden {
    display: none !important;
}


/* ===== Logo Tooltip ===== */
.logo {
    position: relative;
}

.logo-tooltip {
    display: none;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    z-index: 1002;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.logo-tooltip::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #333;
}

.logo:hover .logo-tooltip {
    display: block;
    animation: fadeIn 0.3s ease;
}


/* ===== Mobile Fix - Banners & Header ===== */
@media (max-width: 768px) {
    .top-contact-banner {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        padding: 8px 10px;
        z-index: 1001;
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        box-sizing: border-box;
        overflow: visible;
    }

    .top-contact-banner .banner-text {
        flex: 1;
        margin-right: 6px;
        font-size: 0.6rem;
        line-height: 1.3;
        min-width: 0;
    }

    .top-contact-banner .banner-divider {
        display: block;
        width: 2px;
        height: 28px;
        background-color: rgba(255, 255, 255, 0.5);
        margin: 0 6px;
        flex-shrink: 0;
    }

    .top-contact-banner .banner-phone {
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.95rem;
        font-weight: 700;
        flex-shrink: 0;
        padding-right: 5px;
    }

    .top-contact-banner .banner-phone i {
        background: #27ae60;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 0.8rem;
    }
    
    .navbar {
        top: 40px !important;
    }
    
    .free-delivery-banner {
        top: 105px !important;
        font-size: 0.7rem;
        padding: 6px 10px;
        line-height: 1.3;
        white-space: normal;
        overflow: visible;
    }
    
    .page {
        padding-top: 0 !important;
    }
    
    .page-header {
        padding-top: 170px !important;
    }

    .hero {
        padding-top: 170px !important;
        padding-bottom: 30px !important;
        min-height: auto !important;
        background: url('hero-mobile-bg.jpg') center center / cover no-repeat !important;
        position: relative;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.6);
        z-index: 0;
    }

    .hero .hero-wrapper {
        position: relative;
        z-index: 1;
    }
    
    .filter-bar {
        top: 120px !important;
    }

    .nav-links {
        top: 92px !important;
    }
}


/* ===== Mobile Hero Welcome Row ===== */
@media (max-width: 768px) {
    .hero-welcome-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .hero-welcome-row .welcome-gif {
        width: 120px;
        height: auto;
        flex-shrink: 0;
        order: -1;
    }

    .hero-welcome-row h1 {
        text-align: left;
        font-size: 1.4rem;
        margin: 0;
    }

    .hero-cta-row {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
        margin-bottom: 15px;
        text-align: left;
    }

    .hero-cta-row .hero-text {
        background: none;
        color: #ffffff;
        padding: 0;
        border-radius: 0;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5;
        margin: 0;
        text-align: left;
        flex: 1;
    }

    .hero-cta-row .hero-text .text-orange {
        color: #F97316;
    }

    .hero-cta-row .hero-cta-img {
        display: block;
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
        border: 2px solid #F97316;
        flex-shrink: 0;
    }

    .hero-activities {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin: 15px 0;
        background: #0F172A;
        border-radius: 10px;
        padding: 15px 8px;
        border: 2px solid #F97316;
    }

    .hero-activities .activity-card {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
        position: relative;
        padding: 0 4px;
    }

    .hero-activities .activity-card:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: rgba(255, 255, 255, 0.3);
    }

    .hero-activities .activity-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 4px;
        border: none;
        border-radius: 0;
    }

    .hero-activities .activity-icon i {
        color: #D84315;
        font-size: 1.4rem;
    }

    .hero-activities .activity-card strong {
        color: #FFFFFF;
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 800;
    }

    .hero-activities .activity-card span {
        color: #CBD5E1;
        font-size: 0.55rem;
        line-height: 1.3;
        font-style: italic;
    }
}


/* ===== Mobile Logo & Hamburger Fix ===== */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        padding: 8px 10px !important;
        box-sizing: border-box;
    }

    .hamburger {
        display: flex !important;
        order: -1;
        margin-right: 8px;
    }

    .logo {
        order: 0;
        flex: 1;
        white-space: normal !important;
        font-size: 1.05rem !important;
        line-height: 1.2;
    }

    .logo i {
        display: none !important;
    }

    .lang-selector {
        order: 1;
        flex-shrink: 0;
        margin-right: 0;
        margin-left: 4px;
    }

    .lang-selector select {
        font-size: 9px;
        padding: 3px 16px 3px 5px;
    }
}


/* ===== Hide tooltips on mobile/touch ===== */
@media (max-width: 768px) {
    .lang-tooltip,
    .logo-tooltip {
        display: none !important;
    }
}


/* ===== WhatsApp Chat Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9998;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
        bottom: 20px;
        left: 20px;
    }
}


/* ===== Product Image Carousel ===== */
.product-image {
    position: relative;
}

.product-image .carousel-img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-image .carousel-img.active {
    display: block;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 1;
}

.product-image:hover .carousel-arrow {
    opacity: 1;
}

.carousel-prev {
    left: 5px;
}

.carousel-next {
    right: 5px;
}

.carousel-arrow:hover {
    background: var(--primary);
}


/* ===== Price + Quantity Same Row ===== */
.price-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    margin-top: auto;
}

.price-qty-row .product-price {
    margin: 0;
}


/* ===== Welcome GIF ===== */
.welcome-gif {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 10px;
    mix-blend-mode: screen;
}

@media (max-width: 768px) {
    .welcome-gif {
        width: 100px !important;
        mix-blend-mode: normal !important;
    }
}


/* ===== Mobile only image ===== */
.mobile-only-img {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-only-img {
        display: block !important;
    }
}


/* ===== Hide enquiry info on mobile ===== */
@media (max-width: 768px) {
    .enquiry-info {
        display: none;
    }
}


/* ===== Mobile Brand Color Scheme - Option 1 (Premium & Modern) ===== */
@media (max-width: 768px) {
    /* Header - White background */
    .navbar {
        background: #FFFFFF !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    /* Logo - SHIVAY in Navy, rest in Orange */
    .logo {
        color: #0F172A !important;
    }

    .logo i {
        color: #F97316 !important;
    }

    /* Hero Section - Dark Navy */
    .hero {
        background: #0F172A !important;
    }

    .hero::before {
        background: linear-gradient(to right, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0.4) 100%) !important;
    }

    /* Hero Text */
    .hero-content h1 {
        color: #FFFFFF;
    }

    .hero-content h1 .highlight {
        color: #F97316 !important;
    }

    .hero-content h1::after {
        background: #F97316 !important;
    }

    .hero-subtitle {
        color: #E5E7EB !important;
    }

    .hero-subtitle strong {
        color: #F97316;
    }

    .hero-text {
        color: #E5E7EB !important;
    }

    /* Programs icons */
    .hero-program-item i {
        color: #F97316 !important;
    }

    .hero-program-item strong {
        color: #FFFFFF;
    }

    .hero-program-item span {
        color: #E5E7EB;
    }

    /* CTA Button - Orange */
    .hero-buttons .btn-primary {
        background: #F97316 !important;
        border-color: #F97316 !important;
        color: #FFFFFF !important;
    }

    .hero-buttons .btn-primary:hover {
        background: #ea580c !important;
    }

    /* Top contact banner */
    .top-contact-banner {
        background: #0F172A !important;
    }

    .top-contact-banner a {
        color: #F97316 !important;
    }

    /* Free delivery banner */
    .free-delivery-banner.info {
        background: #1a237e !important;
    }

    .free-delivery-banner.success {
        background: #065f46 !important;
    }

    /* Page headers */
    .page-header {
        background: linear-gradient(135deg, #0F172A, #1e293b) !important;
    }
}


/* ===== Logo Split Colors ===== */
.logo-navy {
    color: #0F172A;
    font-weight: 900;
    font-size: 1.4em;
}

.logo-orange {
    color: #F97316;
    font-weight: 700;
    font-size: 0.7em;
}

/* Desktop - keep original orange for full logo */
@media (min-width: 769px) {
    .logo-navy {
        color: var(--primary);
        font-size: 1em;
    }
    .logo-orange {
        color: var(--primary);
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .logo {
        color: #0F172A !important;
        text-transform: uppercase;
        line-height: 1 !important;
        font-size: 1rem !important;
        align-items: center;
    }
    .logo-text {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .logo-navy {
        font-size: 2.5rem;
        color: #F97316 !important;
        font-weight: 900;
        letter-spacing: -1px;
    }
    .logo-orange {
        font-size: 0.9rem;
        color: #0F172A !important;
        font-weight: 700;
        line-height: 1.2;
    }
}


/* ===== Mobile Hero Background Image ===== */
@media (max-width: 768px) {
    .hero {
        background: #0F172A !important;
        position: relative;
        min-height: auto;
        overflow: hidden;
    }

    .hero::after {
        display: none;
    }

    .hero::before {
        display: none;
    }

    .hero-wrapper {
        position: relative;
        z-index: 1;
    }
}


/* ===== Hero Text Uppercase + Orange Highlight ===== */
.hero-text {
    text-transform: uppercase;
    font-weight: 700;
}

.text-orange {
    color: rgb(249, 115, 22);
}


/* ===== Nav Icons - Mobile Only ===== */
.nav-icon {
    display: inline-block;
    font-size: 0.75rem;
    margin-right: 4px;
}

@media (max-width: 768px) {
    .nav-icon {
        display: inline-block !important;
        font-size: 1rem;
        margin-right: 8px;
        color: var(--primary);
    }

    .nav-links a.active {
        background: var(--primary) !important;
        color: #fff !important;
    }

    .nav-links a.active .nav-icon {
        color: #fff !important;
    }
}


/* ===== Final Mobile Hero Fixes ===== */
@media (max-width: 768px) {
    .welcome-gif {
        margin-top: 10px;
        mix-blend-mode: screen !important;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content {
        text-align: center !important;
    }

    .hero-subtitle {
        text-align: left !important;
        max-width: 100%;
        position: relative;
        z-index: 2;
        font-size: 0.85rem !important;
        line-height: 1.5;
    }

    .hero-text {
        text-align: center !important;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }

    .hero-content h1 {
        text-align: center !important;
        width: 100%;
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row !important;
        align-items: center;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-buttons .btn-secondary {
        display: inline-block !important;
    }

    .hero-buttons .btn {
        width: auto !important;
        font-size: 0.8rem;
        padding: 10px 18px;
    }

    .hero::after {
        display: none;
    }

    .hero-image {
        width: 100%;
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .hero-image img {
        width: 48%;
        border-radius: 10px;
        height: auto;
        max-height: 200px;
        object-fit: cover;
    }

    .free-delivery-banner {
        white-space: normal !important;
        overflow: visible !important;
    }
}

/* ===== Logout Button Spacing ===== */
.login-link i,
#authLink i {
    margin-right: 5px;
}

/* ===== Desktop Page Header + Banner Overlap Fix ===== */
.page-header {
    padding-top: 160px;
}

/* ===== Desktop Delivery Banner - prevent cropping ===== */
.free-delivery-banner {
    overflow: visible;
    white-space: normal;
    line-height: 1.4;
}


/* ===== Admin Product Management ===== */
.product-form-container {
    padding: 25px;
    background: #f0f8ff;
    border-bottom: 2px solid #ddd;
}

.product-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.product-form-container .form-group {
    margin-bottom: 0;
}

.product-form-container .form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    display: block;
}

.product-form-container .form-group input,
.product-form-container .form-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
}

.product-form-container .form-group input:focus,
.product-form-container .form-group select:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,107,53,0.1);
}

.product-form-actions {
    display: flex;
    gap: 10px;
}

.product-form-actions .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
}

#productMgmtTable td {
    font-size: 0.8rem;
    vertical-align: middle;
}

#productMgmtTable .btn-sm {
    padding: 5px 10px;
    font-size: 0.7rem;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .product-form-grid {
        grid-template-columns: 1fr;
    }
    .product-form-actions {
        flex-direction: column;
    }
    .product-form-actions .btn {
        width: 100%;
    }
}


/* ===== Results Filter Pills ===== */
.results-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.results-filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: var(--white);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.results-filter-btn:hover,
.results-filter-btn.active {
    background: var(--primary);
    color: var(--white);
}


/* ===== Results Full Width Card ===== */
.result-full-width {
    grid-column: 1 / -1;
    text-align: center;
}

.result-full-width img {
    height: auto !important;
    max-height: 500px;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .result-full-width {
        grid-column: 1 / -1;
    }
}

@media (min-width: 769px) {
    .result-full-width {
        grid-column: span 2;
    }
}


/* ===== Bottom Navigation Bar ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9998;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .bottom-nav {
        display: flex;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.7rem;
    font-weight: 500;
    gap: 3px;
    padding: 5px 10px;
    transition: var(--transition);
}

.bottom-nav-item i {
    font-size: 1.3rem;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--primary);
}

.bottom-nav-item.active i {
    color: var(--primary);
}

/* Adjust other fixed bottom elements */
.whatsapp-btn {
    bottom: 25px;
}

.discount-banner {
    bottom: 20px;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 70px;
    }
    .discount-banner {
        bottom: 75px;
        right: 10px;
        max-width: 180px;
        padding: 8px 10px;
        z-index: 10000;
    }
    .discount-percent {
        font-size: 1rem;
    }
    .discount-text {
        font-size: 0.65rem;
    }
}

/* Add bottom padding to body so content not hidden behind bottom nav */
.footer {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .page {
        padding-bottom: 70px;
    }
}


/* ===== Product Toast (above Add to Cart) ===== */
.product-toast {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--secondary);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90%;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* ===== Field Toast (above input fields) ===== */
.field-toast {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: #e74c3c;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.field-toast::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #e74c3c;
}

.field-toast.show {
    opacity: 1;
}


/* ===== Cart Confirm Modal ===== */
.cart-confirm-modal {
    position: relative;
    background: rgba(0,0,0,0.5);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.cart-confirm-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 350px;
}

.cart-confirm-box p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 15px;
}

.cart-confirm-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.cart-confirm-actions .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
}


/* ===== Product Discount Badge ===== */
.product-discount {
    font-size: 0.75rem;
    color: #27ae60;
    font-weight: 600;
}

/* ===== Bulk Discount Bar ===== */
.bulk-discount-bar {
    padding: 15px 25px;
    background: #fff8f0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.bulk-discount-bar label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

.discount-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.discount-input-group input {
    width: 70px;
    padding: 6px 10px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
}

.discount-input-group span {
    font-weight: 600;
    color: var(--primary);
}


/* ===== MRP Strikethrough - Mobile Only ===== */
.product-mrp {
    display: block;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 2px;
}

.price-block {
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .product-mrp {
        display: block;
    }
}


/* ===== Out of Stock Product Styles ===== */
.product-card.out-of-stock .product-image {
    position: relative;
}

.product-card.out-of-stock .product-image img {
    filter: grayscale(100%);
    opacity: 0.5;
}

.product-card.out-of-stock .product-info {
    opacity: 0.7;
}

.product-card.out-of-stock .quantity-selector .qty-btn {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(231, 76, 60, 0.9);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 5;
    white-space: nowrap;
    letter-spacing: 1px;
}

.out-of-stock-badge i {
    margin-right: 5px;
}

.btn-disabled {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    pointer-events: none;
    box-shadow: none !important;
}

.btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}
