@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

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

html {
    scroll-behavior: smooth;
}

/* ===== HEADER ===== */
.head {
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 40px;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 999;
}

.logo {
    padding: 0 50px 0 50px;
}

.logo img {
    width: 70px;
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img:hover {
    transform: scale(1.08);
    opacity: 0.85;
}

.nav-link {
    padding: 0px 20px 0;
}

.nav-link ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link ul li a {
    text-decoration: none;
    color: black;
    font-size: 22px;
    font-weight: bold;
    position: relative;
}

.nav-link a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.3s ease;
}

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

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 998;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-nav-overlay a {
    text-decoration: none;
    color: #000;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.mobile-nav-overlay a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: black;
    transition: width 0.3s ease;
}

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

/* ===== HERO ===== */
#home {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.hero-content {
    font-size: 30px;
    padding: 250px 100px;
}

.hero-content h2 {
    font-weight: bold;
    padding-bottom: 30px;
    font-family: "Lora", serif;
}

.hero-para {
    padding-bottom: 45px;
}

.hero-com {
    text-decoration: none;
    color: white;
    background-color: #000000;
    padding: 12px;
    border-radius: 6pc;
    transition: 0.6s ease-in-out;
}

.hero-com:hover {
    background-color: white;
    color: #000000;
    transform: scale(1.05);
}

/* ===== COLLECTION ===== */
#collection {
    padding: 120px 60px 80px;
    background: #fff;
}

.collection-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 8px;
}

.collection-heading {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 48px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.card {
    border: 1px solid #e0e0e0;
    background: #fff;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f5f5f5;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #000;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 10px;
    text-transform: uppercase;
    z-index: 2;
}

.badge-stock {
    position: absolute;
    top: 14px;
    right: 14px;
    background: #d32f2f;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    text-transform: uppercase;
    z-index: 2;
    animation: pulse-stock 2s infinite;
}

@keyframes pulse-stock {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.exclusivite-note {
    font-size: 12px;
    font-weight: 700;
    color: #d32f2f;
    letter-spacing: 0.5px;
    margin-top: -28px;
    margin-bottom: 32px;
    text-transform: none;
}

.card-body {
    padding: 18px 20px 20px;
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.card-name {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.card-price {
    font-size: 15px;
    font-weight: 900;
    color: #000;
}

.card-price span {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    margin-left: 2px;
}

.btn-commander {
    text-decoration: none;
    background: #000;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 16px;
    white-space: nowrap;
    border: 2px solid #000;
    transition: background 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.btn-commander:hover {
    background: #fff;
    color: #000;
}

/* ===== HISTOIRE ===== */
#histoire {
    padding: 100px 60px;
    background: #000;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.histoire-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 16px;
}

.histoire-heading {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.05;
    margin-bottom: 32px;
}

.histoire-heading em {
    font-family: "Lora", serif;
    font-style: italic;
    font-weight: 400;
}

.histoire-text {
    font-size: 15px;
    color: #aaa;
    line-height: 1.85;
    margin-bottom: 20px;
}

.histoire-text strong { color: #fff; }

.histoire-signature {
    margin-top: 36px;
    font-family: "Lora", serif;
    font-style: italic;
    font-size: 22px;
    color: #fff;
    border-top: 1px solid #333;
    padding-top: 24px;
}

.histoire-visuel { position: relative; }

.histoire-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #1a1a1a;
    border: 1px solid #222;
}

.histoire-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.85;
}

.histoire-annee {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    color: #000;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    padding: 16px 24px;
    letter-spacing: -3px;
}

.stats-row {
    display: flex;
    margin-top: 48px;
    border-top: 1px solid #222;
}

.stat {
    flex: 1;
    padding: 28px 0 0 24px;
    border-right: 1px solid #222;
}

.stat:last-child { border-right: none; }

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 10px;
    color: #555;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== POURQUOI B3B ===== */
.pourquoi-section {
    padding: 100px 60px;
    background: #fff;
    text-align: center;
}

.pourquoi-heading {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 48px;
}

.pourquoi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pourquoi-card {
    border: 1px solid #e0e0e0;
    padding: 32px 20px;
    transition: box-shadow 0.3s ease;
}

.pourquoi-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.pourquoi-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.pourquoi-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pourquoi-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ===== PREUVE SOCIALE / AVIS ===== */
.avis-section {
    padding: 100px 60px;
    background: #f7f7f7;
    text-align: center;
}

.avis-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 56px;
}

.avis-stat {
    text-align: center;
}

.avis-stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #000;
    display: block;
    margin-bottom: 4px;
}

.avis-stat-label {
    font-size: 10px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.avis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 56px;
}

.avis-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 28px 24px;
    text-align: left;
}

.avis-stars {
    color: #d32f2f;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.avis-text {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 14px;
}

.avis-author {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.avis-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.avis-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #e8e8e8;
}

.avis-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.avis-photo:hover img {
    transform: scale(1.06);
}

/* ===== FOOTER ===== */
footer {
    background: #000;
    border-top: 1px solid #1f1f1f;
}

.newsletter-wrap {
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    background: #0d0d0d;
    border-bottom: 1px solid #1a1a1a;
}

.newsletter-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.newsletter-text p {
    font-size: 12px;
    color: #555;
}

.newsletter-form {
    display: flex;
}

.newsletter-btn {
    background: #fff;
    text-decoration: none;
    color: #000;
    border: none;
    padding: 12px 22px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.newsletter-btn:hover {
    background: #222;
    color: #fff;
}

.footer-top {
    padding: 60px 60px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand-name {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.footer-brand-desc {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
    max-width: 260px;
}

.footer-col-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.footer-col ul li a:hover { color: #fff; }

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #888;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: color 0.25s ease;
}

.social-link:last-child { border-bottom: none; }
.social-link:hover { color: #fff; }

.social-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.25s, border-color 0.25s;
}

.social-link:hover .social-icon {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.footer-bottom {
    padding: 22px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1a1a1a;
}

.footer-copy {
    font-size: 11px;
    color: #3a3a3a;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    text-decoration: none;
    color: #3a3a3a;
    font-size: 11px;
    transition: color 0.25s;
}

.footer-legal a:hover { color: #888; }

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

#preloader img {
    width: 300px;
}

.pre-line {
    width: 1px;
    height: 0px;
    background: #333;
    animation: growLine 0.6s ease 0.2s forwards;
    margin-bottom: 24px;
}

.pre-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

.pre-logo span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: 4px;
}

.pre-logo .l1 { font-size: 28px; }
.pre-logo .l2 { font-size: 42px; }
.pre-logo .l3 { font-size: 32px; }

.pre-tagline {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 13px;
    color: #444;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.7s forwards;
}

.pre-bar-wrap {
    width: 200px;
    height: 1px;
    background: #222;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.9s forwards;
}

.pre-bar {
    height: 100%;
    background: #fff;
    width: 0%;
    animation: loadBar 2s cubic-bezier(0.4,0,0.2,1) 1s forwards;
}

.pre-percent {
    font-size: 10px;
    color: #444;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 0.5s ease 0.9s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes loadBar {
    to { width: 100%; }
}
@keyframes growLine {
    to { height: 50px; }
}

.exit {
    animation: slideUpPreloader 0.8s cubic-bezier(0.76,0,0.24,1) 0.4s forwards;
}
.exit .pre-logo,
.exit .pre-tagline,
.exit .pre-bar-wrap,
.exit .pre-percent,
.exit .pre-line {
    transition: opacity 0.4s ease;
    opacity: 0;
}

@keyframes slideUpPreloader {
    to { transform: translateY(-100%); }
}


/* ============================================================
   RESPONSIVE — TABLETTE (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {

    /* Header */
    .head {
        padding: 14px 24px;
    }
    .logo {
        padding: 0 16px;
    }
    .nav-link ul {
        gap: 18px;
    }
    .nav-link ul li a {
        font-size: 17px;
    }

    /* Hero */
    .hero-content {
        padding: 180px 60px 100px;
        font-size: 24px;
    }

    /* Collection */
    #collection {
        padding: 100px 40px 60px;
    }
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Histoire */
    #histoire {
        padding: 80px 40px;
        gap: 48px;
    }
    .histoire-heading {
        font-size: 34px;
    }
    .histoire-annee {
        font-size: 48px;
        bottom: -14px;
        right: -14px;
    }

    /* Pourquoi B3B */
    .pourquoi-section {
        padding: 80px 40px;
    }
    .pourquoi-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Avis / preuve sociale */
    .avis-section {
        padding: 80px 40px;
    }
    .avis-stats-row {
        gap: 32px;
    }
    .avis-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        padding: 48px 40px 32px;
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .newsletter-wrap {
        padding: 32px 40px;
    }
    .footer-bottom {
        padding: 20px 40px;
    }
}


/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {

    /* Header */
    .head {
        padding: 12px 20px;
    }
    .logo {
        padding: 0;
    }
    .logo img {
        width: 52px;
    }
    .nav-link {
        display: none; /* remplacé par menu hamburger */
    }
    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero-content {
        padding: 130px 24px 80px;
        font-size: 16px;
    }
    .hero-content h2 {
        font-size: 26px;
        padding-bottom: 18px;
    }
    .hero-para {
        padding-bottom: 28px;
        line-height: 1.65;
    }
    .hero-com {
        font-size: 14px;
        padding: 10px 22px;
    }

    /* Collection */
    #collection {
        padding: 90px 20px 60px;
    }
    .collection-heading {
        font-size: 24px;
        margin-bottom: 32px;
    }
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .card-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px 14px 16px;
    }
    .btn-commander {
        width: 100%;
        text-align: center;
    }
    .card-name {
        font-size: 11px;
    }
    .card-price {
        font-size: 13px;
    }

    /* Histoire */
    #histoire {
        grid-template-columns: 1fr;
        padding: 60px 24px 80px;
        gap: 48px;
    }
    .histoire-heading {
        font-size: 30px;
    }
    .histoire-annee {
        font-size: 40px;
        bottom: -12px;
        right: -12px;
        padding: 12px 18px;
    }
    .stats-row {
        flex-wrap: wrap;
    }
    .stat {
        flex: 0 0 50%;
        padding: 20px 0 0 16px;
    }
    .stat:nth-child(2) {
        border-right: none;
    }
    .stat:nth-child(3) {
        border-top: 1px solid #222;
        border-right: none;
    }

    /* Newsletter / Footer */
    .newsletter-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 20px;
        gap: 20px;
    }
    .newsletter-form {
        width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        padding: 40px 20px 28px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 20px;
    }
    .footer-legal {
        gap: 16px;
    }

    /* Preloader */
    #preloader img {
        width: 200px;
    }
}


/* ============================================================
   RESPONSIVE — PETIT MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {

    /* Hero */
    .hero-content {
        padding: 120px 18px 70px;
        font-size: 14px;
    }
    .hero-content h2 {
        font-size: 22px;
    }

    /* Collection : 1 colonne */
    .collection-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* Histoire */
    .histoire-heading {
        font-size: 26px;
    }
    .histoire-annee {
        font-size: 32px;
        padding: 10px 14px;
        bottom: -10px;
        right: -10px;
        letter-spacing: -2px;
    }
    .histoire-signature {
        font-size: 18px;
    }
    .stat-number {
        font-size: 22px;
    }

    /* Pourquoi B3B */
    .pourquoi-section {
        padding: 60px 20px;
    }
    .pourquoi-heading {
        font-size: 24px;
    }
    .pourquoi-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Avis / preuve sociale */
    .avis-section {
        padding: 60px 20px;
    }
    .avis-stats-row {
        flex-direction: column;
        gap: 24px;
    }
    .avis-photos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-brand-desc {
        max-width: 100%;
    }

    /* Mobile nav overlay */
    .mobile-nav-overlay a {
        font-size: 26px;
    }
}


 /* ===== MODAL ===== */
        .modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.75);
            z-index: 9999;
            align-items: center;
            justify-content: center;
            padding: 16px;
        }
        .modal-overlay.active { display: flex; }
        .modal-box {
            background: #fff;
            border-radius: 12px;
            width: 100%;
            max-width: 460px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.4);
            animation: slideUp 0.3s ease;
        }
        @keyframes slideUp {
            from { opacity:0; transform:translateY(30px); }
            to   { opacity:1; transform:translateY(0); }
        }
        .modal-header {
            background: #111;
            color: #fff;
            padding: 20px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .modal-header h3 { font-size: 1.1rem; font-family: "Lora", serif; letter-spacing: 1px; }
        .modal-close { background: none; border: none; color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1; }
        .modal-body { padding: 24px; }
        .order-summary {
            background: #f5f5f5;
            border-radius: 8px;
            padding: 14px 16px;
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .order-summary .item-name { font-weight: 600; font-size: 0.95rem; }
        .order-summary .item-price { font-weight: 700; color: #111; font-size: 1rem; }
        .form-group { margin-bottom: 14px; }
        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #555;
            margin-bottom: 6px;
        }
        .form-group input, .form-group select {
            width: 100%;
            padding: 10px 14px;
            border: 1.5px solid #ddd;
            border-radius: 8px;
            font-size: 0.95rem;
            font-family: inherit;
            transition: border-color 0.2s;
            outline: none;
            box-sizing: border-box;
        }
        .form-group input:focus { border-color: #111; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .size-grid { display: flex; gap: 8px; flex-wrap: wrap; }
        .size-btn {
            padding: 6px 14px;
            border: 1.5px solid #ddd;
            border-radius: 6px;
            background: #fff;
            cursor: pointer;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.2s;
        }
        .size-btn.selected { border-color: #111; background: #111; color: #fff; }
        .btn-whatsapp {
            width: 100%;
            padding: 14px;
            background: #25D366;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            font-family: "Lora", serif;
            letter-spacing: 1px;
            cursor: pointer;
            margin-top: 8px;
            transition: background 0.2s, transform 0.1s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .btn-whatsapp:hover { background: #1ebe5d; }
        .btn-whatsapp:active { transform: scale(0.98); }
        .whatsapp-info {
            margin-top: 14px;
            padding: 12px 14px;
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            border-radius: 8px;
            font-size: 0.82rem;
            color: #166534;
            text-align: center;
            line-height: 1.5;
        }
        .success-screen { display: none; text-align: center; padding: 40px 24px; }
        .success-screen.active { display: block; }
        .success-icon { font-size: 3rem; margin-bottom: 12px; }
        .success-screen h3 { font-family: "Lora", serif; font-size: 1.3rem; margin-bottom: 8px; }
        .success-screen p { color: #666; font-size: 0.9rem; }
