/**
 * Grown with Love - Global Design System
 * Version 2.0.1
 * Single source of truth for ALL styles
 * Corrected syntax for cPanel compatibility
 */

/* ========== FONTS ========== */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@300;400;500;600&family=Source+Sans+Pro:wght@300;400;500;600&display=swap');

/* ========== ROOT COLOR VARIABLES ========== */
:root {
    --warm-cream: #F7F3E9;
    --natural-brown: #8B7355;
    --ochre-gold: #CC9544;
    --sage-green: #9CAF88;
    --charcoal-brown: #3C3428;
    --warm-gray: #A69B8C;
    --paper-white: #FEFCF7;
    --soft-beige: #E8E2D5;
    --deep-earth: #5D4E37;
    --linen: #F4F0E8;
}

/* ========== GLOBAL RESETS ========== */
.ct-header,
.ct-footer,
.site-header,
.header-wrapper {
    display: none !important;
}

body {
    padding-top: 100px;
}

/* ========== HEADER STYLES ========== */
.gwl-header {
    background: linear-gradient(135deg, #F7F3E9 0%, #FEFCF7 100%);
    background-color: #F7F3E9;
    border-bottom: 1px solid rgba(139,115,85,0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1100;
    box-shadow: 0 2px 8px rgba(60,52,40,0.08);
    font-family: 'Source Sans Pro', sans-serif;
}

.gwl-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 20px;
}

.gwl-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #3C3428;
    transition: all 0.3s ease;
    flex: 0 1 auto;
}

.gwl-logo:hover {
    transform: translateY(-1px);
}

.gwl-logo img {
    max-height: 70px;
    width: auto;
    margin-right: 15px;
}

.gwl-logo-text {
    display: flex;
    flex-direction: column;
}

.gwl-logo-main {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #3C3428;
    line-height: 1.2;
}

.gwl-logo-sub {
    font-size: 13px;
    color: #A69B8C;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gwl-logo-mobile {
    display: none;
}

.gwl-logo-desktop {
    display: block;
}

.gwl-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1 1 auto;
    justify-content: center;
    margin: 0 20px;
}

.gwl-nav-link {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #3C3428;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.gwl-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #CC9544;
    transition: width 0.3s ease;
}

.gwl-nav-link:hover {
    color: #CC9544;
}

.gwl-nav-link:hover::after,
.gwl-nav-link.active::after {
    width: 100%;
}

.gwl-nav-link.active {
    color: #8B7355;
}

.gwl-header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.gwl-cart-btn {
    position: relative;
    background: #9CAF88 !important;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    color: white;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

.gwl-cart-btn:hover {
    background: #8B7355 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139,115,85,0.3);
    color: white;
}

.gwl-cart-count {
    background: #CC9544;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    padding: 0 5px;
}

.gwl-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #3C3428;
    flex-direction: column;
    gap: 4px;
}

.gwl-mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: currentColor;
    transition: 0.3s;
}

.gwl-mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #F7F3E9;
    border-bottom: 1px solid rgba(139,115,85,0.15);
    padding: 20px;
    box-shadow: 0 4px 12px rgba(60,52,40,0.1);
    z-index: 1101;
}

.gwl-mobile-nav.active {
    display: block;
}

.gwl-mobile-nav .gwl-nav-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139,115,85,0.1);
}

.gwl-mobile-nav .gwl-nav-link:last-child {
    border-bottom: none;
}

/* Menu hamburger à 1024px */
@media (max-width: 1024px) {
    .gwl-nav {
        display: none !important;
    }
    
    .gwl-mobile-toggle {
        display: flex !important;
    }
    
    .gwl-header-container {
        padding: 0 15px;
    }
    
    .gwl-logo-main {
        font-size: 22px;
    }
    
    .gwl-cart-btn {
        padding: 9px 12px;
        font-size: 13px;
    }
}

/* ========== HEADER ADDITIONS ========== */
.gwl-logo-fallback {
    width: 50px;
    height: 50px;
    background: var(--natural-brown);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-cream);
    font-size: 24px;
    margin-right: 15px;
}

.cart-icon {
    margin-right: 4px;
}

.cart-total {
    margin-left: 8px;
}

/* Cart update animation */
.gwl-cart-btn.cart-updated {
    animation: cartPulse 0.3s ease;
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); background: #7A8E67 !important; }
    100% { transform: scale(1); }
}

.gwl-cart-count {
    animation: countBounce 0.3s ease;
}

@keyframes countBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ========== SHOP PAGE STYLES ========== */
.custom-shop-container {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #F7F3E9;
    min-height: 100vh;
    padding-top: 160px;
}

.trust-bar {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background: linear-gradient(90deg, rgba(96,84,70,0.95) 0%, rgba(120,105,87,0.95) 50%, rgba(96,84,70,0.95) 100%);
    backdrop-filter: blur(10px);
    color: #FEFCF7;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 40px;
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-weight: 500;
    font-size: 16px;
}

.trust-items span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.shop-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.filter-section {
    background: #FEFCF7;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    margin-top: 60px !important;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.filter-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -9999px;
    right: -9999px;
    height: 60px;
    background-color: #F7F3E9;
    z-index: -1;
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    color: #3C3428;
    font-size: 16px;
    min-width: 120px;
}

.filter-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.filter-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #A69B8C;
    color: #3C3428;
    background: #FEFCF7;
}

.filter-pill:hover {
    border-color: #CC9544;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(204,149,68,0.3);
}

.filter-pill.active {
    background: linear-gradient(135deg, #CC9544 0%, #8B7355 100%);
    color: #FEFCF7;
    border-color: transparent;
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
    font-size: 12px;
}

.variety-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FEFCF7;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px;
    margin-top: 5px;
    z-index: 1000;
    display: none;
    min-width: 200px;
}

.variety-dropdown.show {
    display: block;
}

.variety-item {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #3C3428;
    border-radius: 10px;
    transition: all 0.2s ease;
    font-size: 13px;
}

.variety-item:hover {
    background: #F7F3E9;
    color: #8B7355;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.results-info {
    color: #A69B8C;
    font-size: 16px;
}

.controls-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.control-select {
    padding: 10px 15px;
    border: 2px solid #A69B8C;
    border-radius: 10px;
    background: #FEFCF7;
    color: #3C3428;
    font-size: 14px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #FEFCF7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.strain-badge {
    background: linear-gradient(135deg, #9CAF88 0%, #8B7355 100%);
    color: #FEFCF7;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    max-width: 200px;
    line-height: 1.2;
    word-break: break-word;
    text-align: center;
}

.stock-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #FEFCF7;
}

.stock-badge.in-stock {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
}

.stock-badge.low-stock {
    background: linear-gradient(135deg, #ff9800 0%, #FFB74D 100%);
}

.stock-badge.out-of-stock {
    background: linear-gradient(135deg, #999999 0%, #BDBDBD 100%);
}

.product-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: #3C3428;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-description {
    color: #A69B8C;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex: 1;
}

.product-price {
    font-size: 24px;
    font-weight: 600;
    color: #8B7355;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: auto;
}

.add-to-cart-btn,
.select-options-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #CC9544 0%, #8B7355 100%);
    color: #FEFCF7;
}

.select-options-btn {
    background: linear-gradient(135deg, #8B7355 0%, #3C3428 100%);
    color: #FEFCF7;
}

.add-to-cart-btn:hover,
.select-options-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* ========================================
   GWL - OUT OF STOCK NOTIFICATION SYSTEM
   Design harmonisé avec l'identité Grown With Love
   Fichier : /wp-content/themes/blocksy-child/gwl-global.css
   ======================================== */

/* Variables réutilisables pour cohérence */
:root {
  --oos-modal-bg: #FEFCF7;
  --oos-modal-border: #E8E2D5;
  --oos-modal-shadow: rgba(139, 115, 85, 0.15);
  --oos-input-focus: #9CAF88;
  --oos-btn-primary: #CC9544;
  --oos-btn-hover: #B88434;
  --oos-text-primary: #3C3428;
  --oos-text-secondary: #A69B8C;
}

/* Prévenir le scroll quand modal ouvert */
body.gwl-modal-open {
    overflow: hidden;
}

/* ---- Bouton Get Notified (sur pages shop) ---- */
.oos-notify-trigger {
    background: linear-gradient(135deg, #9CAF88 0%, #8B9F78 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(156, 175, 136, 0.25);
}

.oos-notify-trigger:hover {
    background: linear-gradient(135deg, #8B9F78 0%, #7A8E67 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(156, 175, 136, 0.35);
}

.oos-notify-trigger .notify-icon {
    font-size: 14px;
    animation: bellRing 3s ease-in-out infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    5%, 15% { transform: rotate(10deg); }
    10%, 20% { transform: rotate(-10deg); }
    25% { transform: rotate(0deg); }
}

/* ---- Modal Overlay ---- */
.gwl-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 52, 40, 0.8);
    backdrop-filter: blur(8px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}

/* ---- Modal Content Box ---- */
.gwl-modal-content {
    background: var(--oos-modal-bg);
    border-radius: 16px;
    max-width: 440px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.1),
        0 10px 40px rgba(139, 115, 85, 0.15);
    border: 1px solid var(--oos-modal-border);
}

/* Scrollbar personnalisée */
.gwl-modal-content::-webkit-scrollbar {
    width: 8px;
}

.gwl-modal-content::-webkit-scrollbar-track {
    background: #F7F3E9;
    border-radius: 10px;
}

.gwl-modal-content::-webkit-scrollbar-thumb {
    background: #D4C8B8;
    border-radius: 10px;
}

.gwl-modal-content::-webkit-scrollbar-thumb:hover {
    background: #B8A898;
}

/* ---- Modal Close Button ---- */
.gwl-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--oos-modal-border);
    background: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: var(--oos-text-secondary);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gwl-modal-close:hover {
    background: var(--oos-text-primary);
    color: white;
    border-color: var(--oos-text-primary);
    transform: rotate(90deg);
}

/* ---- Modal Header ---- */
.gwl-modal-header {
    padding: 28px 28px 20px;
    text-align: center;
    border-bottom: 1px solid var(--oos-modal-border);
    background: linear-gradient(135deg, #FEFCF7 0%, #F7F3E9 100%);
    border-radius: 16px 16px 0 0;
}

.gwl-modal-header h2 {
    font-family: 'EB Garamond', serif;
    color: var(--oos-text-primary);
    font-size: 26px;
    margin: 0 0 8px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.gwl-modal-header h2::before {
    content: '🔔 ';
    font-size: 22px;
    margin-right: 8px;
    display: inline-block;
    animation: bellRing 3s ease-in-out infinite;
}

.gwl-modal-header p {
    color: var(--oos-text-secondary);
    font-size: 15px;
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

/* ---- Form Container ---- */
.gwl-notification-form {
    padding: 25px 28px 28px;
}

/* ---- Form Groups ---- */
.gwl-form-group {
    margin-bottom: 18px;
}

.gwl-form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--oos-text-primary);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-family: 'Source Sans Pro', sans-serif;
}

/* ---- Input Field ---- */
.gwl-form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--oos-modal-border);
    border-radius: 8px;
    font-size: 15px;
    background: white;
    transition: all 0.25s ease;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--oos-text-primary);
}

.gwl-form-input::placeholder {
    color: #C4B8A8;
}

.gwl-form-input:hover {
    border-color: #D4C8B8;
}

.gwl-form-input:focus {
    outline: none;
    border-color: var(--oos-input-focus);
    box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.12);
    background: #FEFFFE;
}

.gwl-form-input.error {
    border-color: #D84444;
    background: #FFF8F8;
}

/* ---- Checkbox Section ---- */
.gwl-checkbox-group {
    margin: 22px 0;
    padding: 14px;
    background: #FAF8F4;
    border-radius: 8px;
    border: 1px solid #F0EAE0;
}

.gwl-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    color: #6B5D4F;
    line-height: 1.5;
    font-family: 'Source Sans Pro', sans-serif;
}

.gwl-checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 2px;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--oos-input-focus);
}

/* ---- Submit Button ---- */
.gwl-submit-btn {
    width: 100%;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--oos-btn-primary) 0%, var(--oos-btn-hover) 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(204, 149, 68, 0.25);
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    overflow: hidden;
}

.gwl-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.gwl-submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--oos-btn-hover) 0%, #A67324 100%);
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(204, 149, 68, 0.35);
}

.gwl-submit-btn:hover:not(:disabled)::before {
    left: 100%;
}

.gwl-submit-btn:active {
    transform: translateY(0);
}

.gwl-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.gwl-submit-btn .btn-loader {
    display: none;
}

/* ---- Messages d'alerte ---- */
.gwl-form-messages {
    margin-top: 18px;
}

.gwl-alert {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    animation: slideDown 0.3s ease;
    font-family: 'Source Sans Pro', sans-serif;
}

.gwl-alert-success {
    background: linear-gradient(135deg, #F0F7ED 0%, #E8F5E3 100%);
    color: #2E7D32;
    border: 1px solid #9CAF88;
}

.gwl-alert-error {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEB 100%);
    color: #B71C1C;
    border: 1px solid #EF9A9A;
}

.gwl-error-message {
    color: #D84444;
    font-size: 13px;
    margin-top: 4px;
    display: none;
    font-family: 'Source Sans Pro', sans-serif;
}

/* ---- Animations ---- */
@keyframes fadeIn {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-8px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation du modal à l'ouverture */
.gwl-modal-overlay {
    animation: fadeIn 0.25s ease;
}

.gwl-modal-content {
    animation: slideUp 0.3s ease;
}

/* ---- Version Mobile ---- */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    /* Container principal avec flexbox simple */
    .gwl-header-container {
        height: 80px !important;
        padding: 0 15px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 10px !important;
    }
    
    /* Logo qui prend l'espace disponible */
    .gwl-logo {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    
    .gwl-logo img {
        max-height: 60px !important;
        margin-right: 8px !important;
    }
    
    /* Actions groupées à droite */
    .gwl-header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        flex: 0 0 auto !important;
        margin-left: auto !important; /* Force à droite */
    }
    
    .gwl-cart-btn {
        padding: 6px 8px !important;
        font-size: 11px !important;
        height: 32px !important;
    }
    
    /* Hamburger collé au bord */
    .gwl-mobile-toggle {
        display: flex !important;
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        margin: 0 !important;
        position: absolute !important; /* Position absolue */
        right: 15px !important; /* Aligné avec le padding du container */
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    
    /* Ajuster le cart pour faire de la place */
    .gwl-header-actions {
        padding-right: 40px !important; /* Espace pour le hamburger */
    }
    
    /* Reste des styles mobiles... */
    .gwl-logo-desktop {
        display: none !important;
    }
    
    .gwl-logo-mobile {
        display: block !important;
    }
    
    .gwl-logo-mobile .gwl-logo-main {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.1 !important;
    }
    
    .gwl-logo-mobile .line1,
    .gwl-logo-mobile .line2 {
        font-size: 14px !important;
        color: #3C3428;
        font-weight: 500;
        white-space: nowrap !important;
    }
    
    .gwl-logo-mobile .ampersand {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px !important;
        color: #CC9544;
        opacity: 0.8;
    }
    
    .gwl-nav {
        display: none !important;
    }
    
    .gwl-mobile-nav {
        top: 80px !important;
    }
}

@media (max-width: 480px) {
    .gwl-modal-header h2 {
        font-size: 21px;
    }
    
    .gwl-modal-header h2::before {
        font-size: 19px;
    }
    
    .gwl-modal-header p {
        font-size: 14px;
    }
    
    .gwl-form-input {
        font-size: 16px; /* Empêche le zoom sur iOS */
        padding: 10px 12px;
    }
}

.quick-view-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #8B7355;
    border-radius: 50%;
    background: #FEFCF7;
    color: #8B7355;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: normal;
}

.quick-view-btn:hover {
    background: #8B7355;
    color: #FEFCF7;
    transform: scale(1.1);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 50px 0;
}

.pagination a,
.pagination span {
    padding: 12px 18px;
    border: 2px solid #A69B8C;
    border-radius: 10px;
    text-decoration: none;
    color: #3C3428;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination .current {
    background: #CC9544;
    color: #FEFCF7;
    border-color: #CC9544;
}

.pagination a:hover {
    border-color: #CC9544;
    transform: translateY(-2px);
}

.single-product select[data-attribute_name],
select[data-attribute_name],
.control-select,
select {
    width: 100%;
    padding: 12px 15px !important;
    border: 2px solid #A69B8C;
    border-radius: 10px;
    background: #FEFCF7;
    color: #3C3428;
    font-size: 14px;
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.2 !important;
    height: auto !important;
    min-height: 44px !important;
}

.single-product select[data-attribute_name]:focus,
select:focus {
    outline: none;
    border-color: #CC9544;
    box-shadow: 0 0 0 3px rgba(204,149,68,0.1);
}

.filter-section-mobile {
    margin: 0 15px 20px 15px;
}

.accordion-filter {
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.accordion-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(135deg, #CC9544 0%, #8B7355 100%);
    color: white;
    transition: all 0.3s ease;
    min-height: 52px;
}

.accordion-header.active {
    background: linear-gradient(135deg, #8B7355 0%, #3C3428 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.accordion-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.active-value {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.8;
}

.accordion-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: white;
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #F7F3E9;
}

.accordion-content.show {
    max-height: 300px;
    overflow-y: auto;
}

.accordion-pills {
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.accordion-pill {
    padding: 10px 16px;
    background: white;
    border: 1.5px solid #A69B8C;
    border-radius: 20px;
    text-decoration: none;
    color: #3C3428;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.accordion-pill:active {
    transform: scale(0.95);
}

.accordion-pill.active {
    background: #CC9544;
    color: white;
    border-color: #CC9544;
}

.accordion-pill .dropdown-arrow {
    font-size: 10px;
    opacity: 0.7;
}

.mobile-variety-modal {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 60vh;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
}

.mobile-variety-modal.show {
    display: block;
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #F7F3E9;
}

.modal-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #3C3428;
    margin: 0;
}

.modal-header button {
    background: none;
    border: none;
    font-size: 24px;
    color: #A69B8C;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.modal-content {
    padding: 15px;
    overflow-y: auto;
    max-height: calc(60vh - 70px);
}

.variety-option {
    display: block;
    padding: 14px 18px;
    margin-bottom: 8px;
    background: #F7F3E9;
    border-radius: 12px;
    text-decoration: none;
    color: #3C3428;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.variety-option:active {
    background: #CC9544;
    color: white;
}

body.modal-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
}

/* ========== FAQ PAGE STYLES ========== */
.faq-page-wrapper {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: #3C3428;
    background: #F7F3E9;
    font-weight: 300;
    overflow-x: hidden;
    margin-top: -30px;
}

.faq-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(247,243,233,0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 24px 0;
    border-bottom: 1px solid rgba(139,115,85,0.1);
    transition: all 0.3s ease;
}

.faq-nav.scrolled {
    padding: 18px 0;
    background: rgba(247,243,233,0.98);
    box-shadow: 0 2px 20px rgba(139,115,85,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    width: 58px;
    height: 58px;
    background: #3C3428;
    border: 2px solid #CC9544;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    background: #CC9544;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.logo::after {
    content: '';
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    width: 9px;
    height: 16px;
    background: #CC9544;
    border-radius: 0 0 4px 4px;
}

.logo:hover {
    transform: rotate(5deg) scale(1.05);
    border-color: #9CAF88;
}

.nav-links {
    display: flex;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #3C3428;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #CC9544;
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #8B7355;
}

.nav-cta {
    padding: 12px 28px;
    background: #CC9544;
    color: #F7F3E9 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204,149,68,0.2);
}

.nav-cta:hover {
    background: #9CAF88;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156,175,136,0.3);
}

.faq-page-wrapper .hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F7F3E9 0%, #F4F0E8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.faq-page-wrapper .hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(204,149,68,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #5D4E37;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #A69B8C;
    margin-bottom: 40px;
    font-weight: 400;
}

.faq {
    padding: 100px 0;
    background: #FEFCF7;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(156,175,136,0.04) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(204,149,68,0.04) 0%, transparent 50%);
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.faq-category {
    margin-bottom: 60px;
}

.category-title {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #CC9544;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: #F7F3E9;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(139,115,85,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(139,115,85,0.1);
}

.faq-question {
    padding: 25px 30px;
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: #5D4E37;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #F4F0E8;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #CC9544;
    transition: transform 0.3s ease;
    font-weight: 400;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 16px;
    line-height: 1.7;
    color: #A69B8C;
    font-weight: 400;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 2000px;
    opacity: 1;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #8B7355;
    font-weight: 500;
}

.faq-answer em {
    color: #CC9544;
    font-style: normal;
    font-weight: 500;
}

.disclaimer {
    margin-top: 80px;
    padding: 40px;
    background: #F4F0E8;
    border-radius: 20px;
    border: 1px solid rgba(139,115,85,0.1);
    text-align: center;
}

.disclaimer h3 {
    font-family: 'EB Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: #5D4E37;
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 15px;
    color: #A69B8C;
    line-height: 1.6;
    font-weight: 400;
}

/* ========== HOMEPAGE STYLES ========== */
.homepage-wrapper {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: #3C3428;
    background: #F7F3E9;
    font-weight: 300;
    overflow-x: hidden;
    margin-top: -30px;
}

.home-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(247,243,233,0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 24px 0;
    border-bottom: 1px solid rgba(139,115,85,0.1);
    transition: all 0.3s ease;
}

.home-nav.scrolled {
    padding: 18px 0;
    background: rgba(247,243,233,0.98);
    box-shadow: 0 2px 20px rgba(139,115,85,0.1);
}

.homepage-wrapper .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F7F3E9 0%, #F4F0E8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.homepage-wrapper .hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(204,149,68,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.homepage-wrapper .hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.homepage-wrapper .hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #FEFCF7;
    color: #8B7355;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 32px;
    border: 1px solid #E8E2D5;
    box-shadow: 0 2px 12px rgba(139,115,85,0.1);
}

.homepage-wrapper .hero-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(3.2rem, 5.5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #5D4E37;
}

.homepage-wrapper .hero-title .accent {
    color: #CC9544;
    font-weight: 500;
    position: relative;
}

.homepage-wrapper .hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #A69B8C;
    margin-bottom: 40px;
    max-width: 520px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-primary {
    padding: 16px 36px;
    background: #8B7355;
    color: #F7F3E9 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(139,115,85,0.2);
    display: inline-block;
}

.btn-primary:hover {
    background: #5D4E37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(93,78,55,0.3);
}

.btn-secondary {
    padding: 16px 0;
    color: #8B7355 !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.3px;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    color: #CC9544 !important;
    border-bottom-color: #CC9544;
}

.hero-visual {
    position: relative;
    height: 580px;
    background: linear-gradient(135deg, #E8E2D5 0%, #FEFCF7 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(139,115,85,0.15);
    border: 1px solid rgba(139,115,85,0.1);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-visual-placeholder {
    font-style: italic;
    color: #A69B8C;
    font-size: 16px;
    font-family: 'EB Garamond', serif;
}

.products {
    padding: 140px 0;
    background: #FEFCF7;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(156,175,136,0.04) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(204,149,68,0.04) 0%, transparent 50%);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
}

.section-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.8rem, 4.5vw, 3.8rem);
    font-weight: 400;
    color: #5D4E37;
    margin-bottom: 24px;
    line-height: 1.3;
}

.section-description {
    font-size: 17px;
    color: #A69B8C;
    line-height: 1.7;
    font-weight: 400;
}

.products-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 80px;
}

.product-hero {
    background: #F7F3E9;
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(139,115,85,0.1);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #CC9544, #9CAF88, #CC9544);
    border-radius: 25px 25px 0 0;
}

.product-hero:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139,115,85,0.15);
    background: #F4F0E8;
}

.product-image {
    height: 300px;
    background: linear-gradient(135deg, #E8E2D5 0%, #FEFCF7 100%);
    border-radius: 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A69B8C;
    font-style: italic;
    border: 1px solid rgba(139,115,85,0.08);
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #5D4E37;
}

.product-tagline {
    font-size: 14px;
    color: #CC9544;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-description {
    font-size: 16px;
    color: #A69B8C;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 400;
}

.product-cta {
    display: inline-block;
    padding: 14px 28px;
    border: 2px solid #CC9544;
    color: #CC9544 !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 22px;
    transition: all 0.3s ease;
    background: transparent;
}

.product-cta:hover {
    background: #CC9544;
    color: #F7F3E9 !important;
    transform: translateY(-2px);
}

/* ========== ABOUT PAGE STYLES ========== */
.about-page-wrapper {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: #3C3428;
    background: #F7F3E9;
    font-weight: 300;
    overflow-x: hidden;
    margin-top: -30px;
}

.about-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(247,243,233,0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 24px 0;
    border-bottom: 1px solid rgba(139,115,85,0.1);
    transition: all 0.3s ease;
}

.about-nav.scrolled {
    padding: 18px 0;
    background: rgba(247,243,233,0.98);
    box-shadow: 0 2px 20px rgba(139,115,85,0.1);
}

.about-page-wrapper .hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F7F3E9 0%, #F4F0E8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.about-page-wrapper .hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(204,149,68,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-page-wrapper .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.about-page-wrapper .hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

.about-page-wrapper .hero-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #5D4E37;
}

.about-page-wrapper .hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #A69B8C;
    margin-bottom: 40px;
    font-weight: 400;
}

.timeline {
    padding: 120px 0;
    background: #FEFCF7;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(156,175,136,0.04) 0%, transparent 50%), radial-gradient(circle at 90% 80%, rgba(204,149,68,0.04) 0%, transparent 50%);
}

.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #CC9544, #9CAF88);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 80px;
    align-items: center;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 40px;
    background: #F7F3E9;
    border-radius: 20px;
    margin: 0 40px;
    border: 1px solid rgba(139,115,85,0.1);
    position: relative;
    max-width: 45%;
}

.timeline-item:nth-child(even) .timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 12px solid #F7F3E9;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 12px solid #F7F3E9;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #CC9544;
    color: #F7F3E9;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(204,149,68,0.3);
    z-index: 10;
}

.timeline-title {
    font-family: 'EB Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: #5D4E37;
    margin-bottom: 16px;
}

.timeline-text {
    font-size: 16px;
    color: #A69B8C;
    line-height: 1.7;
    font-weight: 400;
}

.philosophy {
    padding: 120px 0;
    background: linear-gradient(135deg, #F4F0E8 0%, #E8E2D5 100%);
    position: relative;
}

.philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(156,175,136,0.06) 0%, transparent 60%), radial-gradient(circle at 30% 70%, rgba(204,149,68,0.06) 0%, transparent 60%);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.philosophy-text h2 {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 400;
    color: #5D4E37;
    margin-bottom: 32px;
    line-height: 1.3;
}

.philosophy-text p {
    font-size: 18px;
    color: #A69B8C;
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 24px;
}

.philosophy-visual {
    height: 400px;
    background: linear-gradient(135deg, #FEFCF7 0%, #F7F3E9 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A69B8C;
    font-style: italic;
    box-shadow: 0 15px 40px rgba(139,115,85,0.12);
    border: 1px solid rgba(139,115,85,0.08);
    font-family: 'EB Garamond', serif;
    font-size: 16px;
}

/* ========== CONTACT PAGE STYLES ========== */
.contact-page-wrapper {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.7;
    color: #3C3428;
    background: #F7F3E9;
    font-weight: 300;
    overflow-x: hidden;
    margin-top: -30px;
}

.contact-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(247,243,233,0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 24px 0;
    border-bottom: 1px solid rgba(139,115,85,0.1);
    transition: all 0.3s ease;
}

.contact-nav.scrolled {
    padding: 18px 0;
    background: rgba(247,243,233,0.98);
    box-shadow: 0 2px 20px rgba(139,115,85,0.1);
}

.contact-page-wrapper .hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F7F3E9 0%, #F4F0E8 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px;
}

.contact-page-wrapper .hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(204,149,68,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-page-wrapper .hero-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.contact-page-wrapper .hero-content {
    z-index: 2;
    position: relative;
}

.contact-page-wrapper .hero-title {
    font-family: 'EB Garamond', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #5D4E37;
}

.contact-page-wrapper .hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: #A69B8C;
    margin-bottom: 40px;
    font-weight: 400;
}

.contact {
    padding: 100px 0;
    background: #FEFCF7;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(156,175,136,0.04) 0%, transparent 50%), radial-gradient(circle at 70% 70%, rgba(204,149,68,0.04) 0%, transparent 50%);
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-item {
    background: #F7F3E9;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139,115,85,0.1);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #CC9544, #9CAF88);
    border-radius: 20px 20px 0 0;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139,115,85,0.1);
    background: #F4F0E8;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #CC9544, #9CAF88);
    color: #F7F3E9;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(204,149,68,0.2);
}

.contact-title {
    font-family: 'EB Garamond', serif;
    font-size: 20px;
    font-weight: 500;
    color: #5D4E37;
    margin-bottom: 12px;
}

.contact-link {
    color: #CC9544;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    word-break: break-all;
}

.contact-link:hover {
    color: #9CAF88;
    text-decoration: underline;
}

.contact-description {
    font-size: 14px;
    color: #A69B8C;
    margin-top: 8px;
    font-style: italic;
}

.privacy-note {
    margin-top: 60px;
    padding: 30px;
    background: #F4F0E8;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(139,115,85,0.1);
}

.privacy-note p {
    font-size: 15px;
    color: #A69B8C;
    line-height: 1.6;
    font-weight: 400;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    /* Header Grid Layout */
    .gwl-header-container {
        height: 80px !important;
        padding: 0 5px 0 10px !important; /* Seulement 5px à droite */
        display: grid !important;
        grid-template-columns: 1fr auto 28px !important;
        gap: 10px 8px !important;
    }
    
    /* Logo Section */
    .gwl-logo {
        min-width: 0 !important;
        overflow: hidden !important;
    }
    
    .gwl-logo img {
        max-height: 60px !important;
        margin-right: 8px !important;
    }
    
    .gwl-logo-desktop {
        display: none !important;
    }
    
    .gwl-logo-mobile {
        display: block !important;
    }
    
    .gwl-logo-mobile .gwl-logo-main {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.1 !important;
    }
    
    .gwl-logo-mobile .line1,
    .gwl-logo-mobile .line2 {
        font-size: 15px !important;
        color: #3C3428;
        font-weight: 500;
        white-space: nowrap !important;
        display: block !important;
    }
    
    .gwl-logo-mobile .ampersand {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 26px !important;
        font-weight: 400;
        color: #CC9544;
        z-index: 1;
        opacity: 0.8;
        mix-blend-mode: multiply;
    }
    
    .gwl-logo-sub {
        display: none !important;
    }
    
    /* Cart Button - Centré */
    .gwl-header-actions {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .gwl-cart-btn {
        padding: 6px 8px !important;
        font-size: 11px !important;
        height: 32px !important;
        white-space: nowrap !important;
        gap: 6px !important;
    }
    
    .gwl-cart-count {
        min-width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
        padding: 0 3px !important;
    }
    
    .gwl-mobile-toggle {
        display: flex !important;
        width: 28px !important;
        height: 32px !important;
        padding: 0 !important;
        margin-right: -5px !important; /* Compense le padding */
        justify-self: end !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .gwl-mobile-toggle span {
        width: 20px !important;
        height: 2px !important;
    }
    
    /* Navigation */
    .gwl-nav {
        display: none !important;
    }
    
    .gwl-mobile-nav {
        top: 80px !important;
    }
    
    /* Rest of mobile styles... */
    .trust-bar {
        top: 80px;
    }
    
    .custom-shop-container {
        padding-top: 140px;
    }
    
    .filter-section-mobile {
        padding-top: 80px;
    }
    
    .trust-items {
        gap: 20px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    /* Autres pages */
    .nav-container,
    .hero-container,
    .section-container {
        padding: 0 20px;
    }
}

/* Très petits écrans */
@media (max-width: 400px) {
    .gwl-header-container {
        gap: 8px !important;
    }
    
    .gwl-logo-mobile .line1,
    .gwl-logo-mobile .line2 {
        font-size: 13px !important;
    }
    
    .gwl-logo-mobile .ampersand {
        font-size: 22px !important;
    }
    
    .gwl-cart-btn {
        font-size: 10px !important;
        padding: 5px 6px !important;
    }
}

@media (max-width: 1024px) {
    .gwl-nav {
        display: none !important;
    }
    
    .gwl-mobile-toggle {
        display: flex !important;
    }
    
    .gwl-header-container {
        padding: 0 15px;
    }
    
    .gwl-logo-main {
        font-size: 22px;
    }
    
    .gwl-cart-btn {
        padding: 9px 12px;
        font-size: 13px;
    }
    
    .nav-container,
    .section-container {
        padding: 0 40px;
    }
}