/* ═══════════════════════════════════════════════════════════
   MAAC — Manufacture d'Arts et d'Artisanat Congolais
   Stylesheet principal - Compiled CSS
   ═════════════════════════════════════════════════════════ */

:root {
    --green-primary: #1B5E20;
    --amber: #F8B803;
    --text-dark: #1B1B18;
    --text-light: #706f6c;
    --bg-light: #FAFAF8;
    --border-light: #e3e3e0;

    /* Aliases utilisés par plusieurs pages (admin + pages inline) */
    --green: var(--green-primary);
    --green-medium: var(--green-primary);
    --green-light: #2B7A47;
    --green-pale: #EAF3EC;
    --green-dark: #133E23;

    --amber-light: #F5B932;
    --amber-pale: #FFF8E6;

    --brown: #7A5230;
    --brown-light: #A06D3F;
    --brown-dark: #5A3A1E;
    --brown-pale: #F5EDE4;

    --white: #FFFFFF;
    --off-white: var(--bg-light);

    --text: var(--text-dark);
    --text-muted: var(--text-light);
    --text-medium: #3f3f3a;

    --border: var(--border-light);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --cream: #F4F1EA;
    --font-head: 'Century Gothic', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Century Gothic', 'Avenir Next', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

/* ═════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════ */

.maac-navbar {
    background: white;
    border-bottom: 1px solid var(--border-light);
    padding: 1.25rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.3s ease-in-out;
}

.maac-navbar.navbar-hidden {
    transform: translateY(-100%);
}

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 70px; /* Account for fixed navbar */
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
}

.nav-logo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-name {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--green-primary);
}

.brand-tagline {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex: 1;
    max-width: 600px;
}

.nav-link {
    color: var(--text-dark);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-link:hover,
.nav-dropdown.active .nav-link {
    color: var(--green-primary);
}

.nav-link-boutique {
    color: white;
    background: var(--green-primary);
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    transition: all 0.2s;
    text-decoration: none;
    cursor: pointer;
    font-weight: 500;
}

.nav-link-boutique:hover {
    background: #0D3F1F;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

/* Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-top: 0.5rem;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    z-index: 200;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0.75rem;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-dropdown-menu a:first-child {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.nav-dropdown-menu a:last-child {
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--green-primary);
    border-left-color: var(--green-primary);
    padding-left: 1.5rem;
}

.chevron {
    font-size: 0.65rem;
    transition: transform 0.2s;
    margin-left: 0.35rem;
}

.nav-dropdown.active .chevron {
    transform: rotate(180deg);
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.nav-icon-btn:hover {
    background: var(--bg-light);
    border-color: var(--green-primary);
    color: var(--green-primary);
}

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

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.4rem;
    padding: 0;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 2px;
}

/* ═════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════ */

.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    max-width: 700px;
    padding: 0 2rem;
}

.hero-tag {
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-head);
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-green {
    background: var(--green-primary);
    color: white;
}

.btn-green:hover {
    background: #0D3F1F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.btn-brown {
    background: #8B6F47;
    color: white;
}

.btn-brown:hover {
    background: #6B5838;
}

.btn-outline-green {
    border: 1px solid var(--green-primary);
    color: var(--green-primary);
    background: transparent;
}

.btn-outline-green:hover {
    background: rgba(27, 94, 32, 0.05);
}

/* ═════════════════════════════════════════════════════════
   BADGES
   ════════════════════════════════════════════════════════ */

.badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: var(--bg-light);
    color: var(--text-dark);
}

.badge-green {
    background: rgba(27, 94, 32, 0.1);
    color: var(--green-primary);
}

.badge-amber {
    background: rgba(248, 184, 3, 0.1);
    color: #C8922A;
}

.badge-beige {
    background: #F5EBE0;
    color: var(--text-dark);
}

/* ═════════════════════════════════════════════════════════
   SECTIONS & CONTENT
   ════════════════════════════════════════════════════════ */

.section {
    padding: 4rem 5%;
}

.section-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-head);
}

.about-hero {
    padding: 4rem 5%;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.05), rgba(248, 184, 3, 0.05));
}

.about-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-head);
}

.about-hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

/* ═════════════════════════════════════════════════════════
   MISSION GRID
   ════════════════════════════════════════════════════════ */

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 3rem auto;
    padding: 0 5%;
}

.mission-card {
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.mission-card:hover {
    border-color: var(--green-primary);
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.1);
}

.mission-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mission-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

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

/* ═════════════════════════════════════════════════════════
   SHOP
   ════════════════════════════════════════════════════════ */

.shop-hero {
    background: linear-gradient(135deg, var(--green-primary), #0D3F1F);
    color: white;
    padding: 3rem 5%;
}

.shop-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.shop-hero-inner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1rem 0;
    font-family: var(--font-head);
}

.shop-hero-inner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.shop-filters {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-block {
    margin-bottom: 1.5rem;
}

.filter-block:not(:last-child) {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}

.filter-title {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.filter-option input {
    cursor: pointer;
}

/* ═════════════════════════════════════════════════════════
   BLOG
   ════════════════════════════════════════════════════════ */

.blog-hero {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.05), rgba(248, 184, 3, 0.05));
    padding: 3rem 5%;
}

.blog-hero h1 {
    color: var(--green-primary);
}

/* ═════════════════════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════════════════════ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 3rem auto;
    padding: 0 5%;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(27, 94, 32, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-detail-value {
    font-weight: 500;
}

/* ═════════════════════════════════════════════════════════
   DASHBOARD
   ════════════════════════════════════════════════════════ */

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.dashboard-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.dashboard-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.dashboard-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.dashboard-card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-card-title {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ═════════════════════════════════════════════════════════
   FORMS
   ════════════════════════════════════════════════════════ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

/* ═════════════════════════════════════════════════════════
   BREADCRUMB
   ════════════════════════════════════════════════════════ */

.breadcrumb-bar {
    background: var(--bg-light);
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-inner {
    max-width: 1280px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb-inner a {
    color: var(--green-primary);
    text-decoration: none;
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}

.sep {
    margin: 0 0.5rem;
}

/* ═════════════════════════════════════════════════════════
   PRODUCT
   ════════════════════════════════════════════════════════ */

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 5%;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.product-gallery-main {
    width: 100%;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.product-thumb {
    display: block;
    width: 100%;
    border: 2px solid var(--border-light);
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
    background: none;
    padding: 0;
    font: inherit;
    text-align: left;
}

.product-thumb.active {
    border-color: var(--green-primary);
}

.product-thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.product-info-category {
    display: inline-block;
    background: rgba(27, 94, 32, 0.1);
    color: var(--green-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-info-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    font-family: var(--font-head);
}

/* ═════════════════════════════════════════════════════════
   CART
   ════════════════════════════════════════════════════════ */

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: var(--bg-light);
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-name {
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cart-item-artisan {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--green-primary);
    font-size: 1.1rem;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    width: fit-content;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-light);
    transition: color 0.2s;
}

.qty-btn:hover {
    color: var(--green-primary);
}

.qty-value {
    width: 50px;
    border: none;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    text-align: center;
    font-size: 0.95rem;
}

.qty-value:focus {
    outline: none;
}

/* ═════════════════════════════════════════════════════════
   STATS CARDS
   ════════════════════════════════════════════════════════ */

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 1.5rem;
}

.stat-card-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.stat-card-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.stat-card-change {
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-card-change.up {
    color: #4CAF50;
}

.stat-card-change.down {
    color: #f44336;
}

/* ═════════════════════════════════════════════════════════
   DATA TABLES
   ════════════════════════════════════════════════════════ */

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead {
    background: var(--bg-light);
}

.data-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.data-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.95rem;
}

.data-table tbody tr:hover {
    background: var(--bg-light);
}

/* ═════════════════════════════════════════════════════════
   FOOTER - Improved Layout & Organization
   ════════════════════════════════════════════════════════ */

.maac-footer {
    background: linear-gradient(135deg, var(--text-dark) 0%, #0D0D0B 100%);
    color: white;
    padding: 3.5rem 5%;
    margin-top: 4rem;
    border-top: 1px solid rgba(248, 184, 3, 0.2);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #F8B803;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-col a:hover {
    color: #F8B803;
    padding-left: 0.25rem;
}

/* Footer Brand Column */
.footer-col-brand {
    grid-column: 1;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: #F8B803;
}

.footer-brand-tagline {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(248, 184, 3, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F8B803;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: #F8B803;
    color: var(--text-dark);
    border-color: #F8B803;
    transform: translateY(-3px);
}

/* Contact List */
.contact-list li {
    margin-bottom: 1.25rem;
}

.contact-list strong {
    color: #F8B803;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.35rem;
}

.footer-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #F8B803;
    color: var(--text-dark);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-decoration: none;
}

.footer-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 184, 3, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-left p {
    margin: 0.25rem 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-right a:hover {
    color: #F8B803;
}

.sep {
    color: rgba(255, 255, 255, 0.3);
}

/* ═════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .nav-inner {
        flex-wrap: wrap;
    }

    .nav-logo {
        order: 1;
        flex-shrink: 0;
    }

    .nav-logo-text {
        display: none;
    }

    .nav-logo-icon {
        width: 40px;
        height: 40px;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: white;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0;
        box-shadow: none;
        max-width: none;
        margin: 0;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        order: 3;
        flex-basis: 100%;
    }

    .nav-inner.mobile-menu-open .nav-links {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--border-light);
        display: block;
    }

    .nav-link-boutique {
        margin: 1rem;
        text-align: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        background: var(--bg-light);
        border: none;
        box-shadow: none;
        margin: 0;
        min-width: 100%;
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        transition: all 0.3s;
        border-radius: 0;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        visibility: visible;
        pointer-events: auto;
        max-height: 500px;
    }

    .nav-dropdown-menu a {
        padding: 0.6rem 2rem;
    }

    .nav-actions {
        order: 2;
        flex-shrink: 0;
    }

    .nav-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-right {
        justify-content: center;
    }

    .hero {
        height: 300px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .product-detail-grid,
    .contact-grid,
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-filters {
        position: static;
    }

    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

    .nav-logo {
        flex-shrink: 0;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-icon-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer-col h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }
}
