:root {
    --primary: #ff6b35;
    --primary-light: #f7931e;
    --primary-dark: #e55a2b;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #1a1a2e;
    --gray: #64748b;
    --light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-btn, .track-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-btn {
    background: var(--light);
}

.search-btn:hover {
    background: var(--primary);
    color: white;
}

.track-btn {
    background: var(--success);
    color: white;
}

.track-btn:hover {
    background: #059669;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
    display: flex;
    gap: 10px;
}

.search-container input {
    flex: 1;
    padding: 20px 25px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    outline: none;
}

.search-container button {
    width: 50px;
    height: 50px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

/* Sales Popup */
.sales-popup {
    position: fixed;
    bottom: 120px;
    right: -400px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 12px;
    width: auto;
    min-width: 260px;
    max-width: 320px;
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e2e8f0;
}
.sales-popup.show {
    right: 30px;
}
.sales-popup-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,107,53,0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.sales-popup-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 4px;
}
.sales-popup-content strong {
    color: #1e293b;
    font-size: 15px;
}
.sales-popup-content h4 {
    font-size: 16px;
    color: var(--primary);
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}
.sales-popup-content small {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}
.sales-popup-content small::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
}

@media (max-width: 768px) {
    .sales-popup {
        bottom: 90px;
        min-width: 240px;
        max-width: 85%;
        padding: 8px 10px;
        gap: 8px;
    }
    .sales-popup.show {
        right: 20px;
    }
}
/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.mobile-menu-header button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--light);
    font-weight: 500;
}

/* Hero Section */
.hero {
    position: relative;
    height: 450px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 600px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Categories Section */
.categories {
    padding: 60px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--gray);
    font-size: 16px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-count {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: var(--light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    background: var(--danger);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge.best-badge {
    left: auto;
    right: 10px;
    background: linear-gradient(135deg, #ff6b35, #eab308);
    color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.product-action-btn:hover {
    background: var(--primary);
    color: white;
}

.product-info {
    padding: 15px;
}

.product-category {
    font-size: 11px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255,107,53,0.1);
    border-radius: 3px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
    height: 44px;
    overflow: hidden;
}

.product-name a {
    color: var(--dark);
}

.product-name a:hover {
    color: var(--primary);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.price-old {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
}

.product-stock {
    font-size: 12px;
    color: var(--success);
    margin-top: 8px;
}

.product-stock.low {
    color: var(--danger);
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    margin-top: 12px;
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.add-to-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

.feature-card i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-section h3 i {
    color: var(--primary);
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #94a3b8;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-section ul li {
    margin-bottom: 10px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a {
    color: #94a3b8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #94a3b8;
    font-size: 14px;
}

/* Order Form Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    box-shadow: var(--shadow);
}

.modal-body {
    padding: 30px;
}

.order-form-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light);
}

.order-form-header i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 10px;
}

.order-form-header h2 {
    font-size: 24px;
    color: var(--dark);
}

.order-product-info {
    background: var(--light);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.order-product-info img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.order-product-info h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.order-product-info .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.order-form .form-group {
    margin-bottom: 15px;
}

.order-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
    font-size: 14px;
}

.order-form .form-group label i {
    margin-right: 8px;
    color: var(--primary);
}

.order-form .form-group input,
.order-form .form-group select,
.order-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
}

.order-form .form-group input:focus,
.order-form .form-group select:focus,
.order-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.order-summary {
    background: var(--light);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 14px;
}

.order-summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

.order-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.order-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Success Modal */
.success-content {
    padding: 40px 20px;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon i {
    font-size: 45px;
    color: white;
}

.success-content h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 15px;
}

.success-content p {
    color: var(--gray);
    margin-bottom: 10px;
    font-size: 15px;
}

.order-id-box {
    background: var(--light);
    padding: 15px 25px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 600;
}

.order-id-box span {
    color: var(--primary);
    font-size: 18px;
}

/* Product Detail Modal */
.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-images img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 15px;
}

.modal-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.modal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.modal-price span {
    font-size: 18px;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 15px;
}

.modal-desc {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.modal-features {
    margin-bottom: 25px;
}

.modal-features h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.modal-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.modal-add-cart {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-add-cart:hover {
    background: var(--primary-dark);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--success);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: transform 0.3s ease;
    z-index: 5000;
    box-shadow: var(--shadow-lg);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast i {
    font-size: 18px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37,211,102,0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-content h1 {
        font-size: 28px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .modal-product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }
    .hero-content h1 {
        font-size: 22px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ADMIN PANEL STYLES */
.admin-body { background: #f0f2f5; font-family: Hind Siliguri, sans-serif; }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); padding: 20px; }
.login-box { background: white; padding: 40px; border-radius: 20px; width: 100%; max-width: 450px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.login-header { text-align: center; margin-bottom: 30px; }
.login-header i { font-size: 50px; color: var(--primary); margin-bottom: 15px; }
.login-btn { width: 100%; padding: 16px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border: none; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.login-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,53,0.4); }
.login-footer { text-align: center; margin-top: 20px; }
.login-footer a { color: var(--primary); font-weight: 500; text-decoration: none; }
.admin-dashboard { display: none; min-height: 100vh; }
.admin-dashboard.active { display: block; }
.admin-topbar { background: white; padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.admin-brand { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; color: var(--primary); }
.admin-actions { display: flex; gap: 15px; }
.view-site-btn { padding: 10px 20px; background: #f8f9fa; color: #1a1a2e; border-radius: 8px; font-weight: 500; transition: all 0.3s; text-decoration: none; }
.view-site-btn:hover { background: var(--primary); color: white; }
.admin-actions button { padding: 10px 20px; background: #ef4444; color: white; border: none; border-radius: 8px; cursor: pointer; font-weight: 500; transition: all 0.3s; }
.admin-actions button:hover { background: #dc2626; }
.admin-container { display: flex; }
.admin-sidebar { width: 260px; background: white; min-height: calc(100vh - 70px); padding: 20px 0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.admin-nav { display: flex; flex-direction: column; }
.admin-nav-item { padding: 15px 25px; display: flex; align-items: center; gap: 12px; color: #64748b; font-weight: 500; transition: all 0.3s; border-left: 4px solid transparent; text-decoration: none; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,107,53,0.1); color: var(--primary); border-left-color: var(--primary); }
.admin-nav-item i { width: 20px; }
.order-badge { background: #ef4444; color: white; padding: 2px 8px; border-radius: 20px; font-size: 12px; margin-left: auto; }
.admin-main { flex: 1; padding: 30px; overflow-y: auto; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: white; padding: 25px; border-radius: 15px; display: flex; align-items: center; gap: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.stat-card i { font-size: 40px; color: var(--primary); width: 60px; height: 60px; background: rgba(255,107,53,0.1); border-radius: 15px; display: flex; align-items: center; justify-content: center; }
.stat-info h3 { font-size: 32px; margin-bottom: 5px; }
.stat-info p { color: #64748b; font-size: 14px; }
.filter-bar { display: flex; gap: 15px; margin-bottom: 25px; flex-wrap: wrap; }
.filter-bar select, .filter-bar input { padding: 12px 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 14px; background: white; }
.filter-bar input { flex: 1; min-width: 200px; }
.admin-products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.admin-product-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.08); transition: all 0.3s; }
.admin-product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.admin-product-img { height: 180px; background: #f8f9fa; position: relative; }
.admin-product-img img { width: 100%; height: 100%; object-fit: cover; }
.admin-product-status { position: absolute; top: 10px; right: 10px; padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.admin-product-status.active { background: #10b981; color: white; }
.admin-product-status.inactive { background: #64748b; color: white; }
.admin-product-info { padding: 20px; }
.admin-product-info h4 { font-size: 16px; margin-bottom: 8px; }
.admin-product-cat { font-size: 13px; color: var(--primary); margin-bottom: 8px; }
.admin-product-price { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 15px; }
.admin-product-actions { display: flex; gap: 10px; }
.admin-product-actions button { flex: 1; padding: 10px; border: none; border-radius: 8px; cursor: pointer; font-weight: 500; display: flex; align-items: center; justify-content: center; gap: 5px; transition: all 0.3s; font-size: 13px; }
.btn-edit { background: rgba(255,107,53,0.1); color: var(--primary); }
.btn-edit:hover { background: var(--primary); color: white; }
.btn-toggle { background: rgba(16,185,129,0.1); color: #10b981; }
.btn-toggle:hover { background: #10b981; color: white; }
.btn-toggle.hide { background: rgba(100,116,139,0.1); color: #64748b; }
.btn-toggle.hide:hover { background: #64748b; color: white; }
.btn-delete { background: rgba(239,68,68,0.1); color: #ef4444; }
.btn-delete:hover { background: #ef4444; color: white; }
.add-product-form { background: white; padding: 30px; border-radius: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.form-actions { display: flex; gap: 15px; justify-content: flex-end; margin-top: 30px; padding-top: 20px; border-top: 1px solid #f8f9fa; }
.btn-primary { padding: 14px 30px; background: var(--primary); color: white; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #e55a2b; transform: translateY(-2px); }
.btn-secondary { padding: 14px 30px; background: #f8f9fa; color: #1a1a2e; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.btn-secondary:hover { background: #e2e8f0; }
.btn-danger { padding: 14px 30px; background: #ef4444; color: white; border: none; border-radius: 10px; font-weight: 600; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
.btn-danger:hover { background: #dc2626; }
.switch { position: relative; display: inline-block; width: 50px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 34px; }
.slider:before { position: absolute; content: ""; height: 20px; width: 20px; left: 3px; bottom: 3px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: #10b981; }
input:checked + .slider:before { transform: translateX(24px); }
#statusLabel, #editStatusLabel { margin-left: 15px; font-weight: 500; }
.image-upload-box { border: 2px dashed #e2e8f0; border-radius: 12px; padding: 20px; background: #f8fafc; }
.image-preview { width: 100%; height: 150px; border: 2px dashed #cbd5e1; border-radius: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 15px; background: white; transition: all 0.3s; }
.image-preview i { font-size: 40px; color: #cbd5e1; margin-bottom: 10px; }
.image-preview p { color: #94a3b8; font-size: 14px; }
.upload-btn { width: 100%; padding: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border: none; border-radius: 10px; cursor: pointer; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s; }
.upload-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(255,107,53,0.4); }
.image-upload-box input[type=url] { width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 15px; margin-bottom: 10px; }
.image-upload-box input[type=url]:focus { outline: none; border-color: var(--primary); }
.orders-list { display: flex; flex-direction: column; gap: 20px; }
.order-card { background: white; border-radius: 15px; padding: 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.order-id { font-weight: 700; color: var(--primary); margin-right: 15px; }
.order-date { color: #999; font-size: 13px; }
.order-status { padding: 5px 15px; border-radius: 20px; font-size: 12px; font-weight: 600; color: white; }
.order-body { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }
.order-product { display: flex; gap: 15px; align-items: center; }
.order-product img { width: 60px; height: 60px; border-radius: 8px; object-fit: cover; }
.order-product h4 { font-size: 14px; margin-bottom: 5px; }
.order-product p { color: var(--primary); font-weight: 600; }
.order-customer h4 { margin-bottom: 10px; color: #1a1a2e; }
.order-customer p { margin-bottom: 5px; font-size: 14px; color: #666; }
.order-total { grid-column: 1 / -1; text-align: right; font-size: 20px; font-weight: 700; color: var(--primary); }
.order-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.order-actions button { padding: 10px 20px; border: none; border-radius: 8px; cursor: pointer; font-weight: 500; display: flex; align-items: center; gap: 8px; transition: all 0.3s; font-size: 13px; }
.btn-processing { background: #8b5cf6; color: white; }
.btn-shipped { background: #06b6d4; color: white; }
.btn-whatsapp { background: #25D366; color: white; padding: 10px 20px; border-radius: 8px; text-decoration: none; display: flex; align-items: center; gap: 8px; font-weight: 500; }
.no-orders { text-align: center; padding: 60px 20px; color: #64748b; }
.no-orders i { font-size: 60px; margin-bottom: 15px; color: #e2e8f0; }
.settings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.settings-card { background: white; padding: 25px; border-radius: 15px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.settings-card h3 { font-size: 18px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.settings-card h3 i { color: var(--primary); }
.settings-card p { margin-bottom: 10px; color: #64748b; font-size: 14px; }
.settings-card p strong { color: #1a1a2e; }
.settings-card code { background: #f8f9fa; padding: 5px 10px; border-radius: 5px; font-size: 13px; }
.data-actions { display: flex; flex-direction: column; gap: 10px; }
.data-actions button { width: 100%; justify-content: center; }
.admin-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; }
.admin-modal.active { display: flex; }
.admin-modal-content { background: white; border-radius: 15px; width: 100%; max-width: 700px; max-height: 90vh; overflow-y: auto; }
.admin-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 25px; border-bottom: 1px solid #f8f9fa; }
.admin-modal-header h3 { display: flex; align-items: center; gap: 10px; }
.admin-modal-header button { background: none; border: none; font-size: 20px; cursor: pointer; }
.admin-modal-body { padding: 25px; }
.admin-toast { position: fixed; bottom: 30px; right: 30px; background: #10b981; color: white; padding: 15px 25px; border-radius: 10px; display: flex; align-items: center; gap: 10px; font-weight: 500; box-shadow: 0 10px 40px rgba(0,0,0,0.2); z-index: 5000; transform: translateX(200%); transition: transform 0.3s; }
.admin-toast.show { transform: translateX(0); }
.recent-orders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.recent-order-card { background: white; padding: 15px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.recent-order-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.recent-order-card .order-id { font-weight: 700; color: var(--primary); font-size: 13px; }
.recent-order-card .order-status { padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; color: white; }
.recent-customer { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
.recent-phone { color: #64748b; font-size: 13px; }
.recent-total { color: var(--primary); font-weight: 700; margin-top: 8px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: #1a1a2e; font-size: 14px; }
.form-group label i { margin-right: 8px; color: var(--primary); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 15px; transition: all 0.3s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.password-input { position: relative; }
.password-input input { padding-right: 50px; }
.password-input button { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: #64748b; }
.form-group.full-width { grid-column: span 1; }
@media (max-width: 1024px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .admin-products-grid { grid-template-columns: repeat(2, 1fr); } .settings-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .admin-sidebar { width: 80px; } .admin-nav-item span { display: none; } .order-body { grid-template-columns: 1fr; } .admin-products-grid { grid-template-columns: 1fr; } }

/* ========== Admin Table (Payment Settings etc.) ========== */
.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.admin-table thead {
    background: #f8fafc;
}
.admin-table th {
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    color: #475569;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
}
.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
    color: #334155;
}
.admin-table tbody tr:hover {
    background: #f8fafc;
}
.admin-table tbody tr:last-child td {
    border-bottom: none;
}
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: #f1f5f9;
    color: #64748b;
}
.status-badge.active {
    background: #dcfce7;
    color: #16a34a;
}
.action-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
    margin-right: 4px;
}
.action-btn.edit-btn {
    background: #e0f2fe;
    color: #0284c7;
}
.action-btn.edit-btn:hover {
    background: #bae6fd;
}
.action-btn.delete-btn {
    background: #fee2e2;
    color: #dc2626;
}
.action-btn.delete-btn:hover {
    background: #fecaca;
}

/* ========== Admin Product Cards ========== */
.admin-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}
.admin-product-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}
.admin-product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.admin-product-card .admin-product-info {
    padding: 14px;
}
.admin-product-card .admin-product-info h4 {
    font-size: 15px;
    color: #1e293b;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.admin-product-card .admin-product-info .admin-product-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    margin: 4px 0;
}
.admin-product-card .admin-product-info .admin-product-cat {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}
.admin-product-card .admin-product-actions {
    display: flex;
    gap: 6px;
    padding: 10px 14px;
    border-top: 1px solid #f1f5f9;
    background: #fafafa;
}
.admin-product-card .admin-product-actions button {
    flex: 1;
    padding: 8px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}


/* Best Sellers */
.best-sellers {
    padding: 60px 0;
    background: white;
}
.best-sellers .section-header {
    text-align: center;
    margin-bottom: 30px;
}
.best-sellers .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
}
.best-sellers .section-header h2 i {
    color: var(--primary);
    margin-right: 10px;
}
.best-products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-snap-type: x mandatory;
}
.best-product-card {
    min-width: 280px;
    scroll-snap-align: start;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    cursor: pointer;
}
.best-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
.best-product-img {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
}
.best-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.best-product-card:hover .best-product-img img {
    transform: scale(1.05);
}
.best-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.best-product-info {
    padding: 15px;
}
.best-product-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}
.best-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}
.best-price span {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}
.best-add-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.best-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255,107,53,0.4);
}

/* All Products Section */
.all-products {
    padding: 60px 0;
    background: #f8f9fa;
}
.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
}
.filter-chip {
    padding: 10px 24px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-family: 'Hind Siliguri', sans-serif;
    font-size: 14px;
}
.filter-chip:hover, .filter-chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Social Header Button */
.social-header-btn {
    width: 45px;
    height: 45px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}
.social-header-btn:hover {
    transform: scale(1.1);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.product-modal.active {
    display: flex;
}
.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.modal-body {
    padding: 30px;
}
.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.modal-images img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
}
.modal-info h2 {
    font-size: 24px;
    margin-bottom: 15px;
}
.modal-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}
.modal-price span {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}
.modal-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}
.modal-features {
    margin-bottom: 25px;
}
.modal-features h4 {
    margin-bottom: 10px;
    font-size: 16px;
}
.modal-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}
.modal-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}
.modal-add-cart {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.modal-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.4);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #10b981;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: transform 0.3s;
    z-index: 5000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.toast.show {
    transform: translateX(-50%) translateY(0);
}
.toast i {
    font-size: 18px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 40px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* ADMIN CALL BUTTON */
.btn-call {
    padding: 10px 20px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
    text-decoration: none;
}
.btn-call:hover {
    background: #128C7E;
    transform: translateY(-2px);
}
.btn-copy {
    background: #3b82f6;
    color: white;
}
.btn-copy:hover {
    background: #2563eb;
}
.sold-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Order Success Animation */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s;
    font-size: 11px;
    min-width: 0;
}

/* Order Success Animation */
.order-success {
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-content h1 { font-size: 28px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; }
    .modal-product-grid { grid-template-columns: 1fr; }
    .filter-chips { overflow: visible; flex-wrap: wrap; padding-bottom: 10px; justify-content: center; }
    .filter-chip { white-space: normal; }
}
@media (max-width: 480px) {
    .hero { height: 350px; }
    .hero-content h1 { font-size: 22px; }
    .products-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: 1fr; }
}

/* --- Additional Styles Added by Claude --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

.mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1999; display: none; }
.mobile-menu-overlay.active { display: block; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }
::selection { background: var(--primary); color: white; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
/ *   A n i m a t i o n s   &   U I   E n h a n c e m e n t s   * / 
 @ k e y f r a m e s   s l i d e U p F a d e   { 
         f r o m   {   o p a c i t y :   0 ;   t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ;   } 
         t o   {   o p a c i t y :   1 ;   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 } 
 
 @ k e y f r a m e s   s u c c e s s P o p   { 
         0 %   {   t r a n s f o r m :   s c a l e ( 0 . 8 ) ;   o p a c i t y :   0 ;   } 
         5 0 %   {   t r a n s f o r m :   s c a l e ( 1 . 1 ) ;   } 
         1 0 0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   o p a c i t y :   1 ;   } 
 } 
 
 @ k e y f r a m e s   c h e c k B o u n c e   { 
         0 %   {   t r a n s f o r m :   s c a l e ( 0 ) ;   } 
         5 0 %   {   t r a n s f o r m :   s c a l e ( 1 . 5 ) ;   } 
         1 0 0 %   {   t r a n s f o r m :   s c a l e ( 1 ) ;   } 
 } 
 
 . o r d e r - f o r m   { 
         a n i m a t i o n :   s l i d e U p F a d e   0 . 4 s   e a s e - o u t ; 
 } 
 
 . s u c c e s s - a n i m a t i o n - c o n t a i n e r   { 
         a n i m a t i o n :   s u c c e s s P o p   0 . 5 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 )   f o r w a r d s ; 
 } 
 
 . c h e c k - b o u n c e   { 
         a n i m a t i o n :   c h e c k B o u n c e   0 . 6 s   c u b i c - b e z i e r ( 0 . 1 7 5 ,   0 . 8 8 5 ,   0 . 3 2 ,   1 . 2 7 5 )   0 . 2 s   b o t h ; 
 } 
 
 / *   H o v e r   m i c r o - i n t e r a c t i o n s   * / 
 . p r o d u c t - c a r d ,   . b e s t - p r o d u c t - c a r d   { 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ; 
 } 
 
 . p r o d u c t - c a r d : h o v e r ,   . b e s t - p r o d u c t - c a r d : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
         b o x - s h a d o w :   v a r ( - - s h a d o w - l g ) ; 
 } 
 
 . b t n - p r i m a r y ,   . a d d - t o - c a r t ,   . b e s t - a d d - b t n ,   . h e r o - b t n   { 
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ,   b o x - s h a d o w   0 . 3 s   e a s e ,   b a c k g r o u n d   0 . 3 s   e a s e ; 
 } 
 
 . b t n - p r i m a r y : h o v e r ,   . a d d - t o - c a r t : h o v e r ,   . b e s t - a d d - b t n : h o v e r ,   . h e r o - b t n : h o v e r   { 
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 2 ) ; 
 } 
 
 
 / *   P r e m i u m   O r d e r   T r a c k i n g   T i m e l i n e   S t y l e s   * / 
 . t i m e l i n e   { 
         p o s i t i o n :   r e l a t i v e ; 
         p a d d i n g :   2 0 p x   0 ; 
         m a r g i n - b o t t o m :   3 0 p x ; 
 } 
 . t i m e l i n e : : b e f o r e   { 
         c o n t e n t :   ' ' ; 
         p o s i t i o n :   a b s o l u t e ; 
         t o p :   0 ; 
         l e f t :   2 0 p x ; 
         h e i g h t :   1 0 0 % ; 
         w i d t h :   2 p x ; 
         b a c k g r o u n d :   # e 0 e 0 e 0 ; 
 } 
 . t i m e l i n e - i t e m   { 
         p o s i t i o n :   r e l a t i v e ; 
         p a d d i n g - l e f t :   5 0 p x ; 
         m a r g i n - b o t t o m :   2 5 p x ; 
         o p a c i t y :   0 . 5 ; 
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ; 
 } 
 . t i m e l i n e - i t e m : l a s t - c h i l d   { 
         m a r g i n - b o t t o m :   0 ; 
 } 
 . t i m e l i n e - i t e m . c o m p l e t e d   { 
         o p a c i t y :   1 ; 
 } 
 . t i m e l i n e - i t e m . c u r r e n t   { 
         o p a c i t y :   1 ; 
 } 
 . t i m e l i n e - d o t   { 
         p o s i t i o n :   a b s o l u t e ; 
         l e f t :   1 0 p x ; 
         t o p :   0 ; 
         w i d t h :   2 2 p x ; 
         h e i g h t :   2 2 p x ; 
         b o r d e r - r a d i u s :   5 0 % ; 
         b a c k g r o u n d :   # e 0 e 0 e 0 ; 
         c o l o r :   w h i t e ; 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         f o n t - s i z e :   1 0 p x ; 
         z - i n d e x :   1 ; 
 } 
 . t i m e l i n e - i t e m . c o m p l e t e d   . t i m e l i n e - d o t   { 
         b a c k g r o u n d :   # 1 0 b 9 8 1 ; 
 } 
 . t i m e l i n e - i t e m . c u r r e n t   . t i m e l i n e - d o t   { 
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ; 
         b o x - s h a d o w :   0   0   0   4 p x   v a r ( - - p r i m a r y - l i g h t ) ; 
         a n i m a t i o n :   s u c c e s s P o p   1 s   i n f i n i t e   a l t e r n a t e ; 
 } 
 . t i m e l i n e - c o n t e n t   h 4   { 
         m a r g i n :   0   0   5 p x ; 
         f o n t - s i z e :   1 5 p x ; 
         c o l o r :   v a r ( - - d a r k ) ; 
 } 
 . t i m e l i n e - c o n t e n t   p   { 
         m a r g i n :   0 ; 
         f o n t - s i z e :   1 2 p x ; 
         c o l o r :   v a r ( - - p r i m a r y ) ; 
         f o n t - w e i g h t :   5 0 0 ; 
 } 
 
 
 
 / *   P r e m i u m   T r a c k i n g   P a g e   S t y l e s   * / 
 . t r a c k i n g - b o d y   {   b a c k g r o u n d :   # f 4 f 7 f 6 ;   m i n - h e i g h t :   1 0 0 v h ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   } 
 . t r a c k i n g - h e a d e r   {   b a c k g r o u n d :   v a r ( - - w h i t e ) ;   p a d d i n g :   1 5 p x   0 ;   b o x - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 5 ) ;   } 
 . t r a c k i n g - s e c t i o n   {   f l e x :   1 ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   p a d d i n g :   4 0 p x   2 0 p x ;   } 
 . a u t h - c a r d   {   b a c k g r o u n d :   v a r ( - - w h i t e ) ;   m a x - w i d t h :   5 0 0 p x ;   w i d t h :   1 0 0 % ;   m a r g i n :   0   a u t o ;   b o r d e r - r a d i u s :   2 0 p x ;   p a d d i n g :   4 0 p x ;   b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 , 0 , 0 , 0 . 0 8 ) ;   p o s i t i o n :   r e l a t i v e ;   o v e r f l o w :   h i d d e n ;   } 
 . a u t h - c a r d : : b e f o r e   {   c o n t e n t :   ' ' ;   p o s i t i o n :   a b s o l u t e ;   t o p :   0 ;   l e f t :   0 ;   w i d t h :   1 0 0 % ;   h e i g h t :   6 p x ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   v a r ( - - p r i m a r y ) ,   v a r ( - - p r i m a r y - l i g h t ) ) ;   } 
 . a u t h - h e a d e r   {   t e x t - a l i g n :   c e n t e r ;   m a r g i n - b o t t o m :   3 0 p x ;   } 
 . a u t h - i c o n   {   w i d t h :   7 0 p x ;   h e i g h t :   7 0 p x ;   b a c k g r o u n d :   # f f f 0 e b ;   c o l o r :   v a r ( - - p r i m a r y ) ;   b o r d e r - r a d i u s :   5 0 % ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - s i z e :   3 0 p x ;   m a r g i n :   0   a u t o   1 5 p x ;   b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 2 5 5 , 1 0 7 , 5 3 , 0 . 2 ) ;   } 
 . a u t h - h e a d e r   h 2   {   f o n t - s i z e :   2 6 p x ;   c o l o r :   v a r ( - - d a r k ) ;   m a r g i n - b o t t o m :   5 p x ;   } 
 . a u t h - h e a d e r   p   {   c o l o r :   v a r ( - - g r a y ) ;   } 
 . a u t h - f o r m   . i n p u t - g r o u p   {   p o s i t i o n :   r e l a t i v e ;   m a r g i n - b o t t o m :   2 0 p x ;   } 
 . a u t h - f o r m   . i n p u t - g r o u p   i   {   p o s i t i o n :   a b s o l u t e ;   l e f t :   2 0 p x ;   t o p :   5 0 % ;   t r a n s f o r m :   t r a n s l a t e Y ( - 5 0 % ) ;   c o l o r :   v a r ( - - g r a y ) ;   f o n t - s i z e :   1 8 p x ;   } 
 . a u t h - f o r m   . i n p u t - g r o u p   i n p u t   {   w i d t h :   1 0 0 % ;   p a d d i n g :   1 6 p x   2 0 p x   1 6 p x   5 0 p x ;   b o r d e r :   2 p x   s o l i d   # e 2 e 8 f 0 ;   b o r d e r - r a d i u s :   1 2 p x ;   f o n t - s i z e :   1 6 p x ;   t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;   b a c k g r o u n d :   # f 8 f 9 f a ;   } 
 . a u t h - f o r m   . i n p u t - g r o u p   i n p u t : f o c u s   {   b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;   b a c k g r o u n d :   v a r ( - - w h i t e ) ;   o u t l i n e :   n o n e ;   b o x - s h a d o w :   0   0   0   4 p x   r g b a ( 2 5 5 , 1 0 7 , 5 3 , 0 . 1 ) ;   } 
 . a u t h - s u b m i t - b t n   {   w i d t h :   1 0 0 % ;   p a d d i n g :   1 6 p x ;   b o r d e r :   n o n e ;   b o r d e r - r a d i u s :   1 2 p x ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y ) ,   v a r ( - - p r i m a r y - l i g h t ) ) ;   c o l o r :   v a r ( - - w h i t e ) ;   f o n t - s i z e :   1 6 p x ;   f o n t - w e i g h t :   6 0 0 ;   c u r s o r :   p o i n t e r ;   t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;   b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 2 5 5 , 1 0 7 , 5 3 , 0 . 3 ) ;   } 
 . a u t h - s u b m i t - b t n : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 2 5 5 , 1 0 7 , 5 3 , 0 . 4 ) ;   } 
 . q u i c k - t r a c k - b o x   {   m a r g i n - t o p :   2 5 p x ;   b a c k g r o u n d :   # f 8 f 9 f a ;   p a d d i n g :   2 0 p x ;   b o r d e r - r a d i u s :   1 2 p x ;   b o r d e r :   1 p x   d a s h e d   # c b d 5 e 1 ;   } 
 . q u i c k - t r a c k - b o x   h 4   {   c o l o r :   v a r ( - - d a r k ) ;   f o n t - s i z e :   1 5 p x ;   m a r g i n - b o t t o m :   8 p x ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   8 p x ;   } 
 . q u i c k - t r a c k - b o x   h 4   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . q u i c k - t r a c k - b o x   p   {   f o n t - s i z e :   1 3 p x ;   c o l o r :   v a r ( - - g r a y ) ;   m a r g i n :   0 ;   l i n e - h e i g h t :   1 . 6 ;   } 
 . s h o p - n o w - b t n   {   c o l o r :   v a r ( - - p r i m a r y ) ;   f o n t - w e i g h t :   6 0 0 ;   f o n t - s i z e :   1 5 p x ;   t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;   } 
 . s h o p - n o w - b t n : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y - l i g h t ) ;   } 
 . d e t a i l - c a r d   {   m a x - w i d t h :   6 0 0 p x ;   } 
 . b a c k - b t n   {   b a c k g r o u n d :   n o n e ;   b o r d e r :   n o n e ;   c o l o r :   v a r ( - - g r a y ) ;   f o n t - s i z e :   1 5 p x ;   c u r s o r :   p o i n t e r ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   8 p x ;   m a r g i n - b o t t o m :   2 0 p x ;   t r a n s i t i o n :   v a r ( - - t r a n s i t i o n ) ;   } 
 . b a c k - b t n : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . d e t a i l - h e a d e r   {   t e x t - a l i g n :   c e n t e r ;   m a r g i n - b o t t o m :   3 0 p x ;   p a d d i n g - b o t t o m :   2 0 p x ;   b o r d e r - b o t t o m :   1 p x   s o l i d   # f 0 f 0 f 0 ;   } 
 . d e t a i l - i c o n   {   w i d t h :   6 0 p x ;   h e i g h t :   6 0 p x ;   b a c k g r o u n d :   # e e f 2 f f ;   c o l o r :   # 4 f 4 6 e 5 ;   b o r d e r - r a d i u s :   5 0 % ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - s i z e :   2 6 p x ;   m a r g i n :   0   a u t o   1 5 p x ;   } 
 . d e t a i l - h e a d e r   h 2   {   f o n t - s i z e :   2 4 p x ;   c o l o r :   v a r ( - - d a r k ) ;   m a r g i n - b o t t o m :   5 p x ;   } 
 . d e t a i l - h e a d e r   p   {   f o n t - w e i g h t :   7 0 0 ;   c o l o r :   v a r ( - - p r i m a r y ) ;   f o n t - s i z e :   1 8 p x ;   } 
 . d e t a i l - c o n t e n t   {   b a c k g r o u n d :   # f 8 f 9 f a ;   b o r d e r - r a d i u s :   1 2 p x ;   p a d d i n g :   2 0 p x ;   } 
 . d e t a i l - s e c t i o n   {   m a r g i n - b o t t o m :   2 0 p x ;   p a d d i n g - b o t t o m :   1 5 p x ;   b o r d e r - b o t t o m :   1 p x   d a s h e d   # c b d 5 e 1 ;   } 
 . d e t a i l - s e c t i o n : l a s t - c h i l d   {   b o r d e r - b o t t o m :   n o n e ;   m a r g i n - b o t t o m :   0 ;   p a d d i n g - b o t t o m :   0 ;   } 
 . d e t a i l - s e c t i o n   h 3   {   f o n t - s i z e :   1 6 p x ;   c o l o r :   v a r ( - - d a r k ) ;   m a r g i n - b o t t o m :   1 2 p x ;   } 
 . p r o d u c t - d e t a i l   {   d i s p l a y :   f l e x ;   g a p :   1 5 p x ;   a l i g n - i t e m s :   c e n t e r ;   } 
 . p r o d u c t - d e t a i l   i m g   {   w i d t h :   6 0 p x ;   h e i g h t :   6 0 p x ;   b o r d e r - r a d i u s :   8 p x ;   o b j e c t - f i t :   c o v e r ;   } 
 . p r o d u c t - d e t a i l   h 4   {   m a r g i n :   0   0   5 p x ;   f o n t - s i z e :   1 5 p x ;   } 
 . p r o d u c t - d e t a i l   p   {   m a r g i n :   0 ;   f o n t - w e i g h t :   6 0 0 ;   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 
 
 
 / *   C a r t   D r a w e r   S t y l e s   * / 
 . c a r t - o v e r l a y   {   p o s i t i o n :   f i x e d ;   t o p :   0 ;   l e f t :   0 ;   w i d t h :   1 0 0 % ;   h e i g h t :   1 0 0 % ;   b a c k g r o u n d :   r g b a ( 0 , 0 , 0 , 0 . 5 ) ;   z - i n d e x :   1 0 0 0 ;   d i s p l a y :   n o n e ;   o p a c i t y :   0 ;   t r a n s i t i o n :   0 . 3 s ;   } 
 . c a r t - o v e r l a y . a c t i v e   {   d i s p l a y :   b l o c k ;   o p a c i t y :   1 ;   } 
 . c a r t - d r a w e r   {   p o s i t i o n :   f i x e d ;   t o p :   0 ;   r i g h t :   - 4 0 0 p x ;   w i d t h :   1 0 0 % ;   m a x - w i d t h :   4 0 0 p x ;   h e i g h t :   1 0 0 v h ;   b a c k g r o u n d :   v a r ( - - w h i t e ) ;   z - i n d e x :   1 0 0 1 ;   t r a n s i t i o n :   0 . 3 s ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   b o x - s h a d o w :   - 5 p x   0   1 5 p x   r g b a ( 0 , 0 , 0 , 0 . 1 ) ;   } 
 . c a r t - d r a w e r . a c t i v e   {   r i g h t :   0 ;   } 
 . c a r t - h e a d e r   {   p a d d i n g :   2 0 p x ;   b o r d e r - b o t t o m :   1 p x   s o l i d   # f 0 f 0 f 0 ;   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;   a l i g n - i t e m s :   c e n t e r ;   } 
 . c a r t - h e a d e r   h 2   {   m a r g i n :   0 ;   f o n t - s i z e :   2 0 p x ;   c o l o r :   v a r ( - - d a r k ) ;   } 
 . c a r t - c l o s e   {   b a c k g r o u n d :   n o n e ;   b o r d e r :   n o n e ;   f o n t - s i z e :   2 4 p x ;   c o l o r :   v a r ( - - g r a y ) ;   c u r s o r :   p o i n t e r ;   t r a n s i t i o n :   0 . 2 s ;   } 
 . c a r t - c l o s e : h o v e r   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . c a r t - i t e m s   {   f l e x :   1 ;   o v e r f l o w - y :   a u t o ;   p a d d i n g :   2 0 p x ;   } 
 . c a r t - i t e m   {   d i s p l a y :   f l e x ;   g a p :   1 5 p x ;   m a r g i n - b o t t o m :   2 0 p x ;   p a d d i n g - b o t t o m :   2 0 p x ;   b o r d e r - b o t t o m :   1 p x   d a s h e d   # e 2 e 8 f 0 ;   p o s i t i o n :   r e l a t i v e ;   } 
 . c a r t - i t e m   i m g   {   w i d t h :   8 0 p x ;   h e i g h t :   8 0 p x ;   b o r d e r - r a d i u s :   8 p x ;   o b j e c t - f i t :   c o v e r ;   } 
 . c a r t - i t e m - i n f o   {   f l e x :   1 ;   } 
 . c a r t - i t e m - i n f o   h 4   {   m a r g i n :   0   0   5 p x ;   f o n t - s i z e :   1 4 p x ;   c o l o r :   v a r ( - - d a r k ) ;   l i n e - h e i g h t :   1 . 4 ;   } 
 . c a r t - i t e m - p r i c e   {   c o l o r :   v a r ( - - p r i m a r y ) ;   f o n t - w e i g h t :   b o l d ;   m a r g i n - b o t t o m :   1 0 p x ;   } 
 . c a r t - i t e m - q t y   {   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   g a p :   1 0 p x ;   } 
 . q t y - b t n   {   w i d t h :   2 8 p x ;   h e i g h t :   2 8 p x ;   b o r d e r - r a d i u s :   5 p x ;   b o r d e r :   1 p x   s o l i d   # c b d 5 e 1 ;   b a c k g r o u n d :   v a r ( - - w h i t e ) ;   c u r s o r :   p o i n t e r ;   d i s p l a y :   f l e x ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   f o n t - w e i g h t :   b o l d ;   c o l o r :   v a r ( - - d a r k ) ;   } 
 . q t y - b t n : h o v e r   {   b a c k g r o u n d :   # f 8 f 9 f a ;   b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 . q t y - i n p u t   {   w i d t h :   4 0 p x ;   t e x t - a l i g n :   c e n t e r ;   b o r d e r :   1 p x   s o l i d   # c b d 5 e 1 ;   b o r d e r - r a d i u s :   5 p x ;   h e i g h t :   2 8 p x ;   f o n t - w e i g h t :   b o l d ;   } 
 . c a r t - i t e m - r e m o v e   {   p o s i t i o n :   a b s o l u t e ;   r i g h t :   0 ;   t o p :   0 ;   b a c k g r o u n d :   n o n e ;   b o r d e r :   n o n e ;   c o l o r :   # e f 4 4 4 4 ;   c u r s o r :   p o i n t e r ;   f o n t - s i z e :   1 6 p x ;   p a d d i n g :   5 p x ;   } 
 . c a r t - f o o t e r   {   p a d d i n g :   2 0 p x ;   b o r d e r - t o p :   1 p x   s o l i d   # f 0 f 0 f 0 ;   b a c k g r o u n d :   # f 8 f 9 f a ;   } 
 . c a r t - t o t a l - r o w   {   d i s p l a y :   f l e x ;   j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ;   f o n t - s i z e :   1 8 p x ;   f o n t - w e i g h t :   b o l d ;   m a r g i n - b o t t o m :   1 5 p x ;   c o l o r :   v a r ( - - d a r k ) ;   } 
 . c a r t - c h e c k o u t - b t n   {   w i d t h :   1 0 0 % ;   p a d d i n g :   1 5 p x ;   b o r d e r :   n o n e ;   b o r d e r - r a d i u s :   1 2 p x ;   b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   v a r ( - - p r i m a r y ) ,   v a r ( - - p r i m a r y - l i g h t ) ) ;   c o l o r :   v a r ( - - w h i t e ) ;   f o n t - s i z e :   1 6 p x ;   f o n t - w e i g h t :   6 0 0 ;   c u r s o r :   p o i n t e r ;   t r a n s i t i o n :   0 . 3 s ;   b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 2 5 5 , 1 0 7 , 5 3 , 0 . 3 ) ;   } 
 . c a r t - c h e c k o u t - b t n : h o v e r   {   t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;   b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 2 5 5 , 1 0 7 , 5 3 , 0 . 4 ) ;   } 
 . e m p t y - c a r t   {   t e x t - a l i g n :   c e n t e r ;   p a d d i n g :   4 0 p x   2 0 p x ;   c o l o r :   v a r ( - - g r a y ) ;   } 
 . e m p t y - c a r t   i   {   f o n t - s i z e :   5 0 p x ;   c o l o r :   # c b d 5 e 1 ;   m a r g i n - b o t t o m :   1 5 p x ;   } 
 
 
 
 / *   P a y m e n t   M e t h o d   B o x e s   * / 
 . p a y m e n t - m e t h o d s - c o n t a i n e r   {   d i s p l a y :   f l e x ;   g a p :   1 0 p x ;   m a r g i n - b o t t o m :   1 5 p x ;   } 
 . p a y m e n t - m e t h o d - b o x   {   f l e x :   1 ;   b o r d e r :   2 p x   s o l i d   # e 2 e 8 f 0 ;   b o r d e r - r a d i u s :   8 p x ;   p a d d i n g :   1 2 p x   5 p x ;   t e x t - a l i g n :   c e n t e r ;   c u r s o r :   p o i n t e r ;   t r a n s i t i o n :   0 . 3 s ;   b a c k g r o u n d :   # f 8 f 9 f a ;   d i s p l a y :   f l e x ;   f l e x - d i r e c t i o n :   c o l u m n ;   a l i g n - i t e m s :   c e n t e r ;   j u s t i f y - c o n t e n t :   c e n t e r ;   g a p :   8 p x ;   } 
 . p a y m e n t - m e t h o d - b o x   i   {   f o n t - s i z e :   2 4 p x ;   c o l o r :   # 6 4 7 4 8 b ;   } 
 . p a y m e n t - m e t h o d - b o x   s p a n   {   f o n t - s i z e :   1 3 p x ;   f o n t - w e i g h t :   6 0 0 ;   c o l o r :   # 3 3 4 1 5 5 ;   } 
 . p a y m e n t - m e t h o d - b o x : h o v e r   {   b o r d e r - c o l o r :   v a r ( - - p r i m a r y - l i g h t ) ;   b a c k g r o u n d :   # f f f 5 f 0 ;   } 
 . p a y m e n t - m e t h o d - b o x . s e l e c t e d   {   b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;   b a c k g r o u n d :   # f f f 5 f 0 ;   b o x - s h a d o w :   0   4 p x   1 0 p x   r g b a ( 2 5 5 , 1 0 7 , 5 3 , 0 . 1 5 ) ;   } 
 . p a y m e n t - m e t h o d - b o x . s e l e c t e d   i   {   c o l o r :   v a r ( - - p r i m a r y ) ;   } 
 
 
 

/* ============================================================
   CART STYLES (Added to fix missing CSS)
   ============================================================ */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: #94a3b8;
}
.empty-cart i {
    font-size: 60px;
    color: #e2e8f0;
    margin-bottom: 20px;
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 15px;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.cart-item-info {
    flex: 1;
}
.cart-item-info h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #334155;
    line-height: 1.3;
}
.cart-item-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 8px;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    width: fit-content;
    overflow: hidden;
}
.qty-btn {
    border: none;
    background: none;
    padding: 5px 12px;
    cursor: pointer;
    color: #475569;
    font-size: 16px;
    transition: 0.2s;
}
.qty-btn:hover {
    background: #e2e8f0;
}
.qty-input {
    width: 35px;
    text-align: center;
    border: none;
    background: none;
    font-weight: bold;
    color: #334155;
    pointer-events: none;
}
.cart-item-remove {
    background: #fff0f2;
    color: #ef4444;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.cart-item-remove:hover {
    background: #ef4444;
    color: white;
}

/* ============================================================
   PREMIUM PAYMENT METHOD STYLES (Added to fix missing CSS)
   ============================================================ */
.payment-methods-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}
.payment-method-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.payment-method-box:hover {
    border-color: rgba(255, 107, 53, 0.4);
    background: #fffaf8;
}
.payment-method-box.selected {
    border-color: var(--primary);
    background: #fff5f0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.15);
}
.method-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.method-left i {
    font-size: 24px;
    width: 30px;
    text-align: center;
}
.method-left span {
    font-weight: 600;
    font-size: 16px;
    color: #334155;
}
.radio-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s ease;
}
.payment-method-box.selected .radio-indicator {
    border-color: var(--primary);
}
.payment-method-box.selected .radio-indicator::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}


/* ============================================================
   CLEAN & PROFESSIONAL TRACKING / CART PAGE STYLES
   ============================================================ */
.tracking-body {
    background: #f4f7f6;
    color: #333;
    font-family: 'Hind Siliguri', sans-serif;
    margin: 0; padding: 0;
}
.tracking-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    text-align: center;
}
.tracking-header .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}
.tracking-section {
    padding: 40px 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.auth-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .auth-card { padding: 25px 20px; }
}
.auth-header {
    text-align: center;
    margin-bottom: 25px;
}
.auth-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #2d3748;
    margin: 10px 0 5px 0;
}
.auth-header p { color: #718096; font-size: 15px; margin: 0; }
.auth-icon {
    width: 60px; height: 60px;
    background: #fff5f0;
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin: 0 auto;
}
.input-group {
    position: relative;
    margin-bottom: 20px;
}
.input-group i {
    position: absolute;
    left: 15px; top: 50%; transform: translateY(-50%);
    color: #a0aec0; font-size: 18px;
}
.input-group input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px; color: #2d3748;
    transition: all 0.2s ease;
    box-sizing: border-box;
}
.input-group input:focus {
    background: #ffffff;
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.auth-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px; font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}
.auth-submit-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}
.quick-track-box {
    margin-top: 25px;
    background: #f7fafc;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}
.quick-track-box h4 { margin: 0 0 5px 0; color: #2d3748; font-size: 15px; }
.quick-track-box p { margin: 0; color: #718096; font-size: 13px; }
.shop-now-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    color: var(--primary); font-weight: 600;
    padding: 10px 20px; text-decoration: none; border-radius: 8px;
    transition: 0.2s;
}
.shop-now-btn:hover { background: #fff5f0; }

/* Timeline */
.order-timeline { margin: 25px 0; }
.timeline { position: relative; padding-left: 20px; }
.timeline::before {
    content: ''; position: absolute; left: 6px; top: 0; bottom: 0;
    width: 2px; background: #e2e8f0;
}
.timeline-item {
    position: relative; margin-bottom: 25px; padding-left: 20px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute; left: -21px; top: 0;
    width: 16px; height: 16px; border-radius: 50%;
    background: #ffffff; border: 3px solid #cbd5e1;
    display: flex; align-items: center; justify-content: center;
    color: transparent; font-size: 8px;
    z-index: 1;
}
.timeline-item.completed .timeline-dot {
    background: var(--primary); border-color: var(--primary); color: white;
}
.timeline-item.current .timeline-dot {
    background: white; border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}
.timeline-content h4 { margin: 0 0 4px 0; font-size: 15px; color: #2d3748; }
.timeline-content p { margin: 0; font-size: 13px; color: #718096; }

/* Details */
.detail-section {
    background: #f7fafc; border: 1px solid #e2e8f0;
    padding: 15px; border-radius: 10px; margin-bottom: 15px;
}
.detail-section h3 { margin: 0 0 10px 0; font-size: 15px; color: #4a5568; border-bottom: 1px solid #e2e8f0; padding-bottom: 8px; }
.price-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; color: #4a5568; }
.price-row.total { border-top: 1px dashed #cbd5e1; margin-top: 12px; padding-top: 12px; font-size: 18px; font-weight: 700; color: var(--primary); }

#detailOrderId {
    display: inline-block; background: #fff5f0; color: var(--primary);
    padding: 5px 12px; border-radius: 20px; font-weight: 600; font-size: 14px;
    margin-top: 5px; border: 1px solid rgba(255,107,53,0.2);
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   Optimized for Android & Mobile Devices (320px - 768px)
   ============================================================ */

/* --- General Mobile & Overflow Fixes --- */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
}

/* Scrollable Tables for Mobile */
.table-responsive,
.admin-table-container,
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 15px;
}

table {
    max-width: 100%;
}

/* ============================================================
   TABLET & MOBILE SCREENS (768px and below)
   ============================================================ */
@media screen and (max-width: 768px) {
    /* Header & Navigation */
    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 15px;
    }

    .header-actions {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .search-btn,
    .track-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 6px;
        font-size: 12px;
    }

    /* Hero Section */
    .hero {
        height: 300px;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-btns,
    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    /* Categories Section */
    .categories {
        padding: 30px 0;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .category-card {
        padding: 15px 10px;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin: 0 auto 10px;
    }

    /* Products Section */
    .products-section,
    .all-products {
        padding: 30px 0;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        height: 140px;
    }

    /* Section Headers */
    .section-header {
        margin-bottom: 20px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 14px;
    }

    /* Filter Chips Vertical Wrap */
    .filter-chips {
        display: flex;
        flex-wrap: wrap;
        overflow: visible;
        justify-content: center;
        padding-bottom: 10px;
        margin-bottom: 20px;
        gap: 8px;
    }

    .filter-chips::-webkit-scrollbar {
        display: none;
    }

    .filter-chip {
        white-space: normal;
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Best Sellers Section */
    .best-sellers {
        padding: 30px 0;
    }

    .best-products-scroll {
        gap: 12px;
        padding: 8px 0 15px;
    }

    .best-product-card {
        min-width: 220px;
    }

    .best-product-img {
        height: 150px;
    }

    /* Footer */
    .footer {
        padding: 30px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section ul li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Modal & Dialogs */
    .product-modal,
    .admin-modal {
        padding: 10px;
    }

    .modal-product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .modal-content {
        margin: 10px auto;
        max-height: 90vh;
        width: 100%;
        max-width: 95%;
    }

    .modal-body {
        padding: 20px 15px;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    /* Order Form */
    .order-form {
        padding: 15px;
    }

    .order-form .form-group input,
    .order-form .form-group select,
    .order-form .form-group textarea,
    .order-form input,
    .order-form select,
    .order-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .order-submit-btn,
    .auth-submit-btn {
        width: 100%;
        max-width: 100%;
    }

    /* Payment Methods - Stacked */
    .payment-methods-container {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .payment-method-box,
    .pay-btn {
        width: 100%;
    }

    /* Admin Panel Mobile Adjustments */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .admin-products-grid {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 15px;
    }

    .admin-topbar {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
    }

    .admin-actions {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   SMALL PHONES (480px and below)
   ============================================================ */
@media screen and (max-width: 480px) {
    /* Base Font & Layout */
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 12px;
    }

    /* Touch Friendly Buttons (Min Height 44px) */
    button,
    .btn,
    .hero-btn,
    .add-to-cart,
    .best-add-btn,
    .order-btn-big,
    .order-submit-btn,
    .auth-submit-btn,
    .track-btn,
    .search-btn,
    .modal-add-cart,
    .filter-chip,
    .whatsapp-order-btn,
    .btn-primary,
    .btn-secondary,
    .btn-danger,
    .btn-call,
    .login-btn,
    .shop-now-btn,
    .back-btn {
        min-height: 44px;
    }

    /* Header & Branding */
    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .search-container input {
        padding: 15px;
        font-size: 16px;
    }

    /* Hero Section */
    .hero {
        height: 250px;
        margin-bottom: 25px;
    }

    .hero-content h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .hero-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    /* Products Grid (Keep 2 Columns, NOT 1) */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .product-info {
        padding: 10px;
    }

    .product-name {
        font-size: 13px;
        height: 36px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .price-current {
        font-size: 15px;
    }

    .price-old {
        font-size: 12px;
    }

    .product-stock {
        font-size: 11px;
        margin-top: 4px;
    }

    .add-to-cart {
        padding: 8px;
        font-size: 12px;
        margin-top: 8px;
    }

    /* Categories Grid (Keep 2 Columns) */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .category-card {
        padding: 12px 8px;
    }

    .category-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin: 0 auto 8px;
    }

    .category-card h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .category-count {
        font-size: 11px;
    }

    /* Best Sellers Card */
    .best-card,
    .best-product-card {
        min-width: 180px;
    }

    .best-card .best-image,
    .best-product-img {
        height: 130px;
    }

    .best-product-info {
        padding: 10px;
    }

    .best-product-info h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .best-price {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .best-add-btn {
        padding: 8px;
        font-size: 12px;
    }

    /* Product Page Specific */
    .product-page-info {
        padding: 15px;
    }

    .product-page-info h1 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .offer-price {
        font-size: 22px;
    }

    .order-btn-big {
        padding: 14px;
        font-size: 15px;
    }

    /* Cart & Tracking */
    .auth-card {
        padding: 20px 15px;
    }

    .cart-item img {
        width: 60px;
        height: 60px;
    }

    .cart-item-info h4 {
        font-size: 13px;
    }

    /* Admin Panel */
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   VERY SMALL PHONES (360px and below)
   ============================================================ */
@media screen and (max-width: 360px) {
    .container {
        padding: 0 8px;
    }

    /* Hero Section */
    .hero {
        height: 220px;
        margin-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 12px;
    }

    /* Products Grid (2 Columns, 6px gap) */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
    }

    .product-image {
        height: 120px;
    }

    .product-info {
        padding: 8px 6px;
    }

    .product-name {
        font-size: 12px;
        height: 32px;
    }

    .price-current {
        font-size: 14px;
    }

    .price-old {
        font-size: 11px;
    }

    .add-to-cart {
        padding: 6px;
        font-size: 11px;
    }

    /* Categories Grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
    }

    .category-card {
        padding: 10px 6px;
    }

    .category-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .category-card h3 {
        font-size: 12px;
    }

    /* Best Sellers */
    .best-card,
    .best-product-card {
        min-width: 160px;
    }

    .best-card .best-image,
    .best-product-img {
        height: 110px;
    }

    .best-product-info h3 {
        font-size: 12px;
    }

    .best-price {
        font-size: 14px;
    }
}

/* ============================================================
   CRITICAL MOBILE OVERFLOW FIX
   Prevents horizontal scroll on ALL screens
   ============================================================ */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.hero,
.hero-slider,
.hero-slide,
.features,
.categories,
.products-section,
.all-products,
.best-sellers,
.footer,
section,
header,
.top-bar,
.header,
.container {
    width: 100%;
    max-width: 100%;
}

.best-products-scroll {
    max-width: 100%;
}

/* Force Cart button inline style override */
.cart-btn {
    margin-left: 5px !important;
}

@media screen and (max-width: 768px) {
    /* Features / Trust Badges Grid Fix */
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }

    .feature-card {
        padding: 20px 10px;
    }

    .feature-card i {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 14px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* Header Fix - no overflow */
    .header-content {
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 0;
    }

    .header-actions {
        gap: 8px;
    }

    .search-btn span,
    .track-btn span {
        display: none;
    }

    /* Hero slider contained */
    .hero {
        height: 280px;
        margin-bottom: 20px;
    }

    .hero-slide {
        width: 100% !important;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 13px;
    }

    .hero-btn {
        padding: 10px 18px;
        font-size: 13px;
    }

    /* Best Sellers - no body overflow */
    .best-sellers {
        overflow: hidden;
    }

    .best-products-scroll {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        overflow: visible;
        padding: 5px 0 10px;
        gap: 10px;
    }

    .best-products-scroll::-webkit-scrollbar {
        display: none;
    }

    .best-product-card {
        min-width: unset !important;
        width: 100%;
        flex-shrink: unset;
    }

    .best-product-img {
        height: 140px;
    }

    /* Footer Fix */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* Product Page Fixes */
    .product-page-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .product-page-image {
        height: 250px;
    }

    .order-product-info {
        flex-direction: column;
        text-align: center;
    }

    .order-product-info img {
        width: 100px;
        height: 100px;
    }

    /* Payment section fix */
    .payment-methods {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px;
    }

    .payment-method-btn {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .feature-card {
        padding: 15px 8px;
    }

    .feature-card i {
        font-size: 28px;
    }

    .feature-card h3 {
        font-size: 13px;
    }

    .feature-card p {
        font-size: 11px;
    }

    .best-product-card {
        min-width: unset !important;
    }

    .best-product-img {
        height: 120px;
    }

    .hero {
        height: 240px;
    }
}

@media screen and (max-width: 360px) {
    .features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 6px;
    }

    .feature-card {
        padding: 12px 6px;
    }

    .best-product-card {
        min-width: unset !important;
    }
}
