/* Variables de couleur définies dans /themes/*.css */
/* Chargé dynamiquement selon le thème choisi */

:root {
    /* Fonts */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Couleurs fixes (non thème) */
    --color-white: #FFFFFF;
    --color-bg-dark: #2C3E50;
    
    /* Shadows - utilisent les couleurs du thème */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.header-pattern {
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-secondary) 50%, 
        var(--color-primary) 100%);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-subtitle {
    display: block;
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-secondary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(44, 24, 16, 0.3) 100%);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    color: var(--color-white);
    animation: fadeInUp 1s ease-out;
}

.hero-ornament {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 10 L60 40 L90 50 L60 60 L50 90 L40 60 L10 50 L40 40 Z" fill="%23D4AF37" opacity="0.8"/></svg>') center/contain no-repeat;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--color-white);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-secondary);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--color-primary);
}

/* Presentation */
.presentation {
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-white) 100%);
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.ornament-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.ornament-line::before {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.ornament-line::after {
    content: '✦';
    color: var(--color-primary);
    font-size: 0.85rem;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-style: italic;
    white-space: pre-line;
    border-left: 3px solid var(--color-primary);
    padding-left: 20px;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--color-white);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.feature-body {
    flex: 1;
}

.feature h3 {
    font-family: var(--font-display);
    color: var(--color-secondary);
    margin-bottom: 4px;
    font-size: 1.15rem;
    font-weight: 700;
}

.feature p {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.5;
}

.presentation-image {
    position: relative;
}

.image-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.frame-ornament {
    position: absolute;
    inset: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

/* Menu Section */
.menu-section {
    background: var(--color-white);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--color-border);
    background: transparent;
    color: var(--color-text);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-bg-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.menu-item {
    background: var(--color-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.menu-item-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.menu-item-price {
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 700;
}

.menu-item-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.menu-item-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--color-primary);
    color: var(--color-bg-dark);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.add-to-cart {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: var(--color-primary);
    color: var(--color-bg-dark);
}

.menu-complet-link {
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: var(--color-white);
    margin: 5% auto;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close {
    color: var(--color-text-light);
    float: right;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--color-secondary);
}

.menu-complet-text {
    white-space: pre-wrap;
    line-height: 1.8;
    color: var(--color-text);
    font-size: 1.05rem;
}

/* Livre d'Or */
.livre-or-section {
    background: var(--color-white);
}

.livre-or-form {
    max-width: 600px;
    margin: 0 auto 60px;
    padding: 40px;
    background: var(--color-bg);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.livre-or-form h3 {
    font-family: var(--font-display);
    color: var(--color-secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.livre-or-entries {
    display: grid;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.lor-entry {
    background: var(--color-bg);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.lor-entry-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.lor-entry-name {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.lor-entry-date {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.lor-entry-message {
    color: var(--color-text);
    line-height: 1.7;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-secondary);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

/* Reservation */
.reservation-section {
    background: var(--color-bg);
}

.reservation-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

/* Commander */
.commander-section {
    background: var(--color-white);
}

.commande-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.panier-summary {
    background: var(--color-bg);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.panier-summary h3 {
    font-family: var(--font-display);
    color: var(--color-secondary);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

#panier-items {
    margin-bottom: 20px;
}

.panier-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.panier-item-info {
    flex: 1;
}

.panier-item-name {
    font-weight: 600;
    color: var(--color-secondary);
}

.panier-item-qty {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.panier-item-price {
    font-weight: 700;
    color: var(--color-primary);
}

.panier-item-remove {
    background: none;
    border: none;
    color: var(--color-tertiary);
    cursor: pointer;
    padding: 0 10px;
    font-size: 1.2rem;
}

.panier-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid var(--color-primary);
    font-size: 1.3rem;
    margin-top: 15px;
}

.panier-empty {
    color: var(--color-text-light);
    text-align: center;
    padding: 30px 0;
}

.commande-form-container {
    background: var(--color-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.commande-form-container h3 {
    font-family: var(--font-display);
    color: var(--color-secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

/* Contact */
.contact-section {
    background: var(--color-bg);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--color-white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-family: var(--font-display);
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.contact-item p {
    color: var(--color-text-light);
}

/* Contact form */
.contact-form-wrapper {
    max-width: 700px;
    margin: 50px auto 0;
    background: var(--color-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.contact-form-title {
    font-family: var(--font-display);
    color: var(--color-secondary);
    font-size: 1.6rem;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--color-text);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrapper {
        padding: 25px 18px;
    }
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.footer-pattern {
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-primary) 0%, 
        var(--color-secondary) 50%, 
        var(--color-primary) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-col h4 {
    font-family: var(--font-display);
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .presentation-content {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .commande-container {
        grid-template-columns: 1fr;
    }
    
    .panier-summary {
        position: static;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--color-white);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    animation: slideInRight 0.3s;
    border-left: 4px solid var(--color-primary);
}

.notification.error {
    border-left-color: var(--color-tertiary);
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Menu Images Gallery */
.menu-images-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 70vh;
    overflow-y: auto;
}

.menu-images-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* PDF Menu Viewer */
.btn-download {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-download:hover {
    background: var(--color-primary-dark);
    color: white;
}

.menu-modal-content {
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Slideshow Présentation */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 460px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.slideshow-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

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

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 6s ease;
}

.slide.active img {
    transform: scale(1);
}

.slideshow-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.6);
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.slideshow-btn:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-btn.prev { left: 14px; }
.slideshow-btn.next { right: 14px; }

/* Client Auth & Profile */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
}

.btn-primary, .btn-secondary, .btn-danger {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
}

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

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

#adresses-list, #commandes-list {
    display: grid;
    gap: 15px;
}

.adresse-card, .commande-card {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.adresse-card h4, .commande-card h4 {
    margin-top: 0;
    color: var(--color-primary);
}
