/* ============================================================
   Tasty Food Siselen - Complete Stylesheet
   Colors: Black (#000, #1C1C1C), White (#fff), Red (#DD3333)
   Fonts: Lexend Deca (headings), Open Sans (body)
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Lexend Deca', sans-serif; font-weight: 600; line-height: 1.3; color: #1C1C1C; }
a { color: #DD3333; text-decoration: none; transition: color 0.3s; }
a:hover { color: #b52a2a; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-red { color: #DD3333; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    text-align: center;
    justify-content: center;
}
.btn-red { background: #DD3333; color: #fff; border-color: #DD3333; }
.btn-red:hover { background: #b52a2a; border-color: #b52a2a; color: #fff; }
.btn-outline { background: transparent; color: #fff; border-color: #fff; }
.btn-outline:hover { background: #fff; color: #1C1C1C; }
.btn-green { background: #25D366; color: #fff; border-color: #25D366; }
.btn-green:hover { background: #1da851; border-color: #1da851; color: #fff; }
.btn-lg { padding: 15px 36px; font-size: 1.05rem; }
.btn-block { display: flex; width: 100%; }

/* --- Top Bar --- */
.top-bar {
    background: #1C1C1C;
    color: #ccc;
    font-size: 0.82rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar a { color: #ccc; }
.top-bar a:hover { color: #DD3333; }
.delivery-badge {
    background: #DD3333;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.78rem;
}
.discount-info { color: #ffd700; font-weight: 500; }

/* --- Header --- */
.site-header {
    background: #000;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}
.logo-accent { color: #DD3333; }
.main-nav { display: flex; gap: 6px; }
.nav-link {
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}
.nav-link:hover, .nav-link.active { background: #DD3333; color: #fff; }
.header-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #DD3333;
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.3s;
}
.header-phone-btn:hover { background: #b52a2a; color: #fff; }

/* --- Mobile Toggle --- */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- Mobile Menu --- */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1100;
}
.mobile-overlay.open { display: block; }
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #1C1C1C;
    z-index: 1200;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}
.mobile-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
}
.mobile-nav { padding: 20px; }
.mobile-nav a {
    display: block;
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #333;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}
.mobile-nav a:hover { color: #DD3333; }
.mobile-menu-contact {
    padding: 20px;
    margin-top: auto;
}
.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    padding: 10px 0;
    font-size: 0.9rem;
}
.mobile-menu-contact a:hover { color: #DD3333; }

/* --- Hero Section --- */
.hero {
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1C1C1C 50%, #2a2a2a 100%);
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(221,51,51,0.15) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero h1 { font-size: 2.8rem; margin-bottom: 16px; color: #fff; }
.hero-subtitle { font-size: 1.15rem; color: #ccc; margin-bottom: 24px; line-height: 1.7; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.hero-badge {
    background: rgba(221,51,51,0.2);
    border: 1px solid #DD3333;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* --- Page Hero (shop, kontakt, legal) --- */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1C1C1C 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}
.page-hero-small { padding: 50px 0; }
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(221,51,51,0.1) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: 2.2rem; color: #fff; margin-bottom: 10px; }
.page-hero p { color: #ccc; font-size: 1.05rem; }

/* --- Section Titles --- */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}
.section-subtitle {
    text-align: center;
    color: #777;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* --- Categories Grid --- */
.categories-section { padding: 80px 0; background: #f9f9f9; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
}
.category-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px 16px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s;
    color: #1C1C1C;
}
.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #DD3333;
    color: #DD3333;
}
.category-icon {
    font-size: 2.2rem;
    color: #DD3333;
    margin-bottom: 12px;
}
.category-card h3 { font-size: 0.9rem; font-weight: 500; }

/* --- Info Section --- */
.info-section { padding: 80px 0; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.info-card {
    background: #fff;
    border-radius: 10px;
    padding: 35px 25px;
    border: 1px solid #eee;
    text-align: center;
    transition: box-shadow 0.3s;
}
.info-card:hover { box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.info-icon { font-size: 2.5rem; color: #DD3333; margin-bottom: 16px; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.info-card p { color: #666; font-size: 0.95rem; }
.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #555;
}
.hours-list li span:first-child { font-weight: 600; color: #333; }
.info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}
.discount-badges { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.badge {
    background: #DD3333;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --- Declaration Section --- */
.declaration-section {
    padding: 60px 0;
    background: #f9f9f9;
}
.declaration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.declaration-item {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
}
.declaration-item i { font-size: 2rem; color: #DD3333; margin-bottom: 10px; }
.declaration-item h4 { font-size: 1rem; margin-bottom: 6px; }
.declaration-item p { font-size: 0.85rem; color: #777; }

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #000 0%, #1C1C1C 100%);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}
.cta-inner h2 { color: #fff; font-size: 2rem; margin-bottom: 10px; }
.cta-inner p { color: #ccc; font-size: 1.05rem; margin-bottom: 28px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* --- Menu Filter --- */
.menu-filter-wrapper {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 14px 0;
    position: sticky;
    top: 70px;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.menu-filter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}
.menu-filter::-webkit-scrollbar { height: 4px; }
.menu-filter::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.filter-btn {
    flex-shrink: 0;
    background: #f5f5f5;
    border: 1px solid #eee;
    padding: 8px 18px;
    border-radius: 25px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.filter-btn:hover { border-color: #DD3333; color: #DD3333; }
.filter-btn.active { background: #DD3333; color: #fff; border-color: #DD3333; }

/* --- Menu Sections --- */
.menu-sections { padding: 50px 0; }
.menu-section { margin-bottom: 50px; }
.menu-section-title {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #DD3333;
    display: flex;
    align-items: center;
    gap: 10px;
}
.menu-section-title i { color: #DD3333; font-size: 1.2rem; }

/* --- Menu Grid & Product Cards --- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.menu-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.menu-item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.menu-item-placeholder {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 3rem;
}
.menu-item-body { padding: 16px; }
.menu-item-name { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.menu-item-desc { font-size: 0.85rem; color: #888; margin-bottom: 10px; line-height: 1.5; }
.menu-item-price {
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #DD3333;
}

/* --- Contact Section --- */
.contact-section { padding: 70px 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    transition: box-shadow 0.3s;
}
.contact-card:hover { box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(221,51,51,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DD3333;
    font-size: 1.1rem;
}
.contact-card-content h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card-content p { font-size: 0.9rem; color: #666; }
.contact-card-content a { color: #DD3333; }
.contact-hours li {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    font-size: 0.85rem;
    color: #666;
}
.contact-hours li span { font-weight: 600; color: #333; margin-right: 12px; }

/* --- Contact Form --- */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 35px;
}
.contact-form-wrapper h2 { font-size: 1.4rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background: #fafafa;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #DD3333;
    background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Map Section --- */
.map-section { line-height: 0; }
.map-section iframe { width: 100%; height: 400px; border: 0; }

/* --- Legal Pages --- */
.legal-section { padding: 60px 0; }
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}
.legal-content h2 { font-size: 1.6rem; margin: 30px 0 14px; }
.legal-content h3 { font-size: 1.2rem; margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; color: #555; }
.legal-content ul, .legal-content ol { margin: 10px 0 14px 20px; }
.legal-content li { margin-bottom: 6px; color: #555; }

/* --- Footer --- */
.site-footer {
    background: #1C1C1C;
    color: #ccc;
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 18px;
    font-family: 'Lexend Deca', sans-serif;
}
.footer-col p { font-size: 0.9rem; line-height: 1.7; color: #aaa; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 0.9rem; }
.footer-col ul li a:hover { color: #DD3333; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #aaa;
}
.footer-contact li i { color: #DD3333; margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: #aaa; }
.footer-contact li a:hover { color: #DD3333; }
.footer-hours li {
    font-size: 0.88rem;
    padding: 3px 0;
    color: #aaa;
}
.footer-hours li span { color: #fff; font-weight: 600; }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.footer-social a:hover { background: #DD3333; color: #fff; }
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: #777; }

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .hero { padding: 70px 0; min-height: auto; }
    .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-phone-btn span { display: none; }
    .header-phone-btn { padding: 8px 12px; }
    .mobile-toggle { display: flex; }
    .top-bar-left .discount-info { display: none; }
    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero { padding: 50px 0; }
    .section-title { font-size: 1.5rem; }
    .page-hero h1 { font-size: 1.7rem; }
    .categories-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 12px; }
    .category-card { padding: 20px 12px; }
    .category-icon { font-size: 1.8rem; }
    .menu-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-inner h2 { font-size: 1.5rem; }
    .declaration-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .menu-grid { grid-template-columns: 1fr; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons { flex-direction: column; align-items: center; }
    .cta-buttons .btn { width: 100%; max-width: 320px; }
    .declaration-grid { grid-template-columns: 1fr; }
    .logo-text { font-size: 1.1rem; }
}

/* ============================================================
   Product Detail Page
   ============================================================ */
.breadcrumb { padding: 15px 0; font-size: 0.85rem; color: #888; }
.breadcrumb a { color: #DD3333; }
.product-detail { padding: 40px 0; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.product-image-wrap { position: relative; border-radius: 10px; overflow: hidden; cursor: zoom-in; }
.product-image-wrap img { width: 100%; height: auto; display: block; }
.product-image-placeholder { width: 100%; height: 400px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; font-size: 5rem; color: #ddd; border-radius: 10px; }
.product-info h1 { font-size: 1.8rem; margin-bottom: 10px; }
.product-price-display { font-size: 1.5rem; font-weight: 700; color: #DD3333; margin-bottom: 15px; font-family: 'Lexend Deca', sans-serif; }
.product-price-display .price-from { font-size: 0.9rem; color: #888; font-weight: 400; }
.discount-info-product { font-size: 0.85rem; color: #888; margin-bottom: 15px; padding: 8px 12px; background: #fff8f0; border-radius: 5px; border: 1px solid #ffe0b2; }
.discount-info-product i { color: #DD3333; margin-right: 5px; }
.product-desc { color: #555; line-height: 1.8; margin-bottom: 20px; }
.size-selector { margin-bottom: 20px; }
.size-option { display: flex; align-items: center; gap: 10px; padding: 10px 15px; border: 2px solid #eee; border-radius: 8px; margin-bottom: 8px; cursor: pointer; transition: all 0.3s; }
.size-option:hover, .size-option.active { border-color: #DD3333; background: rgba(221,51,51,0.05); }
.size-option input[type="radio"] { accent-color: #DD3333; }
.size-option .size-label { font-weight: 600; flex: 1; }
.size-option .size-price { font-weight: 700; color: #DD3333; }
.option-group { margin-bottom: 20px; }
.option-group-title { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.option-group-title .required { color: #DD3333; }
.option-choice { display: flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid #eee; border-radius: 5px; margin-bottom: 5px; cursor: pointer; transition: all 0.2s; }
.option-choice:hover { border-color: #DD3333; }
.option-choice input[type="radio"] { accent-color: #DD3333; }
.option-choice .choice-label { flex: 1; }
.option-choice .choice-price { font-size: 0.85rem; color: #DD3333; font-weight: 600; }
.qty-selector { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.qty-btn { width: 40px; height: 40px; border: 1px solid #ddd; background: #f5f5f5; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.qty-btn:hover { background: #DD3333; color: #fff; border-color: #DD3333; }
.qty-input { width: 60px; height: 40px; text-align: center; border: 1px solid #ddd; border-left: none; border-right: none; font-size: 1rem; font-weight: 600; }
.btn-add-cart { width: 100%; padding: 16px; background: #DD3333; color: #fff; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 700; cursor: pointer; font-family: 'Lexend Deca', sans-serif; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-add-cart:hover { background: #bb2222; transform: translateY(-2px); }
.btn-add-cart i { font-size: 1.2rem; }
.product-category-link { margin-top: 20px; font-size: 0.9rem; }
.product-category-link a { display: inline-flex; align-items: center; gap: 6px; color: #DD3333; }
.product-category-link a:hover { text-decoration: underline; }
.related-section { padding: 50px 0; background: #f8f8f8; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-card { background: #fff; border-radius: 10px; overflow: hidden; border: 1px solid #eee; transition: all 0.3s; display: block; color: inherit; text-decoration: none; }
.related-card:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.1); transform: translateY(-3px); color: inherit; }
.related-card img { width: 100%; height: 180px; object-fit: cover; }
.related-card-placeholder { width: 100%; height: 180px; background: #f5f5f5; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; color: #ddd; }
.related-card-body { padding: 15px; }
.related-card-body h4 { font-size: 0.95rem; margin-bottom: 5px; }
.related-card-body .price { color: #DD3333; font-weight: 700; }

/* Image lightbox */
.lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; display: none; align-items: center; justify-content: center; cursor: zoom-out; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 90%; object-fit: contain; }

/* Header cart badge & actions */
.header-actions { display: flex; align-items: center; gap: 15px; }
a.cart-badge { position: relative; color: #fff; font-size: 1.3rem; display: flex; align-items: center; gap: 5px; text-decoration: none; }
a.cart-badge:hover { color: #DD3333; }
.cart-count { background: #DD3333; color: #fff; font-size: 0.65rem; min-width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; position: absolute; top: -6px; right: -10px; }
/* Cart badge inside nav link */
.cart-link { position: relative; }
.cart-link .cart-badge,
span.cart-badge {
    background: #DD3333;
    color: #fff;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    position: relative;
    top: -2px;
    margin-left: 4px;
}

/* Toast notification */
.toast { position: fixed; top: 20px; right: 20px; background: #333; color: #fff; padding: 15px 25px; border-radius: 8px; z-index: 10000; transform: translateX(120%); transition: transform 0.3s; font-size: 0.9rem; }
.toast.show { transform: translateX(0); }
.toast.success { background: #25D366; }
.toast.error { background: #DD3333; }

@media (max-width: 768px) {
    .product-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
    .product-info h1 { font-size: 1.4rem; }
    .header-actions { gap: 10px; }
}
@media (max-width: 480px) {
    .related-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Combo Menus Section
   ============================================================ */
.combos-section { padding: 50px 0; background: #fff; }
.combos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.combo-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #DD3333;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(221,51,51,0.1);
}
.combo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(221,51,51,0.2);
}
.combo-img { width: 100%; height: 200px; object-fit: cover; }
.combo-img-placeholder {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, #DD3333, #ff6b6b);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 3rem;
}
.combo-body { padding: 20px; }
.combo-body h3 { font-size: 1.1rem; color: #1C1C1C; margin-bottom: 8px; }
.combo-items { font-size: 0.85rem; color: #888; margin-bottom: 8px; line-height: 1.5; }
.combo-desc { font-size: 0.9rem; color: #555; margin-bottom: 12px; }
.combo-pricing {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.combo-old-price {
    text-decoration: line-through; color: #999; font-size: 1rem;
}
.combo-new-price {
    font-size: 1.4rem; font-weight: 700; color: #DD3333;
    font-family: 'Lexend Deca', sans-serif;
}
.combo-discount {
    background: #DD3333; color: #fff; padding: 3px 10px;
    border-radius: 15px; font-size: 0.75rem; font-weight: 700;
}
.combo-time {
    font-size: 0.8rem; color: #888;
}
.combo-time i { color: #DD3333; margin-right: 4px; }
/* Horizontal scroll for shop page */
.combos-scroll {
    display: flex; overflow-x: auto; gap: 16px;
    padding-bottom: 10px; scroll-snap-type: x mandatory;
}
.combos-scroll .combo-card {
    min-width: 300px; flex-shrink: 0; scroll-snap-align: start;
}
.combos-scroll::-webkit-scrollbar { height: 4px; }
.combos-scroll::-webkit-scrollbar-thumb { background: #DD3333; border-radius: 2px; }
/* Notification Options (Checkout) */
.notification-options {
    display: flex; gap: 10px;
}
.notif-option {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 16px; border: 2px solid #eee; border-radius: 10px;
    cursor: pointer; transition: all 0.3s; font-weight: 600; font-size: 0.9rem;
    color: #555; background: #fff; text-align: center;
}
.notif-option input[type="radio"] {
    position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.notif-option:hover { border-color: #DD3333; }
.notif-option.active, .notif-option:has(input:checked) {
    border-color: #25D366; background: rgba(37,211,102,0.05); color: #1a8a4a;
}
.notif-option i { font-size: 1.2rem; }
.notif-option .fa-whatsapp { color: #25D366; }
.notif-option .fa-envelope { color: #DD3333; }
.notif-option .fa-bell { color: #f59e0b; }
@media (max-width: 480px) {
    .notification-options { flex-direction: column; }
}

.cta-phone-small {
    margin-top: 15px; font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.cta-phone-small a { color: #fff; text-decoration: underline; }
.seo-article { line-height: 1.8; color: #444; }
.seo-article h3 { color: #1C1C1C; margin: 25px 0 10px; }
.seo-article ul { padding-left: 20px; margin: 10px 0; }
.seo-article li { padding: 4px 0; }
.seo-article a { color: #DD3333; }
@media (max-width: 768px) {
    .combos-grid { grid-template-columns: 1fr; }
    .seo-content .container > div { grid-template-columns: 1fr !important; }
}

/* ============================================================
   Shop Card Actions
   ============================================================ */
.menu-item-link { display: block; text-decoration: none; color: inherit; }
.menu-item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.btn-select-options {
    display: inline-flex; align-items: center; gap: 5px;
    background: #DD3333; color: #fff; padding: 6px 14px;
    border-radius: 5px; font-size: 0.8rem; font-weight: 600;
    font-family: 'Lexend Deca', sans-serif; transition: all 0.3s;
    text-decoration: none;
}
.btn-select-options:hover { background: #bb2222; }
.btn-quick-add {
    width: 36px; height: 36px; border-radius: 50%;
    background: #DD3333; color: #fff; border: none;
    font-size: 1rem; cursor: pointer; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.btn-quick-add:hover { background: #bb2222; transform: scale(1.1); }
.header-actions { display: flex; align-items: center; gap: 15px; }

/* ============================================================
   Warenkorb (Cart) Page
   ============================================================ */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    padding: 40px 0 60px;
}
.cart-table-wrap {
    overflow-x: auto;
}
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cart-table thead th {
    background: #1C1C1C;
    color: #fff;
    padding: 14px 15px;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    white-space: nowrap;
}
.cart-table tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    font-size: 0.9rem;
}
.cart-table tbody tr:hover {
    background: #fafafa;
}
.cart-remove-cell { width: 40px; text-align: center; }
.cart-remove-btn {
    width: 30px; height: 30px; border-radius: 50%;
    background: #f5f5f5; border: 1px solid #ddd; color: #999;
    cursor: pointer; font-size: 0.8rem; transition: all 0.2s;
    display: inline-flex; align-items: center; justify-content: center;
}
.cart-remove-btn:hover { background: #DD3333; color: #fff; border-color: #DD3333; }
.cart-img-cell { width: 80px; }
.cart-item-img {
    width: 70px; height: 70px;
    object-fit: cover; border-radius: 8px;
    border: 1px solid #eee;
}
.cart-product-cell { min-width: 180px; }
.cart-product-cell strong { display: block; font-size: 0.95rem; color: #1C1C1C; margin-bottom: 3px; }
.cart-item-option { font-size: 0.78rem; color: #888; line-height: 1.5; }
.cart-price-cell { white-space: nowrap; font-weight: 600; color: #333; }
.cart-qty-cell { width: 80px; }
.cart-qty-input {
    width: 60px; height: 36px; text-align: center;
    border: 1px solid #ddd; border-radius: 5px;
    font-size: 0.9rem; font-weight: 600;
}
.cart-qty-input:focus { border-color: #DD3333; outline: none; }
.cart-linetotal-cell { white-space: nowrap; font-weight: 700; color: #DD3333; font-family: 'Lexend Deca', sans-serif; }
.cart-actions {
    display: flex; justify-content: flex-end;
    padding: 15px 0; gap: 10px;
}
.cart-update-btn {
    padding: 10px 22px; background: #333; color: #fff;
    border: none; border-radius: 5px; cursor: pointer;
    font-family: 'Lexend Deca', sans-serif; font-size: 0.85rem;
    font-weight: 600; transition: background 0.3s;
}
.cart-update-btn:hover { background: #1C1C1C; }

/* Cart Summary Box */
.cart-summary {
    background: #fff; border-radius: 10px;
    padding: 25px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 2px solid #f0f0f0; position: sticky; top: 100px;
    align-self: start;
}
.cart-summary h3 {
    font-size: 1.2rem; margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 2px solid #DD3333;
    color: #1C1C1C;
}
.cart-summary-row {
    display: flex; justify-content: space-between;
    padding: 8px 0; font-size: 0.9rem; color: #555;
}
.cart-summary-row.discount { color: #25D366; }
.cart-summary-row.total {
    border-top: 2px solid #1C1C1C; margin-top: 10px;
    padding-top: 12px; font-size: 1.15rem; font-weight: 700;
    color: #1C1C1C; font-family: 'Lexend Deca', sans-serif;
}
.cart-summary-row .total-price { color: #DD3333; }
.cart-checkout-btn {
    display: block; width: 100%; padding: 16px; margin-top: 20px;
    background: #DD3333; color: #fff; border: none;
    border-radius: 8px; font-size: 1.05rem; font-weight: 700;
    cursor: pointer; font-family: 'Lexend Deca', sans-serif;
    text-align: center; text-decoration: none; transition: all 0.3s;
}
.cart-checkout-btn:hover { background: #bb2222; transform: translateY(-2px); }
.cart-continue-btn {
    display: block; text-align: center; margin-top: 12px;
    color: #DD3333; font-weight: 600; font-size: 0.9rem;
    text-decoration: none;
}
.cart-continue-btn:hover { text-decoration: underline; }

/* Cart Empty State */
.cart-empty {
    text-align: center; padding: 60px 20px;
    background: #fff; border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cart-empty i { font-size: 4rem; color: #ddd; margin-bottom: 20px; }
.cart-empty h3 { font-size: 1.3rem; color: #333; margin-bottom: 10px; }
.cart-empty p { color: #888; margin-bottom: 25px; }
.cart-empty-btn {
    display: inline-block; padding: 12px 30px;
    background: #DD3333; color: #fff; border-radius: 5px;
    font-weight: 600; text-decoration: none; transition: all 0.3s;
}
.cart-empty-btn:hover { background: #bb2222; }

/* Checkout Page */
.checkout-layout {
    display: grid; grid-template-columns: 1fr 400px;
    gap: 30px; padding: 40px 0 60px;
}
.checkout-form-card {
    background: #fff; border-radius: 10px;
    padding: 30px; box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.checkout-form-card h3 {
    font-size: 1.15rem; margin-bottom: 20px;
    padding-bottom: 10px; border-bottom: 2px solid #DD3333;
}
.checkout-order-type {
    display: flex; gap: 15px; margin-bottom: 20px;
}
.order-type-option {
    flex: 1; padding: 15px; border: 2px solid #eee;
    border-radius: 8px; text-align: center; cursor: pointer;
    transition: all 0.3s; font-weight: 600;
}
.order-type-option:hover, .order-type-option.active {
    border-color: #DD3333; background: rgba(221,51,51,0.05);
}
.order-type-option input { display: none; }
.checkout-section { padding: 40px 0 60px; }
.checkout-form-wrapper {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.form-section { margin-bottom: 25px; }
.form-section-heading {
    font-size: 1rem;
    color: #1C1C1C;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.checkout-section-title {
    font-size: 1.4rem;
    color: #1C1C1C;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #DD3333;
}
.checkout-summary-wrapper {
    align-self: start;
    position: sticky;
    top: 100px;
}
.checkout-summary {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}
.checkout-summary .checkout-section-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
}
.checkout-items {
    margin-bottom: 18px;
}
.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 12px;
}
.checkout-item:last-child {
    border-bottom: none;
}
.checkout-item-info {
    flex: 1;
    min-width: 0;
}
.checkout-item-info strong {
    display: block;
    font-size: 0.9rem;
    color: #1C1C1C;
    line-height: 1.4;
    margin-bottom: 2px;
}
.checkout-item-option {
    font-size: 0.75rem;
    color: #999;
    line-height: 1.4;
}
.checkout-item-name { flex: 1; color: #333; }
.checkout-item-name small { display: block; color: #999; font-size: 0.75rem; }
.checkout-item-price {
    font-weight: 700;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 0.9rem;
    color: #DD3333;
    white-space: nowrap;
    text-align: right;
    min-width: 80px;
}
.checkout-totals {
    border-top: 2px solid #eee;
    padding-top: 14px;
    margin-top: 4px;
}
.checkout-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 0.9rem;
    color: #555;
}
.checkout-totals-total {
    border-top: 2px solid #1C1C1C;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1C1C1C;
    font-family: 'Lexend Deca', sans-serif;
}
.checkout-totals-total span:last-child {
    color: #DD3333;
}
.text-green { color: #25D366 !important; }
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}
.btn-lg {
    padding: 14px 24px;
    font-size: 1.05rem;
}
.alert-error {
    background: #fff5f5;
    border: 1px solid #ffe0e0;
    color: #DD3333;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin: 12px 0;
}
.checkout-place-btn,
#placeOrderBtn {
    display: block;
    width: 100%;
    padding: 16px;
    margin-top: 18px;
    background: #DD3333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Lexend Deca', sans-serif;
    transition: all 0.3s;
    text-align: center;
}
.checkout-place-btn:hover,
#placeOrderBtn:hover { background: #bb2222; }

/* Order Confirmation */
.order-success {
    text-align: center; padding: 60px 20px; max-width: 600px; margin: 0 auto;
}
.order-success .success-icon {
    width: 80px; height: 80px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; font-size: 2.5rem; color: #fff;
}
.order-success h2 { font-size: 1.8rem; margin-bottom: 10px; }
.order-success .order-number {
    font-size: 1.3rem; font-weight: 700; color: #DD3333;
    background: #fff5f5; padding: 10px 20px; border-radius: 8px;
    display: inline-block; margin: 15px 0;
    font-family: 'Lexend Deca', sans-serif;
}
.order-success p { color: #666; margin-bottom: 8px; }

@media (max-width: 992px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
}
@media (max-width: 768px) {
    .cart-table thead { display: none; }
    .cart-table tbody td { display: flex; justify-content: space-between; padding: 8px 15px; }
    .cart-table tbody td::before {
        font-weight: 600; color: #888; font-size: 0.78rem;
    }
    .cart-img-cell { justify-content: center; }
    .cart-item-img { width: 60px; height: 60px; }
    .checkout-order-type { flex-direction: column; }
}

/* ============================================================
   Logo
   ============================================================ */
.logo-img {
    height: 50px;
    width: auto;
    display: block;
}
.footer-logo-img {
    height: 55px;
    width: auto;
    margin-bottom: 15px;
}

/* ============================================================
   Homepage Category Banners
   ============================================================ */
.banners-section {
    padding: 30px 0 50px;
    background: #f8f8f8;
}
.banner-row {
    display: grid;
    gap: 8px;
    margin-bottom: 8px;
}
.banner-row-featured {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.banner-row-half {
    grid-template-columns: 1fr 1fr;
}
.banner-row-third {
    grid-template-columns: 1fr 1fr 1fr;
}
.banner-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.banner-stack .banner-card {
    flex: 1;
}
.banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    min-height: 220px;
    cursor: pointer;
}
.banner-card.banner-tall {
    min-height: 500px;
}
.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}
.banner-card:hover img {
    transform: scale(1.08);
}
.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.banner-overlay h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    margin: 0;
}
.banner-btn {
    display: inline-block;
    background: #DD3333;
    color: #fff;
    padding: 8px 22px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Lexend Deca', sans-serif;
    transition: background 0.3s;
}
.banner-card:hover .banner-btn {
    background: #bb2222;
}

/* ============================================================
   Confirmation Page
   ============================================================ */
.confirmation-section {
    padding: 60px 0 80px;
    background: #f8f8f8;
}
.order-success {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.success-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.order-success h2 {
    font-size: 1.6rem;
    color: #1C1C1C;
    margin-bottom: 15px;
}
.order-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #DD3333;
    background: #fff5f5;
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 0 20px;
    font-family: 'Lexend Deca', sans-serif;
    border: 1px solid #ffe0e0;
}
.order-success p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.confirmation-contact {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 25px 0;
    flex-wrap: wrap;
}
.conf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
}
.conf-btn-phone {
    background: #DD3333;
    color: #fff;
}
.conf-btn-phone:hover { background: #bb2222; }
.conf-btn-whatsapp {
    background: #25D366;
    color: #fff;
}
.conf-btn-whatsapp:hover { background: #1da851; }
.conf-home-link {
    display: inline-block;
    margin-top: 15px;
    color: #DD3333;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}
.conf-home-link:hover { text-decoration: underline; }

/* ============================================================
   Checkout Form Improvements
   ============================================================ */
.form-row {
    margin-bottom: 18px;
}
.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    color: #333;
}
.form-label .required { color: #DD3333; }
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
    background: #fff;
}
.form-input:focus {
    border-color: #DD3333;
    outline: none;
    box-shadow: 0 0 0 3px rgba(221,51,51,0.1);
}
textarea.form-input { height: 100px; resize: vertical; }
.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
.order-type-selector,
.order-type-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}
.order-type-card {
    flex: 1;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fff;
    position: relative;
}
.order-type-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}
.order-type-card:hover { border-color: #DD3333; }
.order-type-card.active {
    border-color: #DD3333;
    background: rgba(221,51,51,0.05);
}
.order-type-card .order-type-icon,
.order-type-card i {
    font-size: 1.8rem;
    color: #DD3333;
    display: block;
    margin-bottom: 8px;
}
.order-type-card .order-type-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
    display: block;
    margin-bottom: 4px;
}
.order-type-card .order-type-desc {
    font-size: 0.8rem;
    color: #888;
    display: block;
}
.order-type-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: #333;
}
.address-fields {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #fafafa;
}

@media (max-width: 768px) {
    .banner-row-featured { grid-template-columns: 1fr; min-height: auto; }
    .banner-row-half { grid-template-columns: 1fr; }
    .banner-row-third { grid-template-columns: 1fr; }
    .banner-card { min-height: 180px; }
    .banner-card.banner-tall { min-height: 250px; }
    .banner-stack { flex-direction: column; }
    .order-type-selector, .order-type-cards { flex-direction: column; }
    .form-row-half { grid-template-columns: 1fr; }
    .order-success { padding: 30px 20px; }
    .confirmation-contact { flex-direction: column; align-items: center; }
}

/* ── Payment Methods ── */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
    margin-top: 8px;
}
.payment-option {
    cursor: pointer;
}
.payment-option input[type="radio"] {
    display: none;
}
.payment-option-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border: 2px solid #eee;
    border-radius: 10px;
    background: #fafafa;
    transition: all 0.2s;
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
    min-height: 80px;
}
.payment-option input[type="radio"]:checked + .payment-option-inner {
    border-color: #DD3333;
    background: #fff5f5;
    color: #DD3333;
}
.payment-option-inner i.fa-money-bill-wave {
    font-size: 1.6rem;
    color: #27ae60;
}
.payment-option input[type="radio"]:checked + .payment-option-inner i.fa-money-bill-wave {
    color: #27ae60;
}
.payment-option-inner .payment-icon-brand {
    font-size: 2rem;
}
.payment-option-inner .fa-cc-visa { color: #1a1f71; }
.payment-option-inner .fa-cc-mastercard { color: #eb001b; }
.payment-option input[type="radio"]:checked + .payment-option-inner .payment-icon-brand {
    color: inherit;
}
.payment-option-inner .payment-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}
