:root {
    --primary-green: #2d6a4f;
    --primary-dark: #1b4332;
    --accent-gold: #f0a500;
    --accent-orange: #e76f51;
    --light-bg: #f8faf8;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-medium: #444;
    --text-light: #666;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ========== HEADER / NAVBAR ========== */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid #e9ecef;
}

.navbar {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 28px;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--primary-dark);
    flex-shrink: 0;
    max-height: 100%;
}

.logo-icon {
    width: clamp(36px, 5vh, 48px); 
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text h1 {
    font-size: clamp(0.9rem, 2.5vw, 1.15rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: var(--primary-dark);
    white-space: nowrap;
}

.logo-text span {
    font-size: clamp(0.55rem, 1.5vw, 0.65rem);
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--accent-orange);
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: 2px;
}

#block-span {
    display: block;
    margin-top: 2px;
    color: darkgreen;
    font-size: 0.65rem;
}

/* ==========================================
   MOBILE HEADER FIX (Logo & Toggle Alignment)
   ========================================== */
@media (max-width: 768px) {
    .navbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 12px 15px;
        gap: 12px;
    }

    /* Logo positioning (Left Side) */
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        max-width: calc(100% - 60px);
        /* Toggle icon ke liye jagah chhorne ke liye */
    }

    .logo-text h1 {
        font-size: 1.3rem;
        line-height: 1.1;
    }

    .logo-text span {
        display: block;
        font-size: 0.65rem;
    }

    /* Hamburger Toggle Icon (Right Side Top Row) */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        font-size: 1.6rem;
        color: var(--bg-dark-green, #0a2f1d);
        cursor: pointer;
        padding: 5px;
        order: 2;
        /* Main heading ke thik saamne right side me set karega */
    }

    /* Search Box (Full Width Second Row) */
    .search-box {
        width: 100%;
        order: 3;
        margin-top: 5px;
    }

    /* WhatsApp Button (Full Width Third Row) */
    .btn-whatsapp-header {
        width: 100%;
        text-align: center;
        justify-content: center;
        order: 4;
        padding: 10px;
        font-size: 0.9rem;
    }

    /* Sliding Mobile Menu Drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background-color: var(--bg-dark-green, #0a2f1d);
        flex-direction: column;
        padding: 80px 25px 30px 25px;
        gap: 20px;
        transition: right 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: #ffffff;
        font-size: 1.1rem;
        display: block;
    }
}

/* SEARCH BAR */
.search-box {
    display: flex;
    align-items: center;
    background: #f1f3f5;
    border: 1px solid var(--border-color);
    border-radius: 25px;
    padding: 4px 6px 4px 16px;
    flex: 1;
    max-width: 360px;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary-green);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

.search-box input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 0.85rem;
    font-family: inherit;
    color: var(--text-dark);
}

.search-box button {
    background: var(--primary-green);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* ==========================================
   MOBILE MENU TOGGLE STYLING
   ========================================== */

/* By default desktop par toggle button hide rahega */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-light, #ffffff);
    cursor: pointer;
    z-index: 1001;
    transition: transform 0.3s ease;
}

.menu-toggle:active {
    transform: scale(0.9);
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
        /* Mobile screens par show hoga */
    }

    /* Navbar links ko mobile drawer banayein */
    .navbar .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        /* Shuru me screen ke bahar rahega */
        width: 280px;
        height: 100vh;
        background: var(--bg-dark-green, #0a2f1d);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 90px 30px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.4);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        /* Smooth sliding effect */
        z-index: 1000;
        border-left: 2px solid var(--accent-gold, #ffb703);
    }

    /* Jab menu active (open) ho */
    .navbar .nav-links.active {
        right: 0;
    }

    /* Nav links ki styling mobile ke liye */
    .navbar .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 12px;
    }

    .navbar .nav-links li a {
        font-size: 1.1rem;
        color: var(--text-light, #ffffff);
        display: block;
        width: 100%;
        transition: color 0.3s ease;
    }

    .navbar .nav-links li a:hover {
        color: var(--accent-gold, #ffb703);
        padding-left: 6px;
    }

    /* Optional: Background Overlay jab menu open ho */
    body.menu-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        z-index: 999;
        backdrop-filter: blur(3px);
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 7px 12px;
    border-radius: 25px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover {
    background: #e8f5e9;
    color: var(--primary-green);
}

.btn-whatsapp-header {
    background: #25d366;
    color: #fff !important;
    padding: 9px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.82rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-whatsapp-header:hover {
    background: #1fbc59;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

/* ==========================================
   1. MAIN HERO SECTION STYLING
   ========================================== */
.hero {
    position: relative;
    color: var(--text-light);
    padding: 80px 20px 60px 20px;
    overflow: hidden;
    border-bottom: 3px solid var(--accent-gold);
}

/* Background subtle pattern effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    pointer-events: none;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(45, 106, 79, 0.6);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Heading & Paragraph */
.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 18px;
    color: #120606;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

/* Hero Call-To-Action Button */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.35);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 183, 3, 0.5);
    color: #000000;
    background-color: gold;
}

/* Hero Stats Grid */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(183, 228, 199, 0.2);
    padding: 20px 15px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-gold);
}

.stat-card h3 {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

#NoticeForOrder{
    font-style: italic;
}

/* Affiliate Heading Normal Styling */
#affiliate-heading {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 20px 0;
    padding-bottom: 8px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

#affiliate-heading::after {
    content: "";
    display: block;
    width: 50px;/* line ki length */
    height: 3px;
    /* line ki thickness */
    background-color: #ff6f61;
    /* line ka color */
    margin: 8px auto 0;
    /* center align aur spacing */
    border-radius: 2px;
    /* thoda smooth edges */
}

/* ==========================================
   2. HERO SLIDER CONTAINER STYLING
   ========================================== */
.hero-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    background-color: #f0a500;
}

.hero-slider-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.hero-slider {
    display: flex;
    gap: 20px;
    width: 100%;
}

.hero-card {
    flex: 0 0 100%;
    min-height: 460px;
    scroll-snap-align: start;
    border-radius: 16px;
    display: flex;
    align-items: center;
    padding: 45px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Dark Green Gradient Overlays for High Text Contrast */
.fashion-card {
    background-image: linear-gradient(135deg, rgba(10, 47, 29, 0.88) 0%, rgba(27, 67, 50, 0.65) 100%),
        url('https://images.unsplash.com/photo-1483985988355-763728e1935b?q=80&w=1200');
}

.electronics-card {
    background-image: linear-gradient(135deg, rgba(10, 47, 29, 0.88) 0%, rgba(27, 67, 50, 0.65) 100%),
        url('https://images.unsplash.com/photo-1498049794561-7780e7231661?q=80&w=1200');
}

.hero-card .hero-content {
    text-align: left;
    max-width: 580px;
    margin: 0;
}

/* Slider Badge */
.hero-card .badge {
    background: var(--accent-gold);
    color: #000000;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-card h1 {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-card p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 22px;
}

/* Slider Button */
.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: var(--bg-dark-green);
    padding: 12px 28px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.cta-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #000000;
    transform: translateY(-2px);
}

/* Affiliate Notice */
.affiliate-notice {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    font-style: italic;
}

/* ==========================================
   3. RESPONSIVE BREAKPOINTS
   ========================================== */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.3rem;
    }

    .hero-card h1 {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 15px 40px 15px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-card {
        min-height: 380px;
        padding: 25px;
    }

    .hero-card h1 {
        font-size: 1.6rem;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }
}

/* ========== PRODUCT CATEGORY SECTION ========== */
.product-category {
    padding: 50px 24px 60px;
    background: var(--white);
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-container>h1 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 36px;
    font-size: 0.9rem;
}

.category-block {
    margin-bottom: 45px;
}

.category-block h2 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 3px solid #e8f5e9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subcategory-title {
    font-size: 1.05rem;
    color: var(--primary-green);
    margin: 16px 0 12px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 16px;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #c8e6c9;
    transform: translateY(-2px);
}

.product-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 3px solid #e8f5e9;
}

.product-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.product-card .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* AFFILIATE STYLING */
.product-card.affiliate-card {
    border-top: 3px solid var(--accent-gold);
}

.old-price {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 5px;
    font-weight: 400;
}

.brand-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: #e67e22;
    background: #fff5eb;
    padding: 2px 8px;
    border-radius: 12px;
    margin-bottom: 12px;
    display: inline-block;
}

.btn-affiliate-buy {
    background: linear-gradient(135deg, #ff9900, #e67e22);
    color: #fff !important;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.25);
}

.btn-affiliate-buy:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
}

.qty-container {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.qty-container input {
    width: 50px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
}

.btn-buy-single {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 9px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    justify-content: center;
}

.btn-buy-single:hover {
    background: #1fbc59;
}

.select-checkbox {
    position: absolute;
    top: 10px;
    right: 12px;
    cursor: pointer;
}

.select-checkbox input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.select-checkbox input:checked+.checkmark {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.select-checkbox input:checked+.checkmark::after {
    content: '✓';
    font-weight: 700;
    font-size: 0.75rem;
}

/* ========== MULTI-ORDER BAR ========== */
.multi-order-bar {
    position: sticky;
    bottom: 16px;
    background: var(--primary-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 900;
    margin-top: 20px;
}

.order-counter {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-counter span {
    background: var(--accent-gold);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.btn-whatsapp-bulk {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-whatsapp-bulk:hover {
    background: #1fbc59;
}

/* ========== CLIENTS & ORDER FORM ========== */
.clients-section {
    background-color: #f4f9f5;
    /* Light subtle green tinted background */
    padding: 70px 20px;
}

.clients-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--bg-dark-green, #0a2f1d);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Gold accent bar under section title */
.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold, #ffb703);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.section-title p {
    font-size: 1.05rem;
    color: #555555;
}

/* Clients Grid Layout */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* Client Card Box */
.client-box {
    background: #ffffff;
    border: 1px solid #e1ebe3;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.client-box:hover {
    transform: translateY(-6px);
    border-color: var(--accent-gold, #ffb703);
    box-shadow: 0 10px 25px rgba(10, 47, 29, 0.1);
}

/* Icon Container/Styling */
.client-box i {
    font-size: 2.4rem;
    color: var(--main-green, #1b4332);
    background: #e8f5e9;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.client-box:hover i {
    background: var(--accent-gold, #ffb703);
    color: #000000;
}

/* Card Heading & Paragraph */
.client-box h4 {
    font-size: 1.2rem;
    color: var(--bg-dark-green, #0a2f1d);
    font-weight: 600;
    margin-bottom: 10px;
}

.client-box p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .clients-section {
        padding: 50px 15px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .client-box {
        padding: 25px 15px;
    }
}

#order {
    padding: 50px 24px;
    background: var(--white);
}

.order-card {
    background: #fafdfb;
    border: 1px solid #e0e8e2;
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-md);
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.82rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ========== FOOTER ========== */
footer {
    background: var(--primary-dark);
    padding: 30px 24px 0;
    color: #b7e4c7;
}

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

.copyright {
    text-align: center;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .search-box {
        max-width: 100%;
        width: 100%;
        order: 3;
    }

    .nav-links {
        width: 100%;
        gap: 4px;
    }

    .nav-links a {
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .order-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-card img {
        width: 75px;
        height: 75px;
    }

    .product-card h3 {
        font-size: 0.8rem;
    }
}

/* =========================================================
   ONLY APPLY TO ELECTRONICS & FASHION PAGES (SCOPED CSS)
   ========================================================= */

/* Card Setup */
.amazon-style-page .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 15px;
}

.amazon-style-page .product-card {
    position: relative;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #fff;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.2s ease-in-out;
}

.amazon-style-page .product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.amazon-style-page .badge-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #cc0c39;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    z-index: 2;
}

/* Gallery & Thumbnails */
.amazon-style-page .media-container {
    text-align: center;
    margin-bottom: 12px;
}

.amazon-style-page .main-media {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 10px;
}

.amazon-style-page .thumbnail-list {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.amazon-style-page .thumb {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.amazon-style-page .thumb:hover, 
.amazon-style-page .thumb.active {
    border-color: #e77600;
}

.amazon-style-page .video-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    color: #333;
    font-size: 13px;
}

/* Amazon Style Content Typography */
.amazon-style-page .brand-tag {
    font-size: 11px;
    color: #565959;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
}

.amazon-style-page .product-title {
    font-size: 14px;
    line-height: 1.3em;
    height: 2.6em;
    overflow: hidden;
    color: #0f1111;
    margin: 4px 0 6px 0;
    font-weight: 500;
}

.amazon-style-page .rating-block {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 6px;
}

.amazon-style-page .stars {
    color: #ffa41c;
}

.amazon-style-page .rating-count {
    color: #007185;
}

.amazon-style-page .price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.amazon-style-page .discount-badge {
    color: #cc0c39;
    font-size: 20px;
    font-weight: 300;
}

.amazon-style-page .price {
    font-size: 24px;
    font-weight: 500;
    color: #0f1111;
}

.amazon-style-page .currency {
    font-size: 13px;
    vertical-align: super;
}

.amazon-style-page .mrp-line {
    font-size: 12px;
    color: #565959;
    margin: 2px 0;
}

.amazon-style-page .old-price {
    text-decoration: line-through;
}

.amazon-style-page .delivery-text {
    font-size: 12px;
    color: #565959;
    margin-bottom: 12px;
}

/* Buy Button Override */
.amazon-style-page .btn-affiliate-buy {
    display: block;
    width: 100%;
    background: #ffd814;
    border: 1px solid #fcd200;
    border-radius: 20px;
    padding: 8px 0;
    text-align: center;
    color: #0f1111;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.amazon-style-page .btn-affiliate-buy:hover {
    background: #f7ca00;
}

