/* =================================================================
   STYLE PRINCIPAL - ICIVENTE (VERSION CHARTE GRAPHIQUE 2025)
   Couleurs officielles: #FFC000 (Orange/Jaune), #000000 (Noir)
   Police principale: Poppins, Inter
   ================================================================= */

/* =================================================================
   VARIABLES CSS CHARTE GRAPHIQUE OFFICIELLE
   ================================================================= */
:root {
    /* Couleurs principales de la charte graphique icivente */
    --primary-orange: #FFC000;              /* Orange principal du logo */
    --primary-black: #000000;               /* Noir principal */
    --secondary-red: #E54A22;               /* Rouge secondaire */
    --secondary-green: #008000;             /* Vert secondaire */
    --white: #ffffff;                       /* Blanc */
    
    /* Variations et nuances de l'orange */
    --orange-light: #FFD033;                /* Orange plus clair */
    --orange-dark: #E6AC00;                 /* Orange plus sombre */
    --orange-lighter: #FFE066;              /* Orange très clair */
    --orange-darker: #CC9900;               /* Orange très sombre */
    
    /* Variations du noir */
    --black-light: #333333;                 /* Noir plus clair */
    --black-lighter: #666666;               /* Gris foncé */
    
    /* Couleurs neutres */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* Couleurs système */
    --success-color: var(--secondary-green);
    --warning-color: var(--primary-orange);
    --danger-color: var(--secondary-red);
    --info-color: #17a2b8;
    
    /* Typographie - Polices modernes */
    --font-primary: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Bordures */
    --border-radius: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    
    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 3px 6px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15), 0 3px 6px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* =================================================================
   STYLES GLOBAUX
   ================================================================= */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--primary-black);
    background-color: var(--white);
    font-size: 16px;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1.1rem; font-weight: 600; }

/* Liens selon la charte */
a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--orange-dark);
    text-decoration: none;
}

/* =================================================================
   HEADER COMPACT - CHARTE GRAPHIQUE ICIVENTE
   ================================================================= */
.unified-header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1020;
}

/* NAVBAR PRINCIPALE COMPACTE */
.main-navbar {
    padding: 0.5rem 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* LOGO COMPACT */
.brand-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-black);
}

.brand-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-orange);
}

/* MENU CATEGORIES COMPACT */
.categories-menu {
    position: relative;
}

.categories-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.categories-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

/* BARRE DE RECHERCHE COMPACTE */
.search-container {
    flex: 1;
    max-width: 500px;
}

.search-form {
    display: flex;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    height: 40px;
}

.search-form:focus-within {
    border-color: var(--primary-orange);
}

.search-input {
    flex: 1;
    border: none;
    padding: 0.5rem 0.75rem;
    outline: none;
    font-size: 0.9rem;
}

.search-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: var(--orange-dark);
}

/* ACTIONS DROITE COMPACTES */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn {
    background: transparent;
    border: 1px solid var(--gray-300);
    color: var(--primary-black);
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.action-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    text-decoration: none;
}

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

/* NAVIGATION CATEGORIES COMPACTE */
.categories-nav {
    background: var(--gray-50);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.categories-list {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.category-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.category-link:hover {
    color: var(--primary-orange);
    text-decoration: none;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.category-link:hover::after {
    width: 100%;
}

/* =================================================================
   BOUTONS CHARTE GRAPHIQUE ICIVENTE
   ================================================================= */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-primary);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: none;
    letter-spacing: 0.025em;
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 192, 0, 0.25);
}

/* Bouton principal - Orange icivente */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-dark) 100%);
    border-color: var(--primary-orange);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-darker) 100%);
    border-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

/* Bouton secondaire - Noir */
.btn-secondary {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--black-light) 100%);
    border-color: var(--primary-black);
    color: var(--white);
    font-weight: 600;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black-lighter) 100%);
    border-color: var(--black-light);
    color: var(--white);
    transform: translateY(-2px);
}

/* Bouton succès - Vert */
.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #006600 100%);
    border-color: var(--success-color);
    color: var(--white);
    font-weight: 600;
}

.btn-success:hover {
    background: linear-gradient(135deg, #006600 0%, #004400 100%);
    border-color: #006600;
    color: var(--white);
    transform: translateY(-2px);
}

/* Bouton warning - Orange */
.btn-warning {
    background: linear-gradient(135deg, var(--warning-color) 0%, var(--orange-dark) 100%);
    border-color: var(--warning-color);
    color: var(--primary-black);
    font-weight: 600;
}

.btn-warning:hover {
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-darker) 100%);
    color: var(--white);
    transform: translateY(-2px);
}

/* Bouton danger - Rouge */
.btn-danger {
    background: linear-gradient(135deg, var(--danger-color) 0%, #c23616 100%);
    border-color: var(--danger-color);
    color: var(--white);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c23616 0%, #a5281a 100%);
    border-color: #c23616;
    color: var(--white);
    transform: translateY(-2px);
}

/* =================================================================
   BANDE PUBLICITAIRE DÉFILANTE
   ================================================================= */
.promo-banner {
    background: linear-gradient(90deg, var(--primary-orange), var(--orange-dark));
    color: var(--white);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.promo-content {
    position: relative;
    width: 100%;
}

.promo-text {
    display: inline-block;
    animation: scroll-left 25s linear infinite;
    font-weight: 600;
    font-size: 14px;
}

.promo-item {
    margin-right: 50px;
    display: inline-block;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* =================================================================
   SECTION PRINCIPALE
   ================================================================= */
.main-layout-section {
    background: var(--gray-50);
    padding: 15px 0;
    min-height: 350px;
}

.main-layout-section .container {
    max-width: 1400px;
}

/* Cartes promotionnelles gauche */
.promo-images-left {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promo-card {
    flex: 1;
    min-height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    border: 1px solid var(--gray-200);
}

.promo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.promo-link {
    text-decoration: none;
    color: var(--white);
    display: block;
    height: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.promo-text h3 {
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: var(--white);
}

.promo-text p {
    font-size: 11px;
    margin: 0;
    opacity: 0.9;
    color: var(--white);
}

/* =================================================================
   CARROUSEL PRODUITS
   ================================================================= */
.product-carousel-container {
    position: relative;
    height: 320px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 2px solid var(--primary-orange);
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.product-showcase-image-main {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.product-title-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price-main {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.product-actions-main {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.product-actions-main .btn {
    font-size: 12px;
    padding: 6px 12px;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    z-index: 10;
}

.carousel-btn {
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--primary-orange);
    transform: scale(1.1);
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* =================================================================
   TOP TENDANCES
   ================================================================= */
.top-tendances {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    border: 2px solid var(--primary-orange);
}

.section-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 10px;
    text-align: center;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--primary-orange);
}

.tendance-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 70px;
    margin-bottom: 6px;
    border: 1px solid var(--gray-200);
}

.tendance-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-orange);
}

.tendance-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.tendance-image {
    height: 100%;
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tendance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tendance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 192, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tendance-card:hover .tendance-overlay {
    opacity: 1;
}

.tendance-price {
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
}

/* =================================================================
   SECTION SOUS-CATÉGORIES - DESIGN CIRCULAIRE
   ================================================================= */
.sub-categories-section {
    background: var(--gray-50);
    padding: 50px 0;
}

.sub-categories-section .row {
    margin: 0 -8px;
}

.sub-categories-section .row > * {
    padding: 0 8px;
}

.category-circle-card {
    text-align: center;
    margin-bottom: 15px;
}

.category-circle-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid var(--primary-orange);
    background: var(--white);
}

.category-circle:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: var(--orange-dark);
}

.category-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-circle:hover .category-circle-img {
    transform: scale(1.08);
}

.category-circle-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    color: var(--primary-orange);
    font-size: 36px;
}

.category-circle-title {
    margin-top: 8px;
}

.category-circle-title h6 {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    line-height: 1.2;
    text-align: center;
    max-width: 120px;
    margin: 0 auto;
}

.category-circle-card:hover .category-circle-title h6 {
    color: var(--primary-orange);
}

/* =================================================================
   SECTION PRODUITS - STYLE E-COMMERCE MODERNE
   ================================================================= */
.products-showcase-section {
    background: var(--white);
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-orange);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    text-align: center;
    margin-top: 1rem;
}

/* Carte produit style moderne */
.modern-product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    height: auto;
    box-shadow: var(--shadow-sm);
}

.modern-product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--gray-50);
}

.product-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-product-card:hover .product-main-image {
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary-orange);
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.product-content {
    padding: 15px;
    padding-bottom: 55px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-black);
    margin: 0 0 8px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 36px;
}

.product-name a {
    color: var(--primary-black);
    text-decoration: none;
}

.product-name a:hover {
    color: var(--primary-orange);
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: 16px;
}

.add-to-cart-btn:hover {
    background: var(--orange-dark);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

.btn-disabled {
    background: var(--gray-400) !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.btn-disabled:hover {
    transform: none !important;
    background: var(--gray-400) !important;
    box-shadow: var(--shadow-md) !important;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-400);
    font-size: 40px;
}

/* Bouton "Voir tout" */
.see-all-btn {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, var(--primary-orange), var(--orange-dark));
    border-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.see-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--orange-dark), #CC9900);
    color: var(--white);
    text-decoration: none;
}

/* =================================================================
   COULEURS UTILITAIRES CHARTE GRAPHIQUE
   ================================================================= */
.text-primary { color: var(--primary-orange) !important; }
.text-secondary { color: var(--primary-black) !important; }
.text-orange { color: var(--primary-orange) !important; }
.text-black { color: var(--primary-black) !important; }
.text-white { color: var(--white) !important; }

.bg-primary { background-color: var(--primary-orange) !important; }
.bg-secondary { background-color: var(--primary-black) !important; }
.bg-orange { background-color: var(--primary-orange) !important; }
.bg-black { background-color: var(--primary-black) !important; }
.bg-white { background-color: var(--white) !important; }

.border-primary { border-color: var(--primary-orange) !important; }
.border-secondary { border-color: var(--primary-black) !important; }
.border-orange { border-color: var(--primary-orange) !important; }
.border-black { border-color: var(--primary-black) !important; }

/* Gradients */
.gradient-orange { 
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--orange-dark) 100%);
}

.gradient-black { 
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--black-light) 100%);
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */
@media (max-width: 991.98px) {
    .main-navbar {
        padding: 0.4rem 0;
    }
    
    .brand-logo {
        width: 30px;
        height: 30px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .categories-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .action-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .categories-list {
        display: none;
    }
    
    .search-container {
        display: none;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .main-layout-section {
        padding: 10px 0;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .navbar-actions {
        gap: 0.25rem;
    }
    
    .action-text {
        display: none;
    }
    
    .promo-text {
        font-size: 12px;
    }
    
    .promo-item {
        margin-right: 30px;
    }
    
    .product-carousel-container {
        height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .sub-categories-section {
        padding: 40px 0;
    }
    
    .sub-categories-section .row {
        margin: 0 -6px;
    }
    
    .sub-categories-section .row > * {
        padding: 0 6px;
    }
    
    .category-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
    
    .category-circle-placeholder {
        font-size: 30px;
    }
    
    .category-circle-title h6 {
        font-size: 11px;
        max-width: 100px;
    }
    
    .products-showcase-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .product-content {
        padding: 12px;
        padding-bottom: 50px;
    }
    
    .product-name {
        font-size: 13px;
        max-height: 32px;
        margin-bottom: 6px;
    }
    
    .product-price {
        font-size: 15px;
    }
    
    .add-to-cart-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        bottom: 12px;
        right: 12px;
    }
    
    .featured-badge {
        width: 22px;
        height: 22px;
        font-size: 10px;
        top: 8px;
        left: 8px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .main-layout-section {
        min-height: 250px;
    }
    
    .product-title-main {
        font-size: 16px;
    }
    
    .product-price-main {
        font-size: 18px;
    }
    
    .promo-text h3 {
        font-size: 12px;
    }
    
    .tendance-card {
        height: 60px;
    }
    
    .promo-banner {
        padding: 8px 0;
    }
    
    .product-carousel-container {
        height: 200px;
    }
    
    .sub-categories-section {
        padding: 30px 0;
    }
    
    .sub-categories-section .row {
        margin: 0 -4px;
    }
    
    .sub-categories-section .row > * {
        padding: 0 4px;
    }
    
    .category-circle {
        width: 85px;
        height: 85px;
        margin-bottom: 8px;
    }
    
    .category-circle-placeholder {
        font-size: 24px;
    }
    
    .category-circle-title h6 {
        font-size: 10px;
        max-width: 85px;
    }
    
    .products-showcase-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .product-content {
        padding: 10px;
        padding-bottom: 45px;
    }
    
    .product-name {
        font-size: 12px;
        max-height: 28px;
        margin-bottom: 5px;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .add-to-cart-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
        bottom: 10px;
        right: 10px;
    }
    
    .featured-badge {
        width: 20px;
        height: 20px;
        font-size: 9px;
        top: 6px;
        left: 6px;
    }
    
    .product-placeholder {
        font-size: 30px;
    }
}