/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow-primary: #e3ab47;
    --yellow-secondary: #f5c563;
    --beige-bg: #fdfaf5;
    --yellow-accent: #ffd966;
    --yellow-light: #fdfaf5;
    --text-dark: #3e2c1c;
    --text-gray: #666;
    --white: #ffffff;
    --orange-accent: #ff9f45;

    /* Packs colors */
    --pack-printemps: #e8f5e0;
    --pack-ete: #fef4d6;
    --pack-automne: #ffe5d9;
    --pack-hiver: #e3f2fd;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--beige-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER */
header {
    background: var(--white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    border-bottom: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.navbar {
    display: flex;
    justify-content: center;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.navbar a:hover {
    background-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* BURGER MENU */
.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* BUTTONS */
.btn-primary,
.btn-primary-large {
    background: var(--yellow-primary);
    color: var(--text-dark);
    border: 1px solid rgba(227, 171, 71, 0.2);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-primary-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary:hover,
.btn-primary-large:hover {
    transform: translateY(-2px);
    background-color: var(--yellow-secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 0.8rem 1.8rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-pack {
    background: linear-gradient(135deg, #b3d9f7 0%, #d4e9ff 100%);
    color: var(--text-dark);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    width: 100%;
    margin-top: auto;
    box-shadow: 0 4px 12px rgba(179, 217, 247, 0.3);
}

.btn-pack:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 18px rgba(179, 217, 247, 0.4);
}

.header-btn {
    white-space: nowrap;
    justify-self: end;
}

/* HERO SECTION */
.hero-section {
    background: transparent;
    color: var(--text-dark);
    padding: 5rem 2rem;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
    color: var(--text-dark);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    order: -1;
}

.fridge-card {
    background-color: transparent;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: none;
    border: 1px solid rgba(227, 171, 71, 0.2);
    max-width: 500px;
}

.fridge-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    mix-blend-mode: multiply;
}

/* SECTIONS */
section {
    padding: 5rem 2rem;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* FRIGOS SECTION */
.frigos-section {
    background: transparent;
    position: relative;
}

.frigos-header-visual {
    display: flex;
    justify-content: center;
    margin: 2rem 0 3rem;
}

.sticker-frigo-ouvert {
    max-width: 400px;
    height: auto;
    animation: wiggle 4s ease-in-out infinite;
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-2deg);
    }

    75% {
        transform: rotate(2deg);
    }
}

.frigos-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.frigo-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(227, 171, 71, 0.1);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: hidden;
}

.frigo-image-container {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: transparent;
}

.frigo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.frigo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.frigo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.frigo-subtitle {
    color: var(--text-gray);
    font-size: 1rem;
}

.frigo-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--orange-accent);
    margin: 1rem 0;
    display: none;
}

.frigo-capacity {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

/* PACKS SECTION */
.packs-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.section-header-with-sticker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.section-header-with-sticker h2 {
    margin-bottom: 0;
}

.sticker-collegues {
    max-width: 300px;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

.packs-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1400px) {
    .packs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

.pack-card {
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 400px;
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pack-printemps {
    background-color: var(--pack-printemps);
}

.pack-ete {
    background-color: var(--pack-ete);
}

.pack-automne {
    background-color: var(--pack-automne);
}

.pack-hiver {
    background-color: var(--pack-hiver);
}

.pack-standard {
    background-color: #fff0f0;
}

.pack-mix {
    background-color: #f0f0ff;
}

.pack-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pack-subtitle {
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.8;
}

.pack-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-style: italic;
}

.pack-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
}

.pack-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.pack-list li:before {
    content: "• ";
    color: #ffb88c;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* CONCEPT SECTION */
.concept-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff9e6 100%);
}

.concept-content {
    max-width: 1400px;
    margin: 0 auto;
}

.concept-with-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    margin-top: 2rem;
}

.concept-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
}

.concept-item {
    background-color: transparent;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: none;
    border: 1px solid rgba(227, 171, 71, 0.1);
    transition: all 0.3s;
}

.concept-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.concept-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.concept-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffb88c;
}

.concept-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

.concept-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.sticker-delivery {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* FAQ SECTION */
.faq-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    padding: 4rem 2rem;
}

.faq-content {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #fff9e6 0%, #fef4d6 100%);
    padding: 1.5rem;
    border-radius: 16px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-content h2 {
        font-size: 2rem;
    }
}

/* CONTACT SECTION */
.contact-section {
    background: transparent;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.contact-text {
    flex: 1;
    min-width: 300px;
}

.contact-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-text p {
    text-align: left;
    color: var(--text-gray);
}

.sticker-contact {
    max-width: 250px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.contact-content h2 {
    margin-bottom: 1rem;
}

.contact-content>p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.contact-form {
    background-color: transparent;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: none;
    border: 1px solid rgba(227, 171, 71, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb88c;
    box-shadow: 0 0 0 3px rgba(255, 184, 140, 0.1);
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}

#qrcode-card {
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: none;
}

.qrcode-with-sticker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.qrcode-content {
    flex: 1;
    min-width: 250px;
}

.sticker-qr {
    max-width: 200px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

#qrcode-card p {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* FOOTER */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* TUNNEL DE COMMANDE */
.tunnel-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.tunnel-overlay.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
}

.tunnel-container {
    background: transparent;
    border-radius: 32px;
    padding: 3rem;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    position: relative;
    box-shadow: none;
    animation: slideIn 0.4s ease-out;
    border: 1px solid rgba(227, 171, 71, 0.2);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.tunnel-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tunnel-close:hover {
    background: linear-gradient(135deg, #ffb88c 0%, #ffd4a3 100%);
    color: var(--text-dark);
    border-color: #ffb88c;
    transform: rotate(90deg);
}

/* STEPPER */
.stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0 1rem;
    position: relative;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #fef4d6 0%, #fff9e6 100%);
    z-index: 0;
    border-radius: 2px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e0e0e0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step.active .step-number {
    background: linear-gradient(135deg, #ffb88c 0%, #ffd4a3 100%);
    color: var(--text-dark);
    transform: scale(1.15);
    font-weight: 800;
    border-color: #ffb88c;
    box-shadow: 0 4px 16px rgba(255, 184, 140, 0.4);
}

.step.completed .step-number {
    background: linear-gradient(135deg, #c8e6c0 0%, #e0f2d9 100%);
    color: var(--text-dark);
    border-color: #c8e6c0;
}

.step-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    text-align: center;
}

.step.active .step-label {
    color: #ffb88c;
    font-weight: 700;
}

/* TUNNEL CONTENT */
.tunnel-content {
    min-height: 400px;
}

.tunnel-step {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.tunnel-step h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
}

/* CLIENT TYPE SELECTION */
.client-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.client-type-card {
    background-color: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    gap: 1rem;
    min-height: 380px;
}

.client-type-card:hover {
    border-color: #ffb88c;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255, 184, 140, 0.2);
}

.client-type-card.selected {
    border-color: #ffb88c;
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    box-shadow: 0 8px 24px rgba(255, 184, 140, 0.3);
    border-width: 3px;
}

.client-icon {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.client-type-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.client-desc {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.client-benefits {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: auto;
}

.client-benefits li {
    padding: 0.6rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.client-benefits li:before {
    content: "✓ ";
    color: #ffb88c;
    font-weight: bold;
    margin-right: 0.7rem;
    font-size: 1.2rem;
}

/* OPTIONS GRID */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.option-card {
    background-color: transparent;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    box-shadow: none;
}

.option-card:hover {
    border-color: #ffb88c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 184, 140, 0.2);
}

.option-card.selected {
    border-color: #ffb88c;
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    box-shadow: 0 6px 20px rgba(255, 184, 140, 0.3);
    border-width: 3px;
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.option-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.option-subtitle {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.option-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.price-display {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--orange-accent);
    margin: 0.5rem 0;
    display: none;
}

/* PACK OPTIONS IN TUNNEL */
.packs-grid-tunnel {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.pack-option {
    min-height: 300px;
}

.pack-option.disabled {
    opacity: 0.5;
    cursor: not-allowed !important;
    pointer-events: none;
    filter: grayscale(50%);
}

.pack-option.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: #e0e0e0;
}

.pack-printemps-option {
    background-color: var(--pack-printemps);
    border-color: #c8e6c0;
}

.pack-ete-option {
    background-color: var(--pack-ete);
    border-color: #f9e8b8;
}

.pack-automne-option {
    background-color: var(--pack-automne);
    border-color: #ffc9b3;
}

.pack-hiver-option {
    background-color: var(--pack-hiver);
    border-color: #b3d9f7;
}

.pack-standard-option {
    background-color: #fff0f0;
    border-color: #ffcccc;
}

.pack-mix-option {
    background-color: #f0f0ff;
    border-color: #ccccff;
}

.pack-frigo-only-option {
    background-color: #f5f5f5;
    border-color: #d0d0d0;
}

.pack-availability-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0.5rem 0;
    color: var(--text-gray);
}

.frigo-only-pricing {
    text-align: left;
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.8;
    display: none;
}

.frigo-only-pricing p {
    margin: 0.3rem 0;
}

.pack-list-small {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
}

.pack-list-small li {
    padding: 0.3rem 0;
    color: var(--text-dark);
}

.pack-list-small li:before {
    content: "✓ ";
    color: #ffb88c;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* TUNNEL FORMS */
.tunnel-form {
    max-width: 700px;
    margin: 0 auto 2rem;
}

.same-as-delivery {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 184, 140, 0.2);
}

.same-as-delivery label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
}

.same-as-delivery input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* TUNNEL NAVIGATION */
.tunnel-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    max-width: 700px;
    margin: 2rem auto 0;
}

.tunnel-nav button {
    flex: 1;
}

/* MODAL RÉCAPITULATIF */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
}

.modal-container {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
    border-radius: 32px;
    padding: 3rem;
    max-width: 800px;
    width: 100%;
    margin: auto;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.4s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: linear-gradient(135deg, #ffb88c 0%, #ffd4a3 100%);
    color: var(--text-dark);
    border-color: #ffb88c;
    transform: rotate(90deg);
}

.modal-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.summary-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.summary-content-inline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.summary-section {
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    padding: 1.5rem;
    border-radius: 12px;
}

.summary-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffb88c;
}

.summary-section p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.summary-price {
    font-weight: 700;
    color: var(--orange-accent);
    font-size: 1.1rem;
    display: none;
}

.summary-total {
    background-color: var(--yellow-accent);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    display: none;
}

.summary-total h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-actions button {
    flex: 1;
}

/* PACK DETAILS MODAL */
.pack-details-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #ffb88c;
    font-weight: 600;
    margin-bottom: 2rem;
}

.pack-details-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pack-details-section {
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    padding: 1.5rem;
    border-radius: 12px;
}

.pack-details-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffb88c;
}

.pack-details-section p {
    margin: 0.5rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.pack-details-section ul {
    list-style: none;
    padding: 0;
}

.pack-details-section ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.pack-details-section ul li:before {
    content: "✓ ";
    color: #ffb88c;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* NEW SEASONAL PACKS DESIGN */
.packs-section-new {
    background: transparent;
    padding: 5rem 2rem;
}

.packs-container {
    max-width: 1400px;
    margin: 0 auto;
}

.packs-header {
    text-align: center;
    margin-bottom: 3rem;
}

.packs-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.packs-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Season Selector */
.season-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.season-btn {
    padding: 1.2rem;
    border-radius: 16px;
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid rgba(227, 171, 71, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.season-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.season-btn.active[data-season="autumn"] {
    background: linear-gradient(135deg, #ffb88c 0%, #ffd4a3 100%);
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 184, 140, 0.4);
}

.season-btn.active[data-season="summer"] {
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(254, 244, 214, 0.4);
}

.season-btn.active[data-season="winter"] {
    background: linear-gradient(135deg, #b3d9f7 0%, #d4e9ff 100%);
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(179, 217, 247, 0.4);
}

.season-btn.active[data-season="spring"] {
    background: linear-gradient(135deg, #c8e6c0 0%, #e0f2d9 100%);
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(200, 230, 192, 0.4);
}

.season-btn.active[data-season="standard"] {
    background: linear-gradient(135deg, #ffcccc 0%, #ffe5e5 100%);
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 204, 204, 0.4);
}

.season-btn.active[data-season="mix"] {
    background: linear-gradient(135deg, #d4c5f9 0%, #e8deff 100%);
    color: var(--text-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(212, 197, 249, 0.4);
}

/* Main Pack Card */
.pack-main-card {
    display: none;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.5s ease;
    margin-bottom: 2rem;
}

.pack-main-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Pack Header with Gradient */
.pack-header {
    padding: 2rem;
    color: white;
}

.pack-header-autumn {
    background: linear-gradient(135deg, #ffb88c 0%, #ffd4a3 100%);
    color: var(--text-dark);
}

.pack-header-summer {
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    color: var(--text-dark);
}

.pack-header-winter {
    background: linear-gradient(135deg, #b3d9f7 0%, #d4e9ff 100%);
    color: var(--text-dark);
}

.pack-header-spring {
    background: linear-gradient(135deg, #c8e6c0 0%, #e0f2d9 100%);
    color: var(--text-dark);
}

.pack-header-standard {
    background: linear-gradient(135deg, #ffcccc 0%, #ffe5e5 100%);
    color: var(--text-dark);
}

.pack-header-mix {
    background: linear-gradient(135deg, #d4c5f9 0%, #e8deff 100%);
    color: var(--text-dark);
}

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

.pack-title-group h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pack-title-group p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.pack-price-highlight {
    text-align: right;
    display: none;
}

.price-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.price-unit {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Description Bar */
.pack-description-bar {
    background: linear-gradient(135deg, #fff9e6 0%, #fef4d6 100%);
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.pack-description-bar p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

/* Products Grid */
.pack-products-grid {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.product-card {
    background-color: white;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 184, 140, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #fff9e6 0%, #fef4d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
}

.product-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.product-brand {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
}

.product-price-group {
    display: none;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

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

.product-ht {
    font-size: 0.75rem;
    color: var(--text-gray);
}

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

.product-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.product-tag-autumn {
    background-color: #ffb88c;
    color: var(--text-dark);
}

.product-tag-summer {
    background-color: #fef4d6;
    color: var(--text-dark);
}

.product-tag-winter {
    background-color: #b3d9f7;
    color: var(--text-dark);
}

.product-tag-spring {
    background-color: #c8e6c0;
    color: var(--text-dark);
}

.product-tag-standard {
    background-color: #ffcccc;
    color: var(--text-dark);
}

.product-tag-mix {
    background-color: #d4c5f9;
    color: var(--text-dark);
}

.product-meta {
    font-size: 0.75rem;
    color: var(--text-gray);
}

/* Pack Footer Stats */
.pack-footer {
    padding: 2rem;
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.pack-footer-autumn {
    background: linear-gradient(135deg, #ffb88c 0%, #ffd4a3 100%);
    color: var(--text-dark);
}

.pack-footer-summer {
    background: linear-gradient(135deg, #fef4d6 0%, #fff9e6 100%);
    color: var(--text-dark);
}

.pack-footer-winter {
    background: linear-gradient(135deg, #b3d9f7 0%, #d4e9ff 100%);
    color: var(--text-dark);
}

.pack-footer-spring {
    background: linear-gradient(135deg, #c8e6c0 0%, #e0f2d9 100%);
    color: var(--text-dark);
}

.pack-footer-standard {
    background: linear-gradient(135deg, #ffcccc 0%, #ffe5e5 100%);
    color: var(--text-dark);
}

.pack-footer-mix {
    background: linear-gradient(135deg, #d4c5f9 0%, #e8deff 100%);
    color: var(--text-dark);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* CTA Section */
.pack-cta-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 184, 140, 0.1);
}

.pack-cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.pack-cta-section p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.btn-cta-large {
    background: var(--yellow-primary);
    color: var(--text-dark);
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(227, 171, 71, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    background: var(--yellow-secondary);
    box-shadow: 0 12px 32px rgba(227, 171, 71, 0.3);
}

.cta-icon {
    width: 20px;
    height: 20px;
}

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .options-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {

    /* New Packs Section Responsive */
    .packs-header h2 {
        font-size: 2rem;
    }

    .season-selector {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pack-products-grid {
        grid-template-columns: 1fr;
    }

    .pack-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .pack-price-highlight {
        text-align: center;
    }

    .pack-title-group h3 {
        font-size: 2rem;
    }

    .pack-footer {
        gap: 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }

    .pack-cta-section {
        padding: 2rem;
    }

    .pack-cta-section h3 {
        font-size: 1.5rem;
    }

    .header-container {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .burger {
        display: flex;
        grid-column: 2;
        position: relative;
        z-index: 1201;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--yellow-primary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        grid-column: 1 / -1;
        z-index: 1100;
        pointer-events: none;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
        pointer-events: auto;
    }

    .navbar ul {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }

    .navbar li {
        width: 100%;
        text-align: center;
    }

    .header-btn {
        display: none;
    }

    .cta-header {
        display: none;
    }

    section {
        padding: 3rem 1.5rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .frigos-grid,
    .packs-grid {
        grid-template-columns: 1fr;
    }

    .concept-with-visual {
        grid-template-columns: 1fr;
    }

    .concept-visual {
        order: -1;
    }

    .sticker-delivery {
        max-width: 300px;
    }

    .sticker-frigo-ouvert {
        max-width: 250px;
    }

    .sticker-collegues {
        max-width: 200px;
    }

    .section-header-with-sticker {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-text h2,
    .contact-text p {
        text-align: center;
    }

    .sticker-contact {
        max-width: 180px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .tunnel-container {
        padding: 2rem 1.5rem;
    }

    .stepper {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stepper::before {
        display: none;
    }

    .step-label {
        font-size: 0.75rem;
    }

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

    .tunnel-nav {
        flex-direction: column;
    }

    .modal-container {
        padding: 2rem 1.5rem;
    }

    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .tunnel-step h2 {
        font-size: 1.5rem;
    }

    /* CARDS & SECTIONS */
    .container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .frigos-section {
        padding: 6rem 0;
        background-color: var(--beige-bg);
    }

    .frigos-section h2 {
        font-size: 3rem;
        text-align: center;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .section-intro {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 4rem;
        color: var(--text-gray);
        font-size: 1.1rem;
    }

    .frigos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .frigo-card {
        background: transparent;
        border-radius: 20px;
        padding: 2.5rem;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(227, 171, 71, 0.1);
    }

    .frigo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(227, 171, 71, 0.15);
        border-color: var(--yellow-primary);
    }

    .frigo-badge {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        background: var(--yellow-primary);
        color: var(--text-dark);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .frigo-card h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        font-weight: 700;
    }

    .frigo-subtitle {
        color: var(--yellow-primary);
        font-weight: 600;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    .frigo-price {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .frigo-capacity {
        color: var(--text-gray);
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .frigo-image-container {
        height: 200px;
        margin-bottom: 1.5rem;
    }

    .frigo-features {
        list-style: none;
        text-align: center;
        margin-bottom: 2.5rem;
        flex-grow: 1;
        padding: 0;
    }

    .frigo-features li {
        margin-bottom: 0.8rem;
        font-size: 0.95rem;
        color: var(--text-gray);
    }

    .frigo-card .btn-secondary {
        width: 100%;
    }

    .price-display {
        font-size: 1.5rem;
    }

    .total-price {
        font-size: 2rem;
    }
}

/* CONCEPT SECTION */
.concept-section {
    padding: 6rem 0;
    background-color: transparent;
}

.concept-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.concept-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--text-gray);
    font-size: 1.2rem;
    line-height: 1.8;
}

.concept-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.concept-card {
    text-align: center;
    padding: 3rem;
    background: transparent;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(227, 171, 71, 0.1);
}

.concept-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 15px 40px rgba(227, 171, 71, 0.1);
}

.concept-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.concept-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.concept-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* HOW IT WORKS */
.how-it-works {
    margin-bottom: 6rem;
    text-align: center;
}

.how-it-works h3 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step-item {
    position: relative;
    padding: 2rem;
}

.step-item .step-number {
    width: 50px;
    height: 50px;
    background: var(--yellow-primary);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* DELIVERY ZONE */
.delivery-zone {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--beige-bg);
    padding: 4rem;
    border-radius: 32px;
}

.zone-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.zone-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.zone-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ PAGE */
.faq-page-section {
    padding: 6rem 4rem;
    background-color: var(--white);
}

.faq-page-section h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-categories {
    display: grid;
    gap: 4rem;
    margin-bottom: 4rem;
}

.faq-category h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--yellow-primary);
    border-bottom: 2px solid var(--yellow-light);
    padding-bottom: 0.5rem;
}

.faq-list {
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: var(--yellow-light);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(227, 171, 71, 0.1);
}

.frigo-card h3 {
    font-size: 1.5rem;
    margin: 0;
}

.frigo-subtitle {
    font-weight: 600;
    color: var(--yellow-primary);
    margin-bottom: 0.2rem;
}

.frigo-catchphrase {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    padding: 4rem;
    background: var(--beige-bg);
    border-radius: 24px;
}

.faq-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .delivery-zone {
        grid-template-columns: 1fr;
        padding: 2rem;
        text-align: center;
    }

    .faq-page-section {
        padding: 4rem 1.5rem;
    }

    .faq-page-section h2 {
        font-size: 2.2rem;
    }

    .faq-category h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-cta {
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-page-section {
        padding: 3rem 1rem;
    }

    .faq-page-section h2 {
        font-size: 1.9rem;
    }

    .faq-categories {
        gap: 2.5rem;
    }

    .faq-list {
        gap: 1.25rem;
    }
}

/* CONTACT SECTION */
.contact-section {
    padding: 6rem 0;
    background-color: var(--beige-bg);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.contact-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-text p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.sticker-contact {
    width: 150px;
    height: auto;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow-primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(227, 171, 71, 0.1);
}

.contact-form .btn-primary {
    justify-self: start;
    padding: 1rem 3rem;
}

@media (max-width: 768px) {
    .contact-header {
        flex-direction: column;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 2rem;
    }
}
