/* Libas Lik - Styles */
:root {
    /* Nouvelle palette de couleurs */
    --color-primary: #FC4E00;        /* Orange vibrant */
    --color-primary-rgb: 252, 78, 0;
    --color-secondary: #8BA503;      /* Vert olive */
    --color-secondary-rgb: 139, 165, 3;
    --color-accent: #F3BB00;         /* Jaune doré */
    --color-accent-dark: #EB9F04;    /* Orange foncé */
    --color-success: #8BA503;        /* Vert olive */
    --color-warning: #F3BB00;        /* Jaune doré */
    --color-danger: #FC4E00;         /* Orange vibrant */
    --color-info: #EB9F04;           /* Orange foncé */
    
    /* Couleurs neutres */
    --color-dark: #2c2c2c;
    --color-light: #f8f9fa;
    --color-light-alt: #e9ecef;
    --color-white: #ffffff;
    --color-text: #2c2c2c;
    --color-text-muted: #6c757d;
    --color-text-light: #adb5bd;
    
    /* Espacement et bordures */
    --spacing-unit: 1rem;
    --border-radius: 14px;
    --border-radius-sm: 8px;
    --border-radius-lg: 22px;
    --transition: all 0.3s ease;
    
    /* Ombres */
    --shadow-sm: 0 6px 18px rgba(252, 78, 0, 0.08);
    --shadow-md: 0 18px 34px rgba(252, 78, 0, 0.12);
    --shadow-lg: 0 30px 60px rgba(252, 78, 0, 0.18);
    --glass-background: rgba(44, 44, 44, 0.75);
}

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

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background: radial-gradient(circle at top left, rgba(252, 78, 0, 0.08), transparent 55%),
        radial-gradient(circle at bottom right, rgba(243, 187, 0, 0.12), transparent 45%),
        radial-gradient(circle at center, rgba(139, 165, 3, 0.06), transparent 65%),
        #ffffff;
    min-height: 100vh;
    -webkit-tap-highlight-color: rgba(252, 78, 0, 0.1);
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    position: relative;
    width: 100vw;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 78, 0, 0.03), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.page-content {
    position: relative;
    z-index: 1;
    padding-top: 1rem;
}

.page-content .container {
    position: relative;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(18px);
    box-shadow: 0 4px 20px rgba(252, 78, 0, 0.15);
    border-bottom: 2px solid rgba(252, 78, 0, 0.2);
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(252, 78, 0, 0.12), rgba(243, 187, 0, 0.08) 50%, transparent 100%);
    opacity: 0.8;
    pointer-events: none;
}

.navbar .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 0.85rem 1rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
}

.brand-link {
    display: inline-flex;
    align-items: center;
/*gap: 0.75rem;*/
    text-decoration: none;
}

.brand-link span {
    color: var(--color-white);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1.2;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slogan {
    color: rgba(0, 0, 0, 0.75);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.16);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.75rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 0.65rem 1rem;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
    white-space: nowrap;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--color-primary);
    background: rgba(245, 203, 92, 0.95);
    box-shadow: 0 10px 20px rgba(245, 203, 92, 0.25);
}

.nav-menu .btn-primary {
    border-radius: 999px;
    padding: 0.65rem 1.6rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-secondary);
    font-weight: 600;
    box-shadow: 0 14px 24px rgba(235, 159, 4, 0.25);
}

.nav-menu .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(235, 159, 4, 0.3);
}

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

.navbar.is-scrolled {
    background: rgba(36, 36, 35, 0.92);
    box-shadow: var(--shadow-md);
}

.navbar.is-scrolled::before {
    opacity: 0.65;
}

.btn-link {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    padding: 0.65rem 1rem;
    text-decoration: none;
    font-size: inherit;
    border-radius: var(--border-radius-sm);
}

.btn-link:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.08);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    font-weight: 500;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(252, 78, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 78, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(139, 165, 3, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 165, 3, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333, #a71d2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: var(--border-radius);
}

.alert-success {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-success));
    color: var(--color-white);
    border-left: 4px solid var(--color-accent);
}

.alert-error {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--color-white);
    border-left: 4px solid var(--color-primary);
}

/* Hero Section */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.mt-lg {
    margin-top: 3rem;
}

.mt-md {
    margin-top: 1.5rem;
}

.featured-products,
section {
    text-align: center;
    padding: 1rem 0;
}

.featured-products .container,
section .container {
    width: 100%;
    max-width: 1200px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0 6rem;
    background: transparent;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.55;
    z-index: -1;
}

.hero::before {
    top: -120px;
    right: -160px;
    background: radial-gradient(circle, rgba(245, 203, 92, 0.6), rgba(235, 159, 4, 0));
}

.hero::after {
    bottom: -160px;
    left: -140px;
    background: radial-gradient(circle, rgba(139, 165, 3, 0.5), rgba(139, 165, 3, 0));
}

.hero-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto 2.5rem auto;
    background: transparent;
    mix-blend-mode: multiply;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(245, 203, 92, 0.15);
    color: var(--color-secondary);
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 12px 24px rgba(245, 203, 92, 0.25);
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--color-secondary);
    padding: 0 1rem;
    width: 100%;
}

.hero-gradient {
    background: linear-gradient(135deg, var(--color-secondary), rgba(36, 36, 35, 0.75));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 520px;
    width: 100%;
    color: var(--color-text-muted);
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
    background: transparent;
}

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

.btn-ghost {
    border: 1px solid rgba(51, 53, 51, 0.18);
    color: var(--color-secondary);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 0.65rem 1.6rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-ghost:hover {
    background: rgba(36, 36, 35, 0.9);
    color: var(--color-white);
    border-color: transparent;
    box-shadow: 0 16px 28px rgba(36, 36, 35, 0.18);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 600px;
    width: 100%;
}

.metric-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    text-align: center;
}

.metric-card strong {
    display: block;
    font-size: 1.4rem;
    color: var(--color-secondary);
}

.metric-card span {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-showcase {
    display: none;
}

.hero-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(245, 203, 92, 0.2);
    pointer-events: none;
}

.showcase-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(51, 53, 51, 0.07);
    color: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.chip.accent {
    background: rgba(245, 203, 92, 0.28);
}

.showcase-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1rem;
}

.showcase-card h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--color-secondary);
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    width: 100%;
    max-width: 100%;
    justify-items: center;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
    width: 100%;
    max-width: 300px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--color-light-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
}

.product-info {
    padding: 1.25rem;
}

.product-name {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-accent-dark);
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.star {
    color: #ddd;
    font-size: 1.2rem;
}

.star.filled {
    color: var(--color-accent);
}

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

/* Sections */
.section-title {
    font-size: 2rem;
    margin: 2rem auto;
    text-align: center;
    max-width: 800px;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    max-width: 620px;
    margin: 0 auto 2.5rem;
}

.section-header {
    text-align: center;
    margin: 0 auto 3.5rem auto;
    max-width: 900px;
    padding: 0 1rem;
}

.section-header .section-title {
    margin-bottom: 0.75rem;
}

.section-description {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.featured-products {
    padding: 5rem 0;
    position: relative;
}

.guinea-section {
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.guinea-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(252, 78, 0, 0.08), rgba(243, 187, 0, 0.1));
    z-index: -1;
}

/* Product Detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.product-images .main-image img {
    width: 100%;
    border-radius: var(--border-radius);
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(252, 78, 0, 0.5);
}

.product-info-detail h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-price-large {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.product-description,
.product-vendor {
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

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

.vendor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(245, 203, 92, 0.26);
    color: var(--color-secondary);
    font-size: 0.85rem;
    font-weight: 600;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.product-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.highlight-card h5 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: var(--color-secondary);
}

.highlight-card span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* Forms */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Checkbox Styling */
.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
    accent-color: var(--color-primary);
    width: 18px;
    height: 18px;
    min-height: auto;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

/* Custom Checkbox with Icon */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent-dark);
    border-radius: 4px;
    background: var(--color-white);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    margin: 0;
    min-height: auto;
}

.checkbox-label input[type="checkbox"]:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(252, 78, 0, 0.1);
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label input[type="checkbox"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(252, 78, 0, 0.15);
}

.checkbox-label span {
    font-size: 0.95rem;
    color: var(--color-text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.92);
    transition: var(--transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 44px;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    cursor: pointer;
}

.form-group select optgroup {
    font-weight: 600;
    color: var(--color-secondary);
    padding: 0.5rem 0;
}

.form-group select option {
    padding: 0.5rem;
    font-weight: normal;
    color: var(--color-text);
}

.form-group textarea {
    resize: vertical;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.order-form h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(235, 159, 4, 0.6);
    box-shadow: 0 0 0 4px rgba(235, 159, 4, 0.12);
    outline: none;
}

.login-prompt {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.75rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.login-prompt p {
    font-weight: 600;
    color: var(--color-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: block;
}

/* Auth */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 3rem 0;
}

.auth-card {
    background: var(--color-white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
}

.auth-card h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-links {
    margin-top: 2rem;
    text-align: center;
}

.auth-links a {
    color: var(--color-accent-dark);
    text-decoration: none;
}

/* Role Selector */
.role-selector {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.role-selector label {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    user-select: none;
    min-height: 50px;
    text-align: center;
}

.role-selector label:hover {
    border-color: rgba(243, 187, 0, 0.5);
    background: rgba(243, 187, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 187, 0, 0.25);
}

.role-selector label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    margin: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.role-selector label:has(input[type="radio"]:checked) {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(252, 78, 0, 0.15), rgba(243, 187, 0, 0.1));
    box-shadow: 0 4px 15px rgba(252, 78, 0, 0.25);
    transform: translateY(-2px);
}

.role-selector label:has(input[type="radio"]:checked) span {
    color: var(--color-primary);
    font-weight: 600;
}

.role-selector label:has(input[type="radio"]:focus) {
    outline: 2px solid rgba(252, 78, 0, 0.4);
    outline-offset: 2px;
}

.role-selector label span {
    pointer-events: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    z-index: 0;
}

/* Orders */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.82);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.feature-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

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

.feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 203, 92, 0.18);
    color: var(--color-secondary);
    font-weight: 700;
    margin: 0 auto 1rem auto;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

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

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(51, 53, 51, 0.08);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pill.accent {
    background: rgba(245, 203, 92, 0.2);
    color: var(--color-secondary);
}

.split-cta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
    padding: 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.split-cta-card {
    position: relative;
    background: rgba(36, 36, 35, 0.92);
    color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.split-cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(245, 203, 92, 0.25), transparent 55%);
    pointer-events: none;
}

.split-cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.split-cta-card p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2rem;
    text-align: center;
}

.cta-list {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 500px;
    text-align: left;
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    color: var(--color-dark);
    font-weight: 500;
    background: rgba(243, 187, 0, 0.15);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    border-left: 3px solid var(--color-accent);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
}

.cta-link:hover {
    color: var(--color-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 600px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(245, 203, 92, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-secondary);
}

.order-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.order-status {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 500;
}

.status-pending {
    background: linear-gradient(135deg, var(--color-accent), var(--color-warning));
    color: #2c2c2c;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(243, 187, 0, 0.3);
}

.status-confirmed {
    background: linear-gradient(135deg, var(--color-success), #a3c309);
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(139, 165, 3, 0.3);
}

.status-in_progress {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(252, 78, 0, 0.3);
}

.status-cancelled {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.status-completed {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--color-white);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(36, 36, 35, 0.95), rgba(36, 36, 35, 0.98));
    color: var(--color-white);
    padding: 4rem 0 1.5rem;
    margin-top: 6rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--color-light);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--color-accent);
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.footer-newsletter input {
    padding: 0.75rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    backdrop-filter: blur(6px);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.footer-newsletter input:focus {
    outline: none;
    border-color: rgba(245, 203, 92, 0.6);
    box-shadow: 0 0 0 3px rgba(245, 203, 92, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Pagination */
.pagination {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.pagination ul {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    background: var(--color-white);
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--border-radius);
}

.pagination a:hover,
.pagination .active a {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* Page Title */
.page-title {
    font-size: 2.5rem;
    margin: 3rem 0 2.5rem;
    text-align: center;
}

.page-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
    max-width: 100%;
}

.products-page {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.filters-panel {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 1.25rem;
    position: sticky;
    top: 85px;
    align-self: flex-start;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10;
    width: 100%;
}

.filters-panel::-webkit-scrollbar {
    width: 6px;
}

.filters-panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.filters-panel::-webkit-scrollbar-thumb {
    background: var(--color-accent-dark);
    border-radius: 10px;
}

.filters-panel::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

.filters-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.filters-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.products-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 0;
    flex: 1;
    width: 100%;
    overflow: hidden;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 500;
    color: var(--color-secondary);
}

/* About Page Styles */
.about-hero {
    padding: 6rem 0 5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(243, 187, 0, 0.08), rgba(252, 78, 0, 0.06));
}

.about-hero .hero-title {
    margin: 1.5rem 0 1rem;
}

.about-hero .hero-description {
    max-width: 700px;
    margin: 0 auto;
}

.about-mission {
    padding: 6rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.mission-visual {
    background: linear-gradient(135deg, rgba(36, 36, 35, 0.95), rgba(36, 36, 35, 0.98));
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(243, 187, 0, 0.2), transparent 60%);
    pointer-events: none;
}

.mission-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 2.5rem;
}

.mission-badge h3 {
    font-size: 1.8rem;
    color: var(--color-white);
}

.mission-statement {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.mission-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-text-muted);
    font-weight: 500;
}

.about-slogan {
    padding: 7rem 0;
    background: linear-gradient(135deg, rgba(139, 165, 3, 0.08), rgba(243, 187, 0, 0.1));
    position: relative;
    overflow: hidden;
}

.slogan-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.slogan-quote {
    font-size: 6rem;
    font-weight: 700;
    color: rgba(243, 187, 0, 0.3);
    line-height: 1;
    display: block;
    margin-bottom: -2rem;
}

.slogan-large {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.slogan-explanation {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.about-values {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.value-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243, 187, 0, 0.4);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

.about-story {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(252, 78, 0, 0.05), rgba(243, 187, 0, 0.08));
}

.story-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-content p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.story-highlights {
    display: grid;
    gap: 2rem;
}

.highlight-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-left: 4px solid var(--color-accent);
}

.highlight-year {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: var(--color-text-muted);
    font-weight: 500;
}

.about-team {
    padding: 6rem 0;
}

.team-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.team-card {
    background: linear-gradient(135deg, rgba(36, 36, 35, 0.95), rgba(36, 36, 35, 0.98));
    color: var(--color-white);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(243, 187, 0, 0.2), transparent 70%);
    pointer-events: none;
}

.team-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    position: relative;
}

.team-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
}

.team-card .hero-buttons,
.split-cta-card .hero-buttons {
    justify-content: center;
    position: relative;
    width: 100%;
}

/* Dashboard Styles */
.dashboard-hero {
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(243, 187, 0, 0.08), rgba(252, 78, 0, 0.06));
}

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

.dashboard-welcome .hero-title {
    margin: 0.5rem 0;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.dashboard-welcome .hero-description {
    margin: 0;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card-modern {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.stat-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(243, 187, 0, 0.15), rgba(252, 78, 0, 0.1));
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin: 0;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1;
    margin: 0;
}

.vendeur-dashboard {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0;
}

.dashboard-section {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.section-header-dash {
    margin-bottom: 2.5rem;
}

.section-title-dash {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.section-subtitle-dash {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin: 0;
}

.products-grid-dash {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card-dash {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card-dash:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(243, 187, 0, 0.3);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-light-alt);
}

.product-image-wrapper .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-text-light);
}

.product-image-placeholder span {
    font-size: 3rem;
}

.product-status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-status-badge.status-pending {
    background: linear-gradient(135deg, var(--color-accent), var(--color-warning));
    color: var(--color-dark);
}

.product-status-badge.status-approved {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--color-white);
}

.product-status-badge.status-rejected {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--color-white);
}

.product-info-dash {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.product-name-dash {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin: 0;
    font-weight: 600;
}

.product-price-dash {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent-dark);
    margin: 0;
}

.product-actions-dash {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.orders-list-dash {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card-dash {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
}

.order-card-dash:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(243, 187, 0, 0.3);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.order-main-info {
    flex: 1;
}

.order-title {
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin: 0 0 0.5rem 0;
}

.order-product-name {
    font-weight: 600;
    color: var(--color-text);
    margin: 0.25rem 0;
}

.order-client-name,
.order-date {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0.25rem 0;
}

.order-status-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.order-actions-wrapper {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.status-update-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.status-select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-sm);
    background: var(--color-white);
    font-size: 0.875rem;
    color: var(--color-text);
    cursor: pointer;
    transition: var(--transition);
}

.status-select:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(243, 187, 0, 0.2);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius);
    grid-column: 1 / -1;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.empty-text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Client Orders Page */
.orders-list-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3.5rem 0;
}

.order-card-modern {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.order-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.order-header-modern {
    background: linear-gradient(135deg, rgba(243, 187, 0, 0.08), rgba(252, 78, 0, 0.05));
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.order-info-modern {
    flex: 1;
}

.order-title-modern {
    margin: 0;
    font-size: 1.4rem;
}

.order-title-modern a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.order-title-modern a:hover {
    color: var(--color-primary);
}

.order-date-modern {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0.25rem 0 0 0;
}

.order-body-modern {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.order-product-modern {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex: 1;
}

.order-product-image-modern {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.order-product-image-placeholder {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-alt);
    border-radius: var(--border-radius);
    font-size: 2.5rem;
    flex-shrink: 0;
}

.order-product-info-modern {
    flex: 1;
}

.order-product-name-modern {
    font-size: 1.2rem;
    color: var(--color-secondary);
    margin: 0 0 0.75rem 0;
    font-weight: 600;
}

.order-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.price-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.price-line span {
    font-weight: 600;
    color: var(--color-text);
}

.price-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.price-total span {
    font-weight: 700;
    color: var(--color-accent-dark);
}

.empty-state-large {
    text-align: center;
    padding: 5rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-lg);
}

.empty-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.empty-title-large {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.empty-text-large {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Order Detail Page */
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--color-primary);
}

.order-detail-modern {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 0;
}

.order-section-modern {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.section-header-simple {
    margin-bottom: 1.5rem;
}

.section-title-simple {
    font-size: 1.5rem;
    color: var(--color-secondary);
    margin: 0;
}

.order-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(243, 187, 0, 0.05), rgba(252, 78, 0, 0.03));
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-accent);
}

.info-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
    margin: 0;
}

.mt-sm {
    margin-top: 0.75rem;
}

.order-product-detail-modern {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.order-product-image-large {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.order-product-image-placeholder-large {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-light-alt);
    border-radius: var(--border-radius);
    font-size: 4rem;
    flex-shrink: 0;
}

.order-product-content {
    flex: 1;
}

.order-product-title {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin: 0 0 1rem 0;
}

.order-product-description {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.financial-details {
    background: linear-gradient(135deg, rgba(243, 187, 0, 0.05), rgba(252, 78, 0, 0.03));
    padding: 2rem;
    border-radius: var(--border-radius);
}

.financial-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.financial-row span {
    color: var(--color-text-muted);
}

.financial-row strong {
    color: var(--color-text);
}

.financial-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 1rem 0;
}

.financial-total {
    font-size: 1.4rem;
    padding-top: 1rem;
}

.text-accent {
    color: var(--color-accent) !important;
}

.text-primary {
    color: var(--color-primary) !important;
    font-size: 1.6rem !important;
}

.client-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.client-info-item {
    background: rgba(243, 187, 0, 0.05);
    padding: 1.25rem;
    border-radius: var(--border-radius);
}

.client-info-item.full-width {
    grid-column: 1 / -1;
}

.client-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.client-value {
    font-size: 1.05rem;
    color: var(--color-text);
    font-weight: 600;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        
        padding: 0 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .split-cta {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        background: rgba(36, 36, 35, 0.94);
        padding: 1.25rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
        min-width: 240px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        z-index: 100;
    }

    .nav-menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu .btn-link,
    .nav-menu a {
        width: 100%;
    }

    .brand-link span {
        font-size: 1.5rem;
    }

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

    .hero-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .hero-visual {
        display: none;
    }

    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-copy {
        padding-top: 0;
    }

    .hero-image {
        max-height: 300px;
        margin-bottom: 2rem;
    }

    .hero-showcase {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-visual {
        justify-content: center;
    }


    .products-page {
        grid-template-columns: 1fr;
    }

    .filters-panel {
        display: none;
    }

    .filters-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mission-grid,
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .about-mission,
    .about-values,
    .about-story,
    .about-team {
        padding: 3rem 0;
    }

    .about-slogan {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .navbar .container {
        padding: 0.85rem 1rem;
    }

    .brand-link span {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .slogan {
        display: none;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .hero {
        padding: 2rem 0 3rem;
    }

    .hero-container {
        gap: 2rem;
    }

    .hero-image {
        max-height: 250px;
        margin-bottom: 1.5rem;
        width: 100%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
        padding: 0 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-ghost {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
        padding: 0 1rem;
        width: 100%;
    }

    .metric-card {
        padding: 1.25rem;
        width: 100%;
    }
    
    .split-cta {
        grid-template-columns: 1fr;
        padding: 2rem 0;
        gap: 2rem;
    }
    
    .split-cta-card {
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        margin: 0 auto;
    }

    .section-title {
        font-size: 1.5rem;
        margin: 1.5rem 0;
    }

    .page-title {
        font-size: 1.8rem;
        margin: 2rem 0 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin: 2rem 0;
    }

    .product-image,
    .product-image-placeholder {
        height: 200px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
    }

    .thumbnail-images {
        flex-wrap: wrap;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .product-info-detail h1 {
        font-size: 1.5rem;
    }

    .product-price-large {
        font-size: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .auth-card {
        padding: 2rem 1.5rem;
    }

    .role-selector {
        flex-direction: column;
        gap: 0.75rem;
    }

    .role-selector label {
        min-height: 48px;
        padding: 0.875rem 1.25rem;
    }

    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .split-cta {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .split-cta-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }

    .split-cta-card h3,
    .split-cta-card h2 {
        font-size: 1.5rem;
    }

    .filters-actions {
        flex-direction: column;
    }

    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }

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

    .footer-newsletter {
        grid-template-columns: 1fr;
    }

    /* About Page */
    .about-hero {
        padding: 3rem 0 2.5rem;
    }

    .about-hero .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .about-mission,
    .about-values,
    .about-story,
    .about-team {
        padding: 3rem 0;
    }

    .about-slogan {
        padding: 3.5rem 0;
    }

    .slogan-quote {
        font-size: 3rem;
        margin-bottom: -1rem;
    }

    .slogan-large {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .slogan-explanation {
        font-size: 1rem;
    }

    .mission-visual,
    .team-card {
        padding: 2rem 1.5rem;
    }

    .mission-badge h3 {
        font-size: 1.4rem;
    }

    .mission-statement {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-icon {
        font-size: 2.5rem;
    }

    .value-card h3 {
        font-size: 1.25rem;
    }

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

    .highlight-year {
        font-size: 2rem;
    }

    .team-card h3 {
        font-size: 1.5rem;
    }

    .team-card p {
        font-size: 1rem;
    }

    .team-card .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .team-card .hero-buttons .btn {
        width: 100%;
    }

    /* Dashboard */
    .dashboard-hero {
        padding: 2.5rem 0 2rem;
    }

    .dashboard-welcome {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .dashboard-welcome .btn {
        width: 100%;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-card-modern {
        padding: 1.75rem;
    }

    .stat-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .vendeur-dashboard {
        gap: 2.5rem;
        padding: 2.5rem 0;
    }

    .dashboard-section {
        padding: 1.5rem;
    }

    .section-title-dash {
        font-size: 1.4rem;
    }

    .section-subtitle-dash {
        font-size: 0.9rem;
    }

    .products-grid-dash {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .product-info-dash {
        padding: 1rem;
    }

    .product-name-dash {
        font-size: 1rem;
    }

    .product-price-dash {
        font-size: 1.15rem;
    }

    .product-actions-dash {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-actions-dash .btn {
        width: 100%;
    }

    /* Orders */
    .orders-list-dash {
        gap: 1.25rem;
    }

    .order-card-dash {
        padding: 1.25rem;
    }

    .order-card-header,
    .order-header-modern,
    .order-body-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .order-title {
        font-size: 1.15rem;
    }

    .order-status-wrapper {
        align-items: flex-start;
        width: 100%;
    }

    .order-status {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .order-actions-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .order-actions-wrapper form {
        width: 100%;
    }

    .order-actions-wrapper .btn {
        width: 100%;
    }

    .status-update-form {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .status-select,
    .status-update-form .btn {
        width: 100%;
    }

    .orders-list-modern {
        gap: 1.25rem;
        padding: 2rem 0;
    }

    .order-header-modern {
        padding: 1.25rem;
    }

    .order-title-modern {
        font-size: 1.15rem;
    }

    .order-body-modern {
        padding: 1.25rem;
    }

    .order-product-modern {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .order-product-image-modern,
    .order-product-image-placeholder {
        width: 100%;
        height: 180px;
    }

    .order-product-name-modern {
        font-size: 1.05rem;
    }

    .order-product-detail-modern {
        flex-direction: column;
    }

    .order-product-image-large,
    .order-product-image-placeholder-large {
        width: 100%;
        height: 220px;
    }

    .order-product-title {
        font-size: 1.4rem;
    }

    .client-info-grid,
    .order-info-cards {
        grid-template-columns: 1fr;
    }

    .info-card,
    .client-info-item {
        padding: 1rem;
    }

    .financial-details {
        padding: 1.5rem;
    }

    .financial-row {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }

    .financial-total {
        font-size: 1.2rem;
    }

    .text-primary {
        font-size: 1.3rem !important;
    }

    .empty-state {
        padding: 3rem 1.5rem;
    }

    .empty-icon {
        font-size: 3rem;
    }

    .empty-title {
        font-size: 1.25rem;
    }

    .empty-state-large {
        padding: 3rem 1.5rem;
    }

    .empty-icon-large {
        font-size: 4rem;
    }

    .empty-title-large {
        font-size: 1.5rem;
    }

    .empty-text-large {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .navbar .container {
        padding: 0.75rem;
    }

    .brand-link span {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .metric-card {
        padding: 1rem;
    }

    .metric-card strong {
        font-size: 1.2rem;
    }

    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-sm {
        padding: 0.45rem 0.85rem;
        font-size: 0.825rem;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .section-title-dash {
        font-size: 1.25rem;
    }

    .order-title {
        font-size: 1rem;
    }

    .dashboard-section {
        padding: 1.25rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .slogan-large {
        font-size: clamp(1.35rem, 5vw, 1.75rem);
    }

    .value-card h3 {
        font-size: 1.15rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 360px) {
    .brand-link span {
        font-size: 1rem;
    }

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

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

