@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
    --primary: hsl(38, 95%, 50%);
    --primary-hover: hsl(38, 95%, 42%);
    --primary-light: hsl(38, 100%, 96%);
    --primary-glow: hsla(38, 95%, 50%, 0.15);
    --secondary: hsl(24, 90%, 55%); /* Orange ambré */
    
    --bg-cream: hsl(36, 40%, 98%);
    --bg-white: hsl(0, 0%, 100%);
    --bg-dark: hsl(215, 28%, 12%);
    --bg-dark-light: hsl(215, 25%, 18%);
    
    --text-dark: hsl(215, 25%, 15%);
    --text-muted: hsl(215, 12%, 40%);
    --text-light: hsl(0, 0%, 100%);
    --text-light-muted: hsl(215, 15%, 80%);
    
    --success: hsl(142, 70%, 45%);
    --success-glow: hsla(142, 70%, 45%, 0.15);
    
    --border-color: hsl(36, 20%, 90%);
    --border-focus: hsl(38, 95%, 50%);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(38, 25, 0, 0.08);
    --shadow-glow: 0 10px 30px hsla(38, 95%, 50%, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-round: 50%;
    
    --container-width: 1200px;
    --header-height: 80px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
    background: none;
}

/* ==========================================================================
   REUSABLE COMPONENTS
   ========================================================================== */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    margin: 12px auto 0 auto;
    border-radius: var(--radius-sm);
}

.section-header p {
    font-size: 1.1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-smooth);
    gap: 10px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.btn-primary:hover::before {
    animation: shimmer 1s ease-in-out;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-text {
    color: var(--secondary);
    font-weight: 600;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    border-bottom-color: var(--secondary);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
    height: var(--header-height);
    background-color: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(217, 119, 6, 0.08);
    transition: all var(--transition-fast);
}

.header.scrolled {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.header .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    font-size: 1.8rem;
    animation: float 4s ease-in-out infinite;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-text span {
    color: var(--secondary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cart-toggle-btn {
    position: relative;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.cart-toggle-btn:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.cart-count-badge {
    background-color: var(--secondary);
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-burger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, transparent 20%, var(--bg-dark) 90%),
                linear-gradient(to bottom, transparent 60%, var(--bg-dark) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 650px;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light-muted);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   ABOUT / STORY SECTION
   ========================================================================== */
.about {
    background-color: var(--bg-white);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about-badge-card {
    background-color: var(--bg-cream);
    padding: 24px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.badge-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-badge-card h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.about-badge-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.about-images-wrapper {
    position: relative;
    height: 450px;
}

.about-img-main {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    left: 0;
    border: 8px solid var(--bg-white);
}

.about-img-sub {
    width: 60%;
    height: 60%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: 0;
    right: 0;
    border: 8px solid var(--bg-white);
    z-index: 2;
}

.about-deco-honey {
    position: absolute;
    font-size: 4rem;
    bottom: -20px;
    left: -20px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products {
    background-color: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    justify-content: center;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(217, 119, 6, 0.04);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(217, 119, 6, 0.18), 
                0 1px 3px rgba(0, 0, 0, 0.05);
    border-color: rgba(217, 119, 6, 0.45);
}

.product-img-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    background-color: var(--primary-light);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-badge {
    transform: scale(1.05) rotate(-2deg);
}

.product-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-size {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background-color: var(--primary-light);
    padding: 4px 10px;
    border-radius: 12px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.product-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 4px;
    background-color: var(--bg-cream);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-round);
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

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

.qty-value {
    width: 35px;
    text-align: center;
    font-weight: 600;
}

.product-btn {
    flex-grow: 1;
    font-size: 0.95rem;
    padding: 12px 20px;
}

/* ==========================================================================
   RESERVATION CART / DOCK MODAL (GLASSMORPHISM)
   ========================================================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-modal {
    position: fixed;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 480px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(160%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-smooth);
    border-left: 1px solid rgba(217, 119, 6, 0.15);
}

.cart-overlay.open + .cart-modal,
.cart-modal.open {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-round);
    background-color: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.cart-close-btn:hover {
    background-color: var(--primary-light);
    color: var(--secondary);
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-empty-message {
    text-align: center;
    padding: 60px 0;
}

.cart-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: float 4s ease-in-out infinite;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.cart-item-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-item-price-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--text-dark);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.85rem;
    text-decoration: underline;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: hsl(0, 80%, 50%);
}

.cart-summary {
    padding: 24px 0 0 0;
    border-top: 2px dashed var(--border-color);
    margin-top: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 500;
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.cart-footer {
    padding: 30px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-cream);
}

.checkout-btn {
    width: 100%;
}

/* ==========================================================================
   RESERVATION FORM (IN CART/MODAL STEP)
   ========================================================================== */
.reservation-step {
    display: none;
}

.reservation-step.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

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

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.form-input:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

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

.pickup-info-card {
    background-color: var(--primary-light);
    border: 1px solid rgba(217, 119, 6, 0.15);
    padding: 18px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.pickup-info-card h4 {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pickup-info-card p {
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.4;
}

.reservation-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 15px;
    margin-top: 25px;
}

.action-buttons-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.submit-whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.submit-whatsapp-btn:hover {
    background-color: #20BA5A;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.25);
    transform: translateY(-2px);
}

.submit-email-btn {
    background-color: var(--bg-dark);
    color: white;
}

.submit-email-btn:hover {
    background-color: #000;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.25);
    transform: translateY(-2px);
}

/* ==========================================================================
   SUCCESS MODAL
   ========================================================================== */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.success-overlay.open {
    opacity: 1;
    visibility: visible;
}

.success-card {
    background-color: var(--bg-white);
    max-width: 500px;
    width: 90%;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.success-overlay.open .success-card {
    transform: scale(1);
}

.success-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-round);
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 2.5rem;
    animation: scalePulse 2s infinite;
}

.success-card h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.success-card p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.success-details {
    background-color: var(--bg-cream);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: left;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary);
}

.success-details-title {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.success-details ul {
    list-style: none;
}

.success-details li {
    font-size: 0.95rem;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

/* ==========================================================================
   CONTACT & ACCÈS SECTION
   ========================================================================== */
.contact {
    background-color: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-block h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    background-color: var(--primary-light);
    color: var(--secondary);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.95rem;
}

.contact-map-wrapper {
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-placeholder-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(38, 25%, 95%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
}

.map-graphic {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-round);
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.map-graphic::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: var(--radius-round);
    background-color: var(--secondary);
    bottom: 5px;
    right: 5px;
    border: 2px solid white;
}

.map-btn {
    margin-top: 20px;
}

/* ==========================================================================
   LEGAL MODAL
   ========================================================================== */
.legal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
}

.legal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.legal-card {
    background-color: var(--bg-white);
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.legal-overlay.open .legal-card {
    transform: scale(1);
}

.legal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark-muted);
    transition: color var(--transition-smooth);
    line-height: 1;
}

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

.legal-content h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.8rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 10px;
}

.legal-content h4 {
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.legal-content p, .legal-content ul {
    font-size: 0.9rem;
    color: var(--text-dark-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 20px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light-muted);
    padding: 60px 0 30px 0;
    font-size: 0.95rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 30px;
}

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

.footer-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
}

.footer-logo-text span {
    color: var(--primary);
}

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

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 15px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

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

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

@keyframes scalePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 20px var(--primary-glow);
    }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-images-wrapper {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-map-wrapper {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .menu-burger {
        display: block;
    }
    
    .nav-list {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-white);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: left var(--transition-smooth);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .nav.open .nav-list {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    
    .footer-top, .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .about-badges {
        grid-template-columns: 1fr;
    }
    
    .cart-modal {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ==========================================================================
   CHATBOT WIDGET (HYBRIDE GUIDÉ)
   ========================================================================== */
.chatbot-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    background-color: var(--secondary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all var(--transition-smooth);
}

.chatbot-trigger:hover {
    transform: scale(1.1) rotate(-5deg);
    background-color: #b45309;
}

.chatbot-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-round);
    background-color: var(--secondary);
    opacity: 0.4;
    z-index: -1;
    animation: pulse 2.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100vw - 60px);
    height: 500px;
    max-height: calc(100vh - 150px);
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(38, 25, 0, 0.15);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all var(--transition-smooth);
}

.chatbot-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background-color: var(--secondary);
    color: var(--text-light);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header-avatar {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.chatbot-header-info h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.85;
}

.chatbot-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.chatbot-close:hover {
    opacity: 1;
}

.chatbot-messages {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    line-height: 1.4;
    word-break: break-word;
}

.chat-msg.bot {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid var(--border-color);
}

.chat-msg.user {
    background-color: var(--secondary);
    color: var(--text-light);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
    align-self: flex-start;
    width: 100%;
}

.chip {
    background-color: var(--primary-light);
    color: var(--secondary);
    border: 1px solid rgba(217, 119, 6, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-align: left;
}

.chip:hover {
    background-color: var(--secondary);
    color: var(--text-light);
    transform: translateY(-1px);
}

.chatbot-input-area {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    background-color: var(--bg-white);
}

.chatbot-input-area input {
    flex-grow: 1;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.chatbot-input-area input:focus {
    border-color: var(--secondary);
}

.chatbot-input-area button {
    background-color: var(--secondary);
    color: var(--text-light);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.chatbot-input-area button:hover {
    background-color: #b45309;
}

/* Animation typing */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 4px 8px;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typing 1s infinite alternate;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-6px);
    }
}

/* Ajustements pour mobile */
@media (max-width: 480px) {
    .chatbot-trigger {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .chatbot-window {
        bottom: 85px;
        right: 15px;
        width: calc(100vw - 30px);
        height: 400px;
        max-height: calc(100vh - 120px);
    }
}

/* ==========================================================================
   HIGH-END GRAPHICS & ANIMATIONS
   ========================================================================== */

/* Hero Wave Separator */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 4;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px;
}

.hero-wave .shape-fill {
    fill: var(--bg-white);
}

/* Hero entrance reveal animations */
.hero-content > * {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .hero-subtitle {
    animation-delay: 0.1s;
}

.hero-content h1 {
    animation-delay: 0.25s;
}

.hero-content .hero-description {
    animation-delay: 0.4s;
}

.hero-content .hero-actions {
    animation-delay: 0.55s;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   CARTE DE RESERVATION & MODES DE PAIEMENT
   ========================================================================== */

/* Bandeau d'information Panier */
.cart-info-banner {
    display: flex;
    gap: 12px;
    background-color: var(--primary-light);
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.info-banner-icon {
    font-size: 1.25rem;
    line-height: 1.2;
}

.info-banner-text {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.45;
}

.info-banner-text strong {
    color: var(--secondary);
    font-weight: 600;
}

/* Encart modes de paiement Step 1 */
.payment-methods-notice {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

.payment-methods-notice h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.payment-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

.payment-badge .badge-icon {
    font-size: 0.95rem;
}

.payment-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Encart de paiement Step 2 */
.checkout-info-block {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-methods-card {
    background-color: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.payment-methods-card h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 12px;
}

.payment-badges-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.payment-badge-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.badge-tag {
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 4px 10px;
    border-radius: 12px;
}

.badge-desc {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.payment-warning-text {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    border-top: 1px dashed var(--border-color);
    padding-top: 8px;
}

.rgpd-notice-card {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background-color: rgba(248, 250, 252, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.rgpd-icon {
    font-size: 1.1rem;
}

.rgpd-notice-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   PAGES PRODUITS DETAILLEES
   ========================================================================= */

.back-btn-container {
    margin-bottom: 25px;
    padding-top: 20px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--secondary);
    transition: transform var(--transition-fast);
}

.back-btn:hover {
    transform: translateX(-4px);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

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

.breadcrumbs span {
    color: var(--border-color);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 80px;
}

.product-detail-img-box {
    background-color: transparent;
    border: none;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.product-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-detail-img-box:hover .product-detail-img {
    transform: scale(1.03);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    padding: 40px 40px 40px 0;
}

.product-detail-title {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-detail-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary);
    margin-bottom: 20px;
}

.product-detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
}

.product-detail-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-detail-price-unit {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.product-detail-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 25px;
}

.product-detail-status.available {
    background-color: var(--primary-light);
    color: var(--secondary);
    border: 1px solid rgba(217, 119, 6, 0.15);
}

.product-detail-status.unavailable {
    background-color: hsl(0, 100%, 97%);
    color: hsl(0, 84%, 60%);
    border: 1px solid hsl(0, 100%, 93%);
}

.product-detail-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.product-detail-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.product-detail-actions .quantity-selector {
    border-color: var(--border-focus);
}

.product-detail-actions .product-btn {
    flex-grow: 1;
    justify-content: center;
    padding: 16px 28px;
}

.specs-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 12px 0;
    font-size: 0.95rem;
}

.specs-table td.spec-label {
    font-weight: 600;
    color: var(--text-muted);
    width: 35%;
}

.specs-table td.spec-value {
    color: var(--text-dark);
}

.suggestions-section {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 60px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
}

.suggestions-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.suggestions-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
}

/* Page statique de politique de confidentialité */
.privacy-container {
    max-width: 800px;
    margin: 120px auto 60px auto;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.privacy-container h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.privacy-last-update {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.privacy-content h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.privacy-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
    color: var(--text-muted);
}

.privacy-content li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-detail-title {
        font-size: 2.25rem;
    }
    
    .product-detail-info {
        padding: 30px;
    }
    
    .product-detail-img-box {
        padding: 0;
        height: 350px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    
    .product-detail-img {
        object-fit: cover;
    }
    
    .privacy-container {
        padding: 20px;
        margin: 100px 15px 40px 15px;
    }
}
