/* ============================================
   LE COFFRE A CBD - Design System 2026
   ============================================ */

/* --- CSS Variables / Palette --- */
:root {
    /* Couleurs principales */
    --green-primary: #7ab934;
    --green-dark: #5a9a1a;
    --green-light: #a4d65e;
    --green-pale: #f0f8e8;

    /* Marrons */
    --brown-light: #d1985c;
    --brown-dark: #975f44;
    --brown-pale: #fdf5ee;

    /* Neutres */
    --white: #ffffff;
    --off-white: #fafaf7;
    --gray-100: #f5f5f2;
    --gray-200: #e8e8e3;
    --gray-300: #d0d0c8;
    --gray-400: #a0a098;
    --gray-500: #6a6e49;
    --gray-700: #3a3a35;
    --gray-900: #1a1a18;
    --black: #111111;

    /* Accent */
    --accent-gold: #c9a84c;
    --accent-gold-light: #f5ecd4;

    /* Fonctionnels */
    --success: #4caf50;
    --error: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;

    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);
    --shadow-green: 0 4px 20px rgba(122,185,52,0.25);

    /* Rayons */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typographie */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;

    /* Tailles */
    --container-max: 1280px;
    --container-narrow: 960px;
    --header-height: 80px;
    --topbar-height: 40px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    background: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--container-narrow);
}

/* --- Typographie --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.section-title h2 {
    margin-bottom: 16px;
}

.section-title p {
    color: var(--gray-400);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--brown-light));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: var(--gray-900);
    color: var(--gray-200);
    font-size: 0.8rem;
    height: var(--topbar-height);
    display: flex;
    align-items: center;
    letter-spacing: 0.3px;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar__left {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar__right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar a {
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

.topbar a:hover {
    color: var(--green-light);
}

.topbar__separator {
    width: 1px;
    height: 14px;
    background: var(--gray-500);
}

.topbar__icon {
    width: 14px;
    height: 14px;
    margin-right: 6px;
    vertical-align: -2px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    background: var(--white);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-smooth);
}

.header--scrolled {
    box-shadow: var(--shadow-md);
}

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

.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header__logo img {
    height: 55px;
    width: auto;
}

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

.nav__link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--green-primary);
    background: var(--green-pale);
}

.nav__link--active {
    color: var(--green-primary);
    font-weight: 600;
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--green-primary);
    border-radius: 1px;
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition-smooth);
    z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.nav__dropdown-item:hover {
    background: var(--green-pale);
    color: var(--green-primary);
}

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

/* Header actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__action-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--gray-700);
    transition: all var(--transition-fast);
    position: relative;
}

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

.header__action-btn svg {
    width: 22px;
    height: 22px;
}

.header__cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--green-primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

/* Mobile menu toggle */
.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.header__burger span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-900) 0%, #2a3518 50%, var(--gray-900) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(122,185,52,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(209,152,92,0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    color: var(--white);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(122,185,52,0.15);
    border: 1px solid rgba(122,185,52,0.3);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green-primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero__title span {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__tagline {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 600;
    color: var(--green-light);
    margin: -8px 0 18px;
    line-height: 1.2;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero__stat {
    text-align: left;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green-light);
}

.hero__stat-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* Hero image side */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.hero__image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero__float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.hero__float-card--top {
    top: 10px;
    right: -60px;
}

.hero__float-card--bottom {
    bottom: 40px;
    left: -70px;
    animation-delay: 2s;
}

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

.hero__float-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.hero__float-icon--green {
    background: var(--green-pale);
    color: var(--green-primary);
}

.hero__float-icon--brown {
    background: var(--brown-pale);
    color: var(--brown-dark);
}

.hero__float-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-900);
}

.hero__float-text span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-smooth);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white;
    box-shadow: var(--shadow-green);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(122,185,52,0.35);
}

.btn--secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn--secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn--outline {
    background: transparent;
    color: var(--green-primary);
    border: 1.5px solid var(--green-primary);
}

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

.btn--brown {
    background: linear-gradient(135deg, var(--brown-light), var(--brown-dark));
    color: white;
}

.btn--brown:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(209,152,92,0.3);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.82rem;
}

.btn--lg {
    padding: 18px 42px;
    font-size: 1rem;
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   AVANTAGES / TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--white);
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.trust-item:hover {
    background: var(--green-pale);
}

.trust-item__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--green-pale), var(--white));
    border: 1px solid rgba(122,185,52,0.15);
}

.trust-item__text h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.trust-item__text p {
    font-size: 0.78rem;
    color: var(--gray-400);
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories {
    padding: 64px 0;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    group: true;
}

.category-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    color: var(--white);
    background: linear-gradient(135deg, var(--gray-500), var(--gray-700));
}

.category-card:hover .category-card__image {
    transform: scale(1.08);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    z-index: 1;
    transition: all var(--transition-smooth);
}

.category-card:hover .category-card__overlay {
    background: linear-gradient(to top, rgba(26,53,10,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.category-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform var(--transition-smooth);
}

.category-card:hover .category-card__content {
    transform: translateY(0);
}

.category-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.category-card__count {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--green-light);
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition-smooth);
}

.category-card:hover .category-card__link {
    opacity: 1;
    transform: translateY(0);
}

.category-card__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.category-card__link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products {
    padding: 64px 0;
    background: var(--gray-100);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card__image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--gray-100);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    color: var(--gray-500);
    background: var(--gray-200);
}

.product-card:hover .product-card__image {
    transform: scale(1.06);
}

.product-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge--new {
    background: var(--green-primary);
    color: white;
}

.product-badge--sale {
    background: var(--error);
    color: white;
}

.product-badge--bio {
    background: var(--accent-gold);
    color: white;
}

.product-card__quick-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-smooth);
}

.product-card:hover .product-card__quick-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card__quick-btn {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.product-card__quick-btn:hover {
    background: var(--green-primary);
    color: white;
}

.product-card__quick-btn svg {
    width: 18px;
    height: 18px;
}

.product-card__body {
    padding: 20px;
}

.product-card__category {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brown-light);
    margin-bottom: 6px;
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card__name a:hover {
    color: var(--green-primary);
}

.product-card__desc {
    font-size: 0.82rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-card__price-current {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-primary);
}

.product-card__price-old {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-card__add-btn {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: var(--green-pale);
    color: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.product-card__add-btn:hover {
    background: var(--green-primary);
    color: white;
    box-shadow: var(--shadow-green);
}

.product-card__add-btn svg {
    width: 20px;
    height: 20px;
}

/* Ratings */
.product-card__rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.product-card__stars {
    display: flex;
    gap: 1px;
    color: var(--accent-gold);
    font-size: 0.75rem;
}

.product-card__rating-count {
    font-size: 0.72rem;
    color: var(--gray-400);
}

/* ============================================
   ABOUT / PRESENTATION
   ============================================ */
.about {
    padding: 64px 0;
}

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

.about__images {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 85%;
    color: var(--gray-500);
    background: var(--gray-200);
    min-height: 300px;
}

.about__image-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 55%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    color: var(--gray-500);
    background: var(--gray-200);
    min-height: 200px;
}

.about__badge {
    position: absolute;
    top: -20px;
    right: 40px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-green);
}

.about__badge-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.about__badge-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.about__label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--green-primary);
}

.about h2 {
    margin-bottom: 20px;
}

.about__text {
    font-size: 1rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about__feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.about__feature span {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* Signature Vincent */
.about__signature {
    margin: 28px 0 32px;
    padding-left: 20px;
    border-left: 3px solid var(--green-primary);
}

.about__signature-text {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.about__signature-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.about__signature-name span {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-400);
}

/* Social links about */
.about__social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.about__social-link:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
    background: var(--green-pale);
}

.about__social-link svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
    padding: 56px 0;
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-light) 100%);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.promo-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.promo-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.promo-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
    padding: 64px 0;
    background: var(--gray-100);
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 24px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.78rem;
    color: var(--gray-400);
}

.blog-card__tag {
    background: var(--green-pale);
    color: var(--green-primary);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.72rem;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card__title:hover {
    color: var(--green-primary);
}

.blog-card__excerpt {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-primary);
    transition: gap var(--transition-fast);
}

.blog-card__read-more:hover {
    gap: 10px;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: 56px 0;
    background: var(--green-pale);
}

.newsletter .container {
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 12px;
}

.newsletter p {
    color: var(--gray-500);
    margin-bottom: 32px;
}

.newsletter__form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter__input {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    background: var(--white);
    font-size: 0.9rem;
    transition: border-color var(--transition-fast);
    outline: none;
}

.newsletter__input:focus {
    border-color: var(--green-primary);
}

.newsletter__message {
    max-width: 560px;
    margin: 0 auto 28px;
    padding: 16px 22px;
    border-radius: var(--radius-lg, 14px);
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    animation: newsletterMsgIn 0.35s ease;
}

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

.newsletter__message--success {
    background: #eaf7e0;
    color: #2f6d12;
    border-color: var(--green-primary, #7ab934);
}

.newsletter__message--error {
    background: #fdecea;
    color: #b3271e;
    border-color: #e0796f;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand img {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(2);
}

.footer__brand p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: white;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
}

.footer__column h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer__links li {
    margin-bottom: 12px;
}

.footer__links a {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    color: var(--green-light);
    padding-left: 6px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--gray-400);
}

.footer__contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--green-primary);
    margin-top: 2px;
}

.footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer__bottom-links {
    display: flex;
    gap: 24px;
}

.footer__bottom-links a {
    color: var(--gray-500);
}

.footer__bottom-links a:hover {
    color: var(--green-light);
}

.footer__legal-notice {
    text-align: center;
    padding: 16px 0;
    font-size: 0.72rem;
    color: var(--gray-500);
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-green { color: var(--green-primary); }
.text-brown { color: var(--brown-light); }
.bg-green-pale { background: var(--green-pale); }
.bg-brown-pale { background: var(--brown-pale); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subtitle { margin: 0 auto 36px; }
    .hero__actions { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { display: none; }

    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar { display: none; }

    .nav { display: none; }

    .header__burger { display: flex; }

    .nav--mobile {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 24px;
        gap: 4px;
        overflow-y: auto;
        z-index: 999;
        animation: slideDown 0.3s ease-out;
    }

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

    .nav--mobile .nav__link {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--gray-200);
        border-radius: 0;
    }

    .hero {
        min-height: 60vh;
        padding: 60px 0;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .blog__grid {
        grid-template-columns: 1fr;
    }

    .newsletter__form {
        flex-direction: column;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .trust-bar .container {
        grid-template-columns: 1fr;
    }

    .products__grid {
        grid-template-columns: 1fr;
    }

    .categories__grid {
        grid-template-columns: 1fr;
    }

    .about__features {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        flex-direction: column;
    }
}
