* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Inter', sans-serif; background:#f5f7fa; }
.container { max-width:1200px; margin:auto; padding:0 20px; }
.navbar { background:#111; color:#fff; padding:15px 0; }
.products-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(250px,1fr)); gap:20px; }
.product-card { background:#fff; padding:15px; border-radius:12px; text-align:center; }
.product-card img { width:100%; height:180px; object-fit:cover; border-radius:8px; }
.price { color:#e67e22; font-weight:bold; }
.btn, button { background:#2563eb; color:#fff; border:none; padding:8px 15px; border-radius:8px; cursor:pointer; }
/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --dark-color: #1f2937;
    --gray-color: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 0.5rem;
}
/* Conteneur principal */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Message panier vide */
main p {
    text-align: center;
    font-size: 18px;
    color: #777;
}

/* Tableau */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

/* En-tÃªte */
thead {
    background: #101070;
    color: #fff;
}

th, td {
    padding: 12px 10px;
    text-align: center;
}

/* Lignes */
tbody tr {
    border-bottom: 1px solid #eee;
}

tbody tr:hover {
    background: #f9f9f9;
}

/* Input quantitÃ© */
input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

/* Bouton supprimer */
button[name="remove_item"] {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

button[name="remove_item"]:hover {
    background: #cc0000;
}

/* Footer total */
tfoot {
    background: #f5f5f5;
    font-size: 16px;
}

/* Bouton mise Ã  jour */
button[name="update_cart"] {
    background: #101070;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 6px;
    cursor: pointer;
}

button[name="update_cart"]:hover {
    background: #0a0a50;
}

/* Bouton commander */
a[href*="checkout"] {
    display: inline-block;
    margin-top: 15px;
    margin-left: 10px;
    padding: 10px 20px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

a[href*="checkout"]:hover {
    background: #1e7e34;
}

/* Bouton WhatsApp */
.btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    margin-left: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.btn-whatsapp:hover {
    background: #1da851;
}

/* Responsive */
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        background: #fff;
        padding: 10px;
        border-radius: 8px;
    }

    td {
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    td::before {
        position: absolute;
        left: 10px;
        top: 10px;
        font-weight: bold;
        text-align: left;
    }

    td:nth-of-type(1)::before { content: "Produit"; }
    td:nth-of-type(2)::before { content: "Prix"; }
    td:nth-of-type(3)::before { content: "QtÃ©"; }
    td:nth-of-type(4)::before { content: "Total"; }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: var(--dark-color);
    line-height: 1.6;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
   /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
   background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
}

h3 {
    font-size: 1.5rem;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo h2 {
    margin: 0;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 5rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    margin: 3rem 0;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.1s both;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease;
    animation-fill-mode: both;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--gray-color);
}

/* Popular Stores */
.popular-stores {
    margin: 4rem 0;
}

.popular-stores h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.store-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease;
}

.store-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.store-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.store-card p {
    color: var(--gray-color);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer p {
    margin: 0.5rem 0;
}

.footer small {
    opacity: 0.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white);
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ============================================
   FORMS & AUTH
   ============================================ */
.auth-form {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    animation: fadeInUp 0.6s ease;
}

.auth-form h1 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-form > p {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--gray-color);
    font-size: 0.75rem;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--light-gray), #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-card h3 {
    padding: 1rem 1rem 0.5rem;
    font-size: 1.25rem;
}

.product-card .description {
    padding: 0 1rem;
    color: var(--gray-color);
    font-size: 0.875rem;
}

.product-card .price {
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-actions {
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

/* ============================================
   CART & CHECKOUT
   ============================================ */
.cart-table {
    width: 100%;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cart-table th,
.cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.cart-table th {
    background: var(--light-gray);
    font-weight: 600;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.checkout-form,
.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.order-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--dark-color);
    text-align: right;
    font-size: 1.25rem;
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin: 1rem 0;
    animation: fadeInUp 0.4s ease;
}

.alert.error {
    background: #fee2e2;
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert.success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid var(--secondary-color);
}

.alert.info {
    background: #dbeafe;
    color: #1e40af;
    border-left: 4px solid var(--primary-color);
}

/* ============================================
   DASHBOARD
   ============================================ */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-color);
    font-size: 0.875rem;
}

.store-link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
    margin-top: 3rem;
    border-radius: var(--radius);
}

.store-link a {
    color: var(--white);
    text-decoration: underline;
}

/* ============================================
   STORE FRONT
   ============================================ */
.store-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2rem 0;
}

.store-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.store-header nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 1.5rem;
    transition: opacity 0.3s ease;
}

.store-header nav a:hover {
    opacity: 0.8;
}

.store-footer {
    background: var(--dark-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

.product-detail {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-lg);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-detail-image img {
    width: 100%;
    border-radius: var(--radius);
}

.product-image-placeholder-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--light-gray), #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border-radius: var(--radius);
}

.price-large {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.quantity-selector {
    margin: 1.5rem 0;
}

.quantity-selector label {
    margin-right: 0.5rem;
    font-weight: 600;
}

.quantity-selector input {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius);
    text-align: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 3rem 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-table {
        font-size: 0.875rem;
    }
    
    .cart-table th,
    .cart-table td {
        padding: 0.5rem;
    }
    
    .auth-form {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
    }
    
    .cart-actions {
        flex-direction: column;
    }
    
    .cart-actions .btn {
        width: 100%;
    }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center {
    text-align: center;
}

        .btn-whatsapp { background: #25D366; color: white; padding: 12px 18px; border-radius: 8px; text-decoration: none; display: inline-block; margin-top: 10px; }
        .btn-whatsapp i { margin-right: 8px; }

.text-right {
    text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Loading Spinner */
.spinner {
    border: 3px solid var(--light-gray);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scrollbar personnalisÃ©e */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
/* Conteneur principal */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Message panier vide */
main p {
    text-align: center;
    font-size: 18px;
    color: #777;
}

/* Tableau */
table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

/* En-tÃªte */
thead {
    background: #101070;
    color: #fff;
}

th, td {
    padding: 12px 10px;
    text-align: center;
}

/* Lignes */
tbody tr {
    border-bottom: 1px solid #eee;
}

tbody tr:hover {
    background: #f9f9f9;
}

/* Input quantitÃ© */
input[type="number"] {
    width: 60px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}

/* Bouton supprimer */
button[name="remove_item"] {
    background: #ff4d4d;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

button[name="remove_item"]:hover {
    background: #cc0000;
}

/* Footer total */
tfoot {
    background: #f5f5f5;
    font-size: 16px;
}

/* Bouton mise Ã  jour */
button[name="update_cart"] {
    background: #101070;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 6px;
    cursor: pointer;
}

button[name="update_cart"]:hover {
    background: #0a0a50;
}

/* Bouton commander */
a[href*="checkout"] {
    display: inline-block;
    margin-top: 15px;
    margin-left: 10px;
    padding: 10px 20px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
}

a[href*="checkout"]:hover {
    background: #1e7e34;
}

/* Bouton WhatsApp */
.btn-whatsapp {
    display: inline-block;
    margin-top: 15px;
    margin-left: 10px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.btn-whatsapp:hover {
    background: #1da851;
}
 .headerM{
    display:none;}
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
   top:0;
    z-index:1000;
}
/* Responsive */
@media (min-width: 768px) {
.headerM{
    display:none;}
  }
@media (max-width: 768px) {
    table, thead, tbody, th, td, tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        margin-bottom: 15px;
        background: #fff;
        padding: 10px;
        border-radius: 8px;
    }

    td {
        text-align: right;
        position: relative;
        padding-left: 50%;
    }

    td::before {
        position: absolute;
        left: 10px;
        top: 10px;
        font-weight: bold;
        text-align: left;
    }

    td:nth-of-type(1)::before { content: "Produit"; }
    td:nth-of-type(2)::before { content: "Prix"; }
    td:nth-of-type(3)::before { content: "QtÃ©"; }
    td:nth-of-type(4)::before { content: "Total"; }
   
   .headerM{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
   top:0;
    z-index:1000;
    color:#101070;
}  .header{
    display:none;
    
}
}




/* LEFT */
.header-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.header-left a{
    text-decoration:none;
    color:#333;
}

/* CENTER */
.header-center h1{
    font-size:20px;
    font-weight:bold;
}

/* RIGHT */
.header-right{
    display:flex;
    align-items:center;
    gap:20px;
}

.headerr{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
  
    z-index:1000;
}

/* LEFT */
.headerr-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.headerr-left a{
    text-decoration:none;
    color:#333;
}

/* CENTER */
.headerr-center h1{
    font-size:20px;
    font-weight:bold;
}

/* RIGHT */
.headerr-right{
    display:flex;
    align-items:center;
    gap:20px;
}

/* CART */
.cart-link{
    position:relative;
}

.cart-count{
    position:absolute;
    top:-8px;
    right:-10px;
    background:red;
    color:#fff;
    font-size:11px;
    padding:3px 6px;
    border-radius:50%;
}

/* DROPDOWN */
.dropdown{
    position:relative;
    cursor:pointer;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:25px;
    left:0;
    background:#fff;
    border:1px solid #eee;
    border-radius:8px;
    min-width:200px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-menu a{
    display:block;
    padding:10px;
    border-bottom:1px solid #f2f2f2;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
}

.dropdown:hover .dropdown-menu{
    display:block;
}


.cart-link {
    position: relative;
    display: inline-block;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: red;
    color: white;
    font-size: 11px;
    padding: 3px 6px;
    border-radius: 50%;
    font-weight: bold;
}
h1 {
    color: #101070;
}




