/* ===== Variables - Panozzi Brand Colors ===== */
:root {
    --primary-color: #1e1a5f;
    --primary-light: #2d2a7c;
    --accent-color: #ffd728;
    --accent-dark: #e6c224;
    --dark-color: #1e1a5f;
    --light-color: #ffffff;
    --text-color: #1e1a5f;
    --text-light: #666666;
    --white: #ffffff;
    --pink-light: #f8e8e8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-color);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    display: block;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--white);
    font-weight: 400;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.date-display {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 20px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    width: 100%;
    padding-top: 35%;
    margin-top: 80px;
    background: url('../images/hero-header.jpg') center/cover no-repeat;
    position: relative;
}

@media (max-width: 992px) {
    .hero {
        padding-top: 45%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 55%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70%;
    }
}

/* Hero Button */
.btn-hero {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.btn-hero:hover {
    background: var(--white);
    transform: translateX(-50%) scale(1.05);
}

@media (max-width: 768px) {
    .btn-hero {
        bottom: 3%;
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

.hero-content {
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

/* ===== Delivery Icons Section ===== */
.delivery-icons-section {
    background: var(--primary-color);
    padding: 40px 20px;
}

.delivery-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.delivery-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.delivery-icon-card:hover {
    transform: scale(1.1);
}

.delivery-icon-card span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-top: 10px;
    letter-spacing: 1px;
}

.delivery-logo {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.icon-circle svg {
    width: 40px;
    height: 40px;
}

.icon-circle.uber {
    background: #000000;
    color: #06C167;
}

.icon-circle.deliveroo {
    background: #00CCBC;
    color: white;
}

.icon-circle.emporter {
    background: var(--accent-color);
    color: var(--primary-color);
}

/* Falling Animation */
@keyframes fallFromSky {
    0% {
        opacity: 0;
        transform: translateY(-100px) rotate(-10deg);
    }
    50% {
        opacity: 1;
        transform: translateY(10px) rotate(5deg);
    }
    70% {
        transform: translateY(-5px) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.fall-animation {
    opacity: 0;
}

.fall-animation.animate {
    animation: fallFromSky 0.8s ease-out forwards;
}

.fall-animation.delay-1.animate {
    animation-delay: 0.2s;
}

.fall-animation.delay-2.animate {
    animation-delay: 0.5s;
}

.fall-animation.delay-3.animate {
    animation-delay: 0.8s;
}

@media (max-width: 768px) {
    .delivery-icons-container {
        gap: 30px;
    }

    .delivery-logo,
    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle svg {
        width: 30px;
        height: 30px;
    }

    .delivery-icon-card span {
        font-size: 1rem;
    }
}

/* ===== Promo Photos Slider ===== */
.promo-slider-section {
    background: var(--white);
    overflow: hidden;
    padding: 0;
}

.promo-slider {
    width: 100%;
    overflow: hidden;
}

.promo-slider-track {
    display: flex;
    animation: promo-scroll 20s linear infinite;
    width: fit-content;
}

.promo-slide {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    margin-right: 0;
}

.promo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes promo-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .promo-slide {
        width: 250px;
        height: 180px;
    }
}

/* ===== Order Promo Section ===== */
/* ===== Scrolling Banner ===== */
.scrolling-banner {
    background-color: var(--white);
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
}

.scrolling-text {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.scrolling-text span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    padding-right: 50px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.order-promo {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
                url('../images/promo-bg.jpg') center/cover no-repeat;
    padding: 50px 20px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-promo-content {
    max-width: 700px;
    margin: 0 auto;
}

.order-promo h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 2px;
}

.promo-logo {
    height: 100px;
}

.order-promo h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.promo-text {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
    font-weight: 500;
}

.promo-gift {
    font-size: 1.1rem;
    color: var(--white);
    margin: 20px 0 30px;
    font-weight: 600;
}

.promo-steps {
    margin: 30px 0;
}

.promo-step {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.step-number {
    background: var(--accent-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.order-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-emporter {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-emporter:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.btn-livraison {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-livraison:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .order-promo {
        padding: 40px 15px 60px;
    }

    .order-promo h2 {
        font-size: 2.2rem;
    }

    .order-promo h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .promo-text {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .promo-gift {
        font-size: 1.1rem;
    }

    .promo-step {
        font-size: 1rem;
        gap: 10px;
        text-align: left;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .promo-logo {
        height: 80px !important;
    }

    .order-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 20px;
    }

    .btn-emporter,
    .btn-livraison {
        padding: 15px 50px;
        font-size: 1rem;
        width: 80%;
        max-width: 250px;
    }
}

.hero-logo {
    height: 120px;
    margin: 0 auto 30px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-full {
    width: 100%;
}

/* ===== CARTE SECTION - PDF DESIGN ===== */
.carte-section {
    padding: 80px 0 0;
}

.carte-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Column - Blue */
.carte-left {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
}

.carte-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.carte-logo {
    height: 80px;
    margin: 0 auto 15px;
}

.carte-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 400;
    color: var(--accent-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.carte-info {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.9;
}

.carte-steps {
    margin-top: 20px;
    overflow: hidden;
}

.carte-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 12px;
    opacity: 0;
}

.carte-step.animate:nth-child(1) {
    animation: slideFromRight 0.6s ease-out 0.1s forwards;
}

.carte-step.animate:nth-child(2) {
    animation: slideFromLeft 0.6s ease-out 0.4s forwards;
}

.carte-step.animate:nth-child(3) {
    animation: slideFromRight 0.6s ease-out 0.7s forwards;
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-num {
    background: var(--accent-color);
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Menu List Items */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Panuozzi items - White cards with blue text and yellow highlight */
.menu-item-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 15px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    background: var(--white);
    color: var(--primary-color);
}

.menu-item-card:hover {
    background: #f5f5f5;
}

/* Casher items - Transparent on sky blue background */
.menu-item-card.casher-item {
    background: transparent;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 15px 0;
    border-radius: 0;
}

.menu-item-card.casher-item:hover {
    background: rgba(255,255,255,0.1);
}

.menu-item-card.casher-item .item-name {
    color: var(--white);
}

.menu-item-card.casher-item .item-name .price {
    color: var(--white);
}

.menu-item-card.casher-item .item-desc {
    color: rgba(255,255,255,0.85);
}

.menu-item-card.casher-item .product-name {
    background: var(--primary-color);
    color: var(--white);
    padding: 2px 8px;
}

.add-btn.casher-btn {
    background: var(--white);
    color: #4a9fd4;
    width: 32px;
    height: 32px;
}

.add-btn.casher-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.item-info {
    flex: 1;
    padding-right: 15px;
}

.item-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    letter-spacing: 1px;
}

/* Yellow highlight on product name */
.item-name .product-name {
    background: var(--accent-color);
    padding: 2px 6px;
    color: var(--primary-color);
}

.item-name .price {
    font-weight: 600;
    color: var(--primary-color);
}

.item-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.veg-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: #4CAF50;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    text-align: center;
    line-height: 18px;
}

.add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.add-btn:hover {
    transform: scale(1.15);
    background: var(--white);
}

/* Formules Section */
.formules-section {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 25px;
    margin-top: 30px;
    border-radius: 10px;
}

.formules-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 2px;
}

.formule-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(30,26,95,0.1);
}

.formule-item:last-child {
    border-bottom: none;
}

/* Right Column - Sky Blue with Dark Blue Border */
.carte-right {
    background: #4a9fd4;
    padding: 30px;
    position: relative;
    border: 6px solid var(--primary-color);
    border-radius: 20px;
    margin: 20px;
    height: fit-content;
    align-self: start;
}

/* Casher K Logo */
.casher-k-logo {
    position: absolute;
    top: -30px;
    right: 15px;
    width: 60px;
    height: 60px;
    z-index: 10;
}

.casher-k-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.casher-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.entrees-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.vins-section {
    margin-bottom: 10px;
}

.supplement-info {
    font-size: 0.85rem;
    color: var(--white);
    margin-top: 15px;
    font-style: italic;
}

/* Simple Menu List (Entrées, Vins) */
.menu-list-simple {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-simple-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}

.menu-simple-item:hover {
    background: rgba(255,255,255,0.1);
}

.simple-name {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--white);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.simple-price {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: var(--white);
    margin-right: 15px;
    font-size: 1.1rem;
}

/* Carte Bottom - Desserts & Boissons */
.carte-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--pink-light);
}

.desserts-section {
    padding: 40px;
    display: flex;
    gap: 30px;
}

.section-title-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 1.5rem;
    text-transform: lowercase;
    color: #e91e63;
    font-weight: 700;
}

.desserts-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.dessert-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.dessert-item:hover {
    box-shadow: var(--shadow);
}

.dessert-info {
    flex: 1;
}

.dessert-name {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

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

.dessert-price {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: #e91e63;
    font-size: 1.2rem;
}

/* Boissons Section */
.boissons-section {
    padding: 40px;
    background: var(--white);
}

.boissons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.boissons-hot,
.boissons-cold {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.boisson-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.boisson-item:hover {
    background: #e8e8e8;
}

.boisson-name {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.boisson-price {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    color: #e91e63;
    font-size: 1.1rem;
}

.volume-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

/* ===== External Frame Overlay ===== */
.external-frame-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    display: none;
    flex-direction: column;
}

.external-frame-overlay.active {
    display: flex;
}

.external-frame-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--primary-color);
    color: var(--white);
    position: relative;
}

.btn-return {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background: var(--white);
    transform: scale(1.05);
}

.btn-return svg {
    stroke: var(--primary-color);
}

.external-frame-logo {
    height: 40px;
    width: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.external-frame-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.external-frame-overlay iframe {
    flex: 1;
    width: 100%;
    border: none;
}

@media (max-width: 768px) {
    .external-frame-header {
        flex-direction: row;
        flex-wrap: nowrap;
        padding: 10px;
        gap: 8px;
        justify-content: space-between;
        align-items: center;
    }

    .btn-return {
        padding: 6px 10px;
        font-size: 0.75rem;
        gap: 4px;
        flex-shrink: 0;
    }

    .btn-return svg {
        width: 16px;
        height: 16px;
    }

    .btn-return-text {
        display: none;
    }

    .btn-return::after {
        content: 'Retour';
        font-size: 0.75rem;
    }

    .external-frame-logo {
        position: static;
        transform: none;
        height: 25px;
        flex-shrink: 0;
    }

    .external-frame-title {
        font-size: 0.75rem;
        flex-shrink: 1;
        text-align: right;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* ===== Floating Cart ===== */
/* Cart Popup */
.cart-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.cart-popup {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-popup.active {
    right: 0;
}

.cart-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary-color);
    color: var(--white);
}

.cart-popup-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.close-cart {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.close-cart:hover {
    color: var(--accent-color);
}

.cart-popup-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-popup-footer {
    padding: 20px;
    border-top: 2px solid #eee;
    background: #f9f9f9;
}

.cart-popup-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Order Form in Popup */
.cart-order-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-order-form.active {
    transform: translateX(0);
}

.popup-order-form {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.popup-order-form .form-group {
    margin-bottom: 15px;
}

.popup-order-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.popup-order-form input,
.popup-order-form select,
.popup-order-form textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.popup-order-form input:focus,
.popup-order-form select:focus,
.popup-order-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.popup-order-form button {
    margin-top: 10px;
}

.order-form-section.full-width {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
}

.floating-cart:hover {
    transform: scale(1.05);
}

.cart-icon {
    position: relative;
}

.cart-icon svg {
    width: 28px;
    height: 28px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-total-float {
    font-weight: 700;
    font-size: 1.1rem;
}

/* ===== Order Section ===== */
.order-section {
    padding: 100px 0;
    background: #f5f5f5;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.order-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.cart-section {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: var(--shadow);
}

.cart-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.cart-item-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.cart-item-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
}

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

.cart-item-qty {
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.remove-item {
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
}

.remove-item:hover {
    color: #cf2e2e;
}

.empty-cart {
    text-align: center;
    color: var(--text-light);
    padding: 40px 0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--dark-color);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== Forms ===== */
.order-form-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 26, 95, 0.2);
}

/* ===== Reservation Section ===== */
.reservation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(30, 26, 95, 0.95) 0%, rgba(45, 42, 124, 0.95) 100%),
                url('../images/reservation-bg.jpg') center/cover no-repeat;
    color: var(--white);
}

.reservation-section .section-title,
.reservation-section .section-subtitle {
    color: var(--white);
}

.reservation-cta {
    text-align: center;
    margin: 30px 0;
}

.btn-large {
    padding: 20px 60px;
    font-size: 1.3rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.reservation-container {
    animation: slideDown 0.5s ease-out;
}

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

.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--accent-color);
}

.info-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.info-card ul li {
    padding: 5px 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

.info-card a {
    color: var(--accent-color);
}

.reservation-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    color: var(--text-color);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.contact-grid.contact-single {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 50px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
    background: #f5f5f5;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.contact-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Restaurant Photo Slider */
.restaurant-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}

.slider-track {
    display: flex;
    animation: slide-scroll 25s linear infinite;
    width: fit-content;
}

.slide {
    flex-shrink: 0;
    width: 300px;
    height: 400px;
    margin-right: -60px;
    position: relative;
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: var(--primary-color);
}

.slide:hover {
    transform: scale(1.05);
    z-index: 10;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

@keyframes slide-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.restaurant-info {
    text-align: center;
    margin-bottom: 20px;
}

.restaurant-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.restaurant-info p {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-info-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #ddd;
}

.contact-info-bottom a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info-bottom a:hover {
    color: var(--accent-color);
}

/* ===== Formula Popup ===== */
.formula-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.formula-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.formula-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--white);
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    z-index: 2600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.formula-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.formula-popup-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    position: relative;
    text-align: center;
}

.formula-popup-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.formula-item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--accent-color);
}

.close-formula {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
}

.formula-popup-content {
    padding: 20px;
}

.formula-choice {
    margin-bottom: 15px;
}

.formula-btn {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.formula-btn:hover {
    background: #f5f5f5;
}

.formula-btn-yellow {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.formula-btn-yellow:hover {
    background: #e6c225;
}

.formula-btn-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.formula-btn-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.formula-divider {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 15px 0;
    position: relative;
}

.formula-divider::before,
.formula-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #ddd;
}

.formula-divider::before {
    left: 0;
}

.formula-divider::after {
    right: 0;
}

.formules-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.formula-options {
    background: var(--accent-color);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
}

.formula-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(30, 26, 95, 0.2);
    cursor: pointer;
}

.formula-option:last-child {
    border-bottom: none;
}

.formula-option input[type="checkbox"] {
    margin-right: 10px;
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.formula-option .option-name {
    flex: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.formula-option .option-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--accent-color);
    margin-top: 10px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.social-links svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius);
    max-width: 500px;
    text-align: center;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon::after {
    content: '✓';
    font-size: 2.5rem;
    color: white;
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .carte-container {
        grid-template-columns: 1fr;
    }

    .carte-bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .order-container,
    .reservation-container {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .cart-section {
        position: static;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .date-display {
        display: none;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .desserts-section {
        flex-direction: column;
    }

    .section-title-vertical {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .floating-cart {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .floating-cart {
        top: 15px !important;
        bottom: auto !important;
        right: 60px !important;
        left: auto !important;
        padding: 8px 12px;
        gap: 8px;
        z-index: 1001;
    }

    .cart-icon svg {
        width: 20px;
        height: 20px;
    }

    .cart-total-float {
        font-size: 0.85rem;
    }

    .cart-count {
        font-size: 0.65rem;
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 12px 25px;
    }

    .carte-left,
    .carte-right {
        padding: 25px;
    }
}

/* ===== Stripe Payment Styles ===== */
.payment-section {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--accent-color);
}

.payment-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-section h4::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231e1a5f'%3E%3Cpath d='M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z'/%3E%3C/svg%3E") no-repeat center;
}

.stripe-card-element {
    background: white;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.stripe-card-element:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 26, 95, 0.1);
}

.card-errors {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
}

.payment-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px;
    background: var(--accent-color);
    border-radius: 8px;
    font-weight: 600;
}

.payment-amount {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
}

.secure-payment-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.secure-payment-note::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2328a745'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E") no-repeat center;
}

/* Spinner for loading state */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

.spinner.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#submitPayment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#submitPayment:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Fixed location display (single restaurant) */
.fixed-location {
    background: var(--light-bg);
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
    border: 2px solid var(--accent-color);
}

/* Time hint and info for pickup time */
.time-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 400;
}

.time-info {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-top: 5px;
    font-weight: 500;
}

/* Stripe Card Element - Mobile Fix */
@media (max-width: 768px) {
    .stripe-card-element {
        padding: 12px 10px;
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    .payment-section {
        margin-top: 20px;
        padding-top: 20px;
    }

    .payment-section h4 {
        font-size: 1rem;
    }

    .payment-total {
        padding: 12px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .payment-amount {
        font-size: 1.3rem;
    }

    #card-element {
        min-height: 44px;
    }

    .cart-order-form {
        padding-bottom: 20px;
    }

    .popup-order-form {
        padding: 15px;
    }

    .popup-order-form .form-group {
        margin-bottom: 15px;
    }

    .popup-order-form input,
    .popup-order-form select,
    .popup-order-form textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }
}

/* Ensure Stripe iframe is responsive */
.stripe-card-element iframe {
    width: 100% !important;
}

#card-element {
    width: 100%;
    box-sizing: border-box;
}

/* Credits link in footer */
.credits {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.credits a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.credits a:hover {
    color: #fff;
    text-decoration: underline;
}
