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

/* Variables CSS */
:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #c9a961;
    --background-color: #fff;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --text-color: #333;
    --max-width: 1200px;
}

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo a {
    color: var(--primary-color);
}

.nav-main ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-main a {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

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

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

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-link {
    position: relative;
}

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

/* Main Content */
.main-content {
    min-height: calc(100vh - 300px);
    padding: 20px 0;
}

.page-content {
    text-align: center;
    padding: 40px 0;
}

.page-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-404 {
    text-align: center;
    padding: 80px 0;
}

.page-404 h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.debug-info {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 5px;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;

}

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

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

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #f0b90b, var(--accent-color));
    animation: gradientShift 3s ease-in-out infinite;
}

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

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

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

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

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.footer-bottom p {
    margin: 5px 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Powered by styling */
.powered-by {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.developer-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 8px;
    border-radius: 4px;
}

.developer-link:hover {
    color: #fff;
    background: rgba(201, 169, 97, 0.2);
    transform: translateY(-2px);
}

.code-symbol {
    color: #f0b90b;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    margin-left: 3px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

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

/* Developer Modal Styles */
.developer-modal {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    color: #333;
}

.developer-modal .modal-header {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
    border-bottom: 2px solid var(--accent-color);
    padding: 20px;
}

.developer-modal .modal-title {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.developer-modal .modal-title .code-symbol {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.developer-modal .btn-close {
    opacity: 0.6;
}

.developer-modal .btn-close:hover {
    opacity: 1;
}

.developer-info {
    text-align: center;
    padding: 20px;
}

.developer-photo-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.developer-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.3);
}

.developer-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--accent-color);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.developer-name {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.developer-title {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.developer-contact {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #e0e0e0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.developer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 25px 0;
}

.skill-badge {
    background: rgba(201, 169, 97, 0.1);
    color: var(--accent-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--accent-color);
    transition: all 0.3s;
}

.skill-badge:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

.developer-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.developer-motto {
    color: #666;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
}

/* ========================================
   BOUTIQUE - STYLES
   ======================================== */

/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumb a {
    color: #666;
    margin: 0 5px;
}

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

.breadcrumb span {
    color: #999;
    margin: 0 5px;
}

/* Shop Header */
.shop-header {
    padding: 40px 0;
    text-align: center;
    background: #fafafa;
}

.shop-header h1 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.shop-intro {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

/* Search Bar */
.search-bar {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.search-bar form {
    display: flex;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 15px;
    outline: none;
}

.search-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #b89951;
}

/* Shop Content */
.shop-content {
    padding: 40px 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}

/* Sidebar */
.shop-sidebar {
    background: white;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 30px;
}

.filter-section h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.category-list {
    list-style: none;
}

.category-list li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-list li.active a {
    color: var(--accent-color);
    font-weight: 500;
}

.category-list .count {
    color: #999;
    font-size: 13px;
}

.subcategory-list {
    margin-left: 20px;
    margin-top: 5px;
    list-style: none;
}

/* Price Filter */
.price-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.price-input label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.price-field {
    width: 100%;
    padding: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
}

.btn-filter {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-filter:hover {
    background: var(--accent-color);
}

/* Shop Toolbar */
.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.results-count {
    color: #666;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    color: #666;
    font-size: 14px;
}

.sort-options select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background: white;
    cursor: pointer;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-link {
    display: block;
    text-decoration: none;
}

.product-image {
    position: relative;
    padding-bottom: 100%; /* Square aspect ratio */
    overflow: hidden;
    background: #f8f8f8;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.no-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Product Badges */
.badge {

    top: 10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 2;
}

.badge-new {
    left: 10px;
    background: #4CAF50;
    color: white;
}

.badge-sale {
    right: 10px;
    background: #FF5252;
    color: white;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.btn-quick-view {
    background: white;
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: var(--accent-color);
    color: white;
}

/* Product Info */
.product-info {
    padding: 15px;
}

.product-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.price-current {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.price-old {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.out-of-stock,
.low-stock {
    font-size: 13px;
    font-weight: 500;
}

.out-of-stock {
    color: #999;
}

.low-stock {
    color: #FF9800;
}

/* Product Actions */
.product-actions {
    padding: 0 15px 15px;
}

.btn-add-cart,
.btn-notify {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-add-cart:hover {
    background: var(--accent-color);
}

.btn-notify {
    background: #f0f0f0;
    color: #666;
}

.btn-notify:hover {
    background: #e0e0e0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 40px;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border: 1px solid #e0e0e0;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-dots {
    color: #999;
    padding: 0 10px;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 60px 20px;
}

.no-products p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

/* Admin and Staff Links */
.admin-link {
    color: #007bff;
}

.staff-link {
    color: #28a745;
}

/* Payment Page Styles */
.payment-methods .card {
    transition: transform 0.2s;
}

.payment-methods .card:hover {
    transform: translateY(-2px);
}

.twint-logo-payment {
    height: 60px;
    margin-bottom: 20px;
}

/* ========================================
   BANNER STYLES
   ======================================== */

.banner-wrapper {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.banner-content {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 300px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.banner-text {
    position: relative;
    z-index: 1;
    padding: 40px;
    background: rgba(0,0,0,0.6);
    color: white;
    max-width: 600px;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.banner-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.banner-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.banner-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Banner Responsive */
@media (max-width: 768px) {
    .banner-text {
        padding: 20px;
    }
    
    .banner-title {
        font-size: 1.8rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
}

/* ========================================
   SECTIONS HOMEPAGE
   ======================================== */

/* Horaires et Réseaux sociaux */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px dotted rgba(0,0,0,0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    font-weight: 600;
    min-width: 100px;
}

.hours-row .hours {
    text-align: right;
}

.hours-row .hours.closed {
    color: #dc3545;
    font-style: italic;
}

.social-links {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.social-links h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.instagram:hover {
    background: #e6683c;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

/* ========================================
   NOTIFICATIONS
   ======================================== */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    min-width: 300px;
    max-width: 400px;
    padding: 15px 40px 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

.notification.visible {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid #4CAF50;
}

.notification-error {
    border-left: 4px solid #FF5252;
}

.notification-warning {
    border-left: 4px solid #FF9800;
}

.notification-message {
    flex: 1;
    color: #333;
    font-size: 14px;
}

.notification-close {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.notification-close:hover {
    color: #333;
}

/* ========================================
   QUICK ADD BUTTON STATES
   ======================================== */
.btn-quick-add {
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-quick-add:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-quick-add.success {
    background-color: #4CAF50 !important;
    color: white !important;
}

/* Newsletter Form */
.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ========================================
   ACCOUNT PAGES STYLES
   ======================================== */

.account-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.booking-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.booking-card.upcoming {
    border-left: 4px solid #667eea;
}

.booking-header {
    background: #f8f9fa;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-number {
    font-size: 0.85rem;
    color: #666;
    font-family: monospace;
}

.booking-body {
    padding: 15px;
}

.booking-body h6 {
    color: #333;
    margin-bottom: 10px;
}

.booking-body p {
    font-size: 0.9rem;
    color: #666;
}

.booking-body i {
    width: 20px;
    color: #667eea;
}

.booking-footer {
    padding: 10px 15px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.account-page .table {
    font-size: 0.95rem;
}

.account-page .table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
}

/* Booking Details Page */
.booking-detail-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border: 1px solid #dee2e6;
}

.booking-number-section {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 30px;
}

.booking-number {
    font-family: monospace;
    color: #667eea;
    font-size: 1.8rem;
    margin: 10px 0;
}

.info-group {
    margin-bottom: 20px;
}

.info-title {
    color: #495057;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #212529;
    font-size: 1rem;
    margin: 0;
}

.price {
    color: #667eea;
    font-size: 1.5rem;
}

.contact-section, .notes-section, .history-section {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.notes-content {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #dee2e6;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-icon {
    position: absolute;
    left: -25px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.timeline-content {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 8px;
}

.action-buttons {
    background: white;
    margin: -30px;
    margin-top: 30px;
    padding: 20px 30px;
    border-radius: 0 0 15px 15px;
}

/* Dashboard Styles */
.hover-shadow {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hover-shadow:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: #f8f9fa;
}

/* Print styles for booking details */
@media print {
    .col-lg-3, .action-buttons, .btn, .alert {
        display: none !important;
    }
    
    .col-lg-9 {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .account-content {
        box-shadow: none !important;
    }
}

/* Mobile responsive for booking details */
@media (max-width: 768px) {
    .booking-detail-card {
        padding: 20px;
    }
    
    .booking-number {
        font-size: 1.5rem;
    }
    
    .action-buttons {
        margin: -20px;
        margin-top: 20px;
        padding: 15px 20px;
    }
}

/* ========================================
   COOKIE CONSENT STYLES
   ======================================== */

/* Bannière de consentement */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--accent-color);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.cookie-consent-text p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Boutons cookies */
.btn-cookie {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cookie-accept {
    background: var(--accent-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: #b89951;
    transform: translateY(-1px);
}

.btn-cookie-reject {
    background: #f0f0f0;
    color: #666;
}

.btn-cookie-reject:hover {
    background: #e0e0e0;
}

.btn-cookie-settings {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.btn-cookie-settings:hover {
    background: #f8f8f8;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-cookie-secondary {
    background: #6c757d;
    color: white;
}

.btn-cookie-secondary:hover {
    background: #5a6268;
}

/* Modal des paramètres */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.cookie-modal.show {
    opacity: 1;
}

.cookie-modal-content {
    background: white;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cookie-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #333;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-close:hover {
    color: #333;
}

.cookie-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.cookie-modal-intro {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.6;
}

/* Catégories de cookies */
.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f8f8;
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    color: #333;
}

.cookie-category-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.cookie-category-details {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e0e0e0;
}

.cookie-category-details small {
    color: #888;
    font-size: 0.85rem;
}

/* Switch toggle */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--accent-color);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

.cookie-switch.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-switch.disabled .cookie-slider {
    cursor: not-allowed;
}

/* Lien info */
.cookie-info-link {
    margin-top: 20px;
    text-align: center;
}

.cookie-info-link a {
    color: var(--accent-color);
    font-size: 0.9rem;
    text-decoration: none;
}

.cookie-info-link a:hover {
    text-decoration: underline;
}

/* Footer modal */
.cookie-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Responsive cookies */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
    }
    
    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
    
    .cookie-modal-content {
        max-height: 90vh;
    }
    
    .cookie-category-header {
        flex-direction: column;
    }
    
    .cookie-switch {
        align-self: flex-start;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}

/* ========================================
   BOOKING STYLES
   ======================================== */

.booking-hero {
    background: #667eea;
    padding: 80px 0;
    margin-bottom: -50px;
}



.step-number {
    width: 40px;
    height: 40px;
    background: #e0e0e0;
    color: #999;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.step.active .step-number {
    background: #667eea;
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-title {
    font-size: 0.9rem;
    color: #666;
}

.step.active .step-title {
    color: #333;
    font-weight: 600;
}

.booking-step-content {
    display: none;
    animation: fadeIn 0.3s;
}

.booking-step-content.active {
    display: block;
}

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

/* Service Cards */
.service-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.service-card.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

.service-info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.service-info .price {
    font-weight: bold;
    color: #667eea;
}

/* Staff Cards */
.staff-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    height: 100%;
}

.staff-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.staff-card.selected {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.staff-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-photo i {
    font-size: 3rem;
    color: #999;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Time Slots */
.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}

.time-slot {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.time-slot:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

.time-slot.selected {
    border-color: #667eea;
    background: #667eea;
    color: white;
}

.time-slot-time {
    font-weight: bold;
    font-size: 1.1rem;
}

.time-slot-staff {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #666;
}

.time-slot.selected .time-slot-staff {
    color: rgba(255, 255, 255, 0.9);
}

/* Summary */
.summary-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item .label {
    color: #666;
}

.summary-item .value {
    font-weight: 600;
    color: #333;
}

.summary-item.total {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
    font-size: 1.2rem;
}

.summary-item.total .value {
    color: #667eea;
}

/* Navigation */
.booking-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

/* Responsive Booking */
@media (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
        padding: 20px;
    }
    
    .booking-steps .step:not(:last-child)::after {
        display: none;
    }
    
    .booking-steps .step {
        margin-bottom: 20px;
    }
    
    .time-slots-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-main ul {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}
