/* Custom Homepage Styles */

/* FIX: Verstecke das fixierte Local-Box Modal */
#local-box.local-box-fluid {
    display: none !important;
}

/* ========================================
   Modern Header/Navigation
   ======================================== */
.navbar-modern {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-modern .navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a2e;
}

.navbar-modern .navbar-brand .img-logo {
    max-height: 45px;
    width: auto;
}

.navbar-modern .navbar-brand .text-logo {
    color: #FF4900;
    font-weight: 800;
    font-size: 1.6rem;
}

.navbar-modern .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.navbar-modern .nav-link:hover {
    color: #FF4900;
}

.navbar-modern .nav-item.active .nav-link,
.navbar-modern .nav-link.active {
    color: #FF4900;
}

.navbar-modern .nav-link-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    margin-right: 10px;
    transition: all 0.2s ease;
}

.navbar-modern .nav-link-icon:hover {
    background: #FF4900;
    color: #fff;
}

.navbar-modern .navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-modern .nav-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #28a745;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 6px 12px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 20px;
    margin-right: 10px;
}

.navbar-modern .nav-status i {
    font-size: 0.85rem;
}

.navbar-modern .nav-status.closed {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.navbar-modern .nav-greeting {
    color: #666;
    font-size: 0.9rem;
    margin-right: 5px;
}

.navbar-modern .btn-nav {
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    text-decoration: none;
}

.navbar-modern .btn-nav.btn-primary {
    background: #2563eb;
    color: #fff;
    border: none;
}

.navbar-modern .btn-nav.btn-primary:hover {
    background: #1d4ed8;
    color: #fff;
}

.navbar-modern .btn-nav.btn-info {
    background: #0891b2;
    color: #fff;
    border: none;
}

.navbar-modern .btn-nav.btn-info:hover {
    background: #0e7490;
    color: #fff;
}

.navbar-modern .btn-nav.btn-secondary {
    background: #6b7280;
    color: #fff;
    border: none;
}

.navbar-modern .btn-nav.btn-secondary:hover {
    background: #4b5563;
    color: #fff;
}

.navbar-modern .btn-nav.btn-outline {
    background: transparent;
    color: #333;
    border: 1px solid #ddd;
}

.navbar-modern .btn-nav.btn-outline:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.navbar-modern .navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-modern .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* ========================================
   Status Banner
   ======================================== */
.status-banner {
    padding: 10px 0;
    text-align: center;
    font-size: 0.95rem;
}

.status-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-banner i {
    font-size: 1.1rem;
}

.status-banner.status-open {
    background: #28a745;
    color: #fff;
}

.status-banner.status-closed {
    background: #8B4513;
    color: #fff;
}

@media (max-width: 576px) {
    .status-banner {
        font-size: 0.85rem;
        padding: 8px 0;
    }

    .status-banner .container {
        flex-direction: column;
        gap: 2px;
    }

    .status-banner i {
        display: none;
    }
}

@media (max-width: 991px) {
    .navbar-modern .navbar-nav {
        padding: 1rem 0;
    }

    .navbar-modern .nav-link {
        padding: 0.75rem 0;
    }

    .navbar-modern .navbar-right {
        padding-top: 1rem;
        border-top: 1px solid #eee;
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-modern .nav-status {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .navbar-modern .nav-greeting {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .navbar-modern .btn-nav {
        flex: 1;
        text-align: center;
        min-width: 120px;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1920&q=80') center/cover no-repeat;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Hero Stats Badges */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1.5rem;
    justify-content: center;
}

@media (min-width: 992px) {
    .hero-stats {
        justify-content: flex-start;
    }
}

.stat-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 10px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.stat-badge i {
    color: #FF4900;
}

/* ========================================
   Order Box (Hero Search Box)
   ======================================== */
.hero-search-box {
    background: #fff;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-width: 420px;
    margin: 0 auto;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero-search-box {
        margin: 0 0 0 auto;
    }
}

.order-box {
    padding: 1.75rem;
}

.order-box-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1.25rem;
    text-align: left;
}

/* Order Tabs */
.order-tabs {
    display: flex;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 1.5rem;
}

.order-tab {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.order-tab:hover {
    color: #333;
}

.order-tab.active {
    background: #1a1a2e;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.order-tab i {
    font-size: 1rem;
}

/* Order Form */
.order-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    text-align: left;
}

.order-form .input-group {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
    transition: border-color 0.2s;
}

.order-form .input-group:focus-within {
    border-color: #FF4900;
}

.order-form .input-group-text {
    background: transparent;
    border: none;
    color: #999;
    padding-left: 1rem;
}

.order-form .form-control {
    border: none;
    background: transparent;
    padding: 0.875rem 1rem 0.875rem 0;
    font-size: 1rem;
}

.order-form .form-control:focus {
    box-shadow: none;
    background: transparent;
}

.order-form .form-control::placeholder {
    color: #aaa;
}

.order-help-text {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    text-align: left;
}

/* Pickup Info */
.pickup-info {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    color: #333;
    margin: 0;
    text-align: left;
    font-weight: 500;
}

.pickup-info i {
    color: #FF4900;
    margin-right: 8px;
}

/* Delivery Status */
.delivery-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.delivery-status.status-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.delivery-status.status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.delivery-status .status-icon {
    font-size: 1.1rem;
}

.status-success .status-icon {
    color: #28a745;
}

.status-error .status-icon {
    color: #dc3545;
}

/* Order Submit Button */
.btn-order-submit {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #FF4900;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-order-submit:hover {
    background: #e04200;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 73, 0, 0.4);
}

.btn-order-submit.btn-success-custom {
    background: #28a745;
}

.btn-order-submit.btn-success-custom:hover {
    background: #218838;
}

.btn-order-submit.btn-disabled {
    background: #ccc;
    color: #888;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-order-submit.btn-disabled:hover {
    background: #ccc;
    color: #888;
    transform: none;
    box-shadow: none;
}

/* Check button in input */
.order-form .input-group .btn-primary {
    border-radius: 0 8px 8px 0;
    padding: 0 1.25rem;
    background: #FF4900;
    border-color: #FF4900;
}

.order-form .input-group .btn-primary:hover {
    background: #e04200;
    border-color: #e04200;
}

/* ========================================
   Offers Section
   ======================================== */
.offers-section {
    background: #fff;
    padding: 30px 0;
}

.offer-banner {
    background: linear-gradient(135deg, #FF4900 0%, #ff6b35 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: 0 10px 40px rgba(255, 73, 0, 0.3);
}

.offer-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.offer-content {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.offer-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.offer-text {
    display: block;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
}

.offer-text strong {
    background: #fff;
    color: #FF4900;
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 5px;
}

.btn-offer {
    background: #fff;
    color: #FF4900;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-offer:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works-section {
    background: #f8f9fa;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .how-it-works-section {
        padding: 40px 0;
    }

    .how-it-works-section .row {
        flex-direction: column;
    }

    .how-it-works-section .col-md-4 {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 1.5rem;
    }

    .how-it-works-section .col-md-4:last-child {
        margin-bottom: 0;
    }

    .step-card {
        padding: 1.5rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
    }

    .step-card .step-number {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        flex-shrink: 0;
    }

    .step-card .step-icon {
        margin: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .step-card .step-icon i {
        font-size: 1.5rem;
    }

    .step-card h4 {
        margin-bottom: 0.25rem;
        font-size: 1.1rem;
    }

    .step-card p {
        font-size: 0.9rem;
    }
}

.step-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: #FF4900;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(255, 73, 0, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: #FF4900;
}

.step-card h4 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step-card p {
    color: #666;
    margin: 0;
    font-size: 1rem;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    background: #fff;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .about-section .section-title {
        text-align: center !important;
    }

    .about-text {
        text-align: center;
    }

    .about-section .btn {
        display: block;
        width: 100%;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    width: 100%;
    height: auto;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #FF4900 0%, #ff6b35 100%);
    border-radius: 16px;
    z-index: -1;
}

.about-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.about-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF4900;
    line-height: 1;
}

.about-stat .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* ========================================
   Section Titles (Shared)
   ======================================== */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 0;
}

/* ========================================
   Popular Section
   ======================================== */
.popular-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.popular-carousel-wrapper {
    position: relative;
}

.popular-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 0 20px;
}

.popular-carousel::-webkit-scrollbar {
    display: none;
}

.popular-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popular-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-3px);
    text-decoration: none;
    color: inherit;
}

.popular-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff4900;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 1;
}

.popular-card-body {
    padding: 42px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.popular-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    line-height: 1.3;
}

.popular-card-desc {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 12px;
    line-height: 1.4;
    flex: 1;
}

.popular-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.popular-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff4900;
}

.popular-card-price s {
    color: #bbb;
    font-size: 0.85rem;
    font-weight: 400;
    margin-right: 4px;
}

.popular-card-cta {
    width: 36px;
    height: 36px;
    background: #ff4900;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.popular-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.2s;
    color: #333;
    font-size: 0.9rem;
}

.popular-arrow:hover {
    background: #f5f5f5;
}

.popular-arrow-left {
    left: -20px;
}

.popular-arrow-right {
    right: -20px;
}

@media (max-width: 768px) {
    .popular-section {
        padding: 40px 0;
    }

    .popular-card {
        flex: 0 0 220px;
    }

    .popular-arrow {
        display: none;
    }
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    background: #fff;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-rating .stars i {
        font-size: 1.25rem;
    }

    .reviews-section .row {
        flex-direction: column;
    }

    .reviews-section .col-md-4 {
        max-width: 100%;
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }

    .reviews-section .col-md-4:last-child {
        margin-bottom: 0;
    }

    .review-card {
        padding: 1.25rem;
    }

    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .reviewer-info h5 {
        font-size: 0.95rem;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

.reviews-rating {
    margin-top: 1rem;
}

.reviews-rating .stars {
    display: inline-flex;
    gap: 5px;
    margin-bottom: 0.5rem;
}

.reviews-rating .stars i {
    font-size: 1.5rem;
    color: #FFD700;
}

.rating-text {
    display: block;
    font-size: 1rem;
    color: #666;
}

.review-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF4900 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.reviewer-info h5 {
    margin: 0;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 1rem;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    background: #f8f9fa;
    padding: 60px 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question:focus {
    outline: none;
}

.faq-question i {
    color: #FF4900;
    transition: transform 0.3s ease;
}

.faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #FF4900 0%, #ff6b35 100%);
    color: #fff;
    padding: 80px 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.95;
    margin: 0;
}

.cta-section .btn-light {
    background: #fff;
    color: #FF4900;
    border: none;
    padding: 16px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    background: #1a1a2e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ========================================
   Features Section (legacy)
   ======================================== */
.features-section {
    background: #fff;
    padding: 60px 0;
}

.feature-card {
    padding: 2rem 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 1.25rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF4900 0%, #ff6b35 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 73, 0, 0.3);
}

.feature-icon i,
.feature-icon .fa {
    font-size: 2rem;
    color: #fff;
}

/* ========================================
   Button Styles
   ======================================== */
.btn-primary {
    background: #FF4900;
    border-color: #FF4900;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #e04200;
    border-color: #e04200;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content {
        padding: 80px 0 60px;
    }

    .about-image::before {
        display: none;
    }

    .about-stats {
        justify-content: center;
    }

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

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

    .offer-banner {
        flex-direction: column;
        text-align: center;
    }

    .offer-content {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title,
    .cta-title {
        font-size: 1.75rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .about-stat .stat-number {
        font-size: 2rem;
    }

    .step-card {
        margin-bottom: 2rem;
    }

    .review-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 0;
    }

    .hero-content {
        padding: 60px 0 40px;
    }

    .hero-section .row {
        flex-direction: column;
    }

    .hero-section .col-lg-6 {
        text-align: center !important;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .stat-badge {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .hero-search-box {
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
    }

    .order-box {
        padding: 1.25rem;
    }

    .order-box-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .order-tabs {
        margin-bottom: 1rem;
    }

    .order-tab {
        padding: 0.7rem 0.75rem;
        font-size: 0.9rem;
    }

    .order-label {
        font-size: 0.85rem;
    }

    .btn-order-submit {
        padding: 0.875rem;
        font-size: 1rem;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 50px 0 30px;
    }

    .stat-badge {
        font-size: 0.75rem;
        padding: 6px 10px;
        gap: 5px;
    }

    .hero-search-box {
        border-radius: 0;
        margin: 0 -15px;
    }

    .order-box {
        padding: 1rem;
    }

    .about-stats {
        gap: 1.5rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

    .step-card {
        padding: 2rem 1.5rem;
    }

    .about-stat .stat-number {
        font-size: 1.75rem;
    }

    .review-card {
        padding: 1.25rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}


/* ========================================
   IMPROVED ORDER BOX - Search with Autocomplete
   ======================================== */

.search-input-wrap {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 0 1rem;
    transition: all 0.25s ease;
    position: relative;
}

.search-input-wrap:focus-within {
    border-color: #FF4900;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 73, 0, 0.08);
}

.search-input-wrap.is-valid {
    border-color: #28a745;
    background: #f0fff4;
}

.search-input-wrap.is-valid:focus-within {
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.08);
}

.search-input-wrap.is-invalid {
    border-color: #dc3545;
    background: #fff5f5;
}

.search-input-wrap.is-invalid:focus-within {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}

.search-icon {
    color: #FF4900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 0.95rem 0.75rem;
    font-size: 1rem;
    color: #1a1a2e;
    outline: none;
    min-width: 0;
}

.search-input::placeholder {
    color: #aaa;
}

.search-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF4900;
    font-size: 1.1rem;
    flex-shrink: 0;
    animation: pulse-opacity 1s ease infinite;
}

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

.search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    background: #e0e0e0;
    border-radius: 50%;
    color: #666;
    font-size: 0.75rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}

.search-clear:hover {
    background: #ccc;
    color: #333;
}

/* Status message */
.delivery-status {
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideDown 0.25s ease;
}

.delivery-status i {
    margin-right: 6px;
}

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

.delivery-status.status-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.delivery-status.status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Pickup card */
.pickup-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #f0f7ff;
    border: 1px solid #d0e3f7;
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.pickup-card-icon {
    font-size: 1.6rem;
    color: #FF4900;
    flex-shrink: 0;
}

.pickup-card strong {
    color: #1a1a2e;
    font-size: 1rem;
}

.pickup-address {
    color: #666;
    font-size: 0.9rem;
}

/* Submit button */
.btn-order-submit.btn-ready {
    background: linear-gradient(135deg, #28a745 0%, #20c040 100%);
    color: #fff;
    animation: slideDown 0.3s ease;
}

.btn-order-submit.btn-ready:hover {
    background: linear-gradient(135deg, #218838 0%, #1da838 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
}

/* Google Places Autocomplete dropdown styling */
.pac-container {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-top: 4px;
    font-family: "Titillium Web", "Segoe UI", sans-serif;
    z-index: 10000 !important;
}

.pac-item {
    padding: 10px 14px;
    font-size: 0.9rem;
    border-color: #f0f0f0;
    cursor: pointer;
    transition: background 0.15s;
}

.pac-item:hover {
    background: #fff5f0;
}

.pac-item-selected {
    background: #fff5f0;
}

.pac-icon {
    margin-right: 10px;
}

.pac-item-query {
    font-size: 0.95rem;
    color: #1a1a2e;
}

/* ========================================
   Standort / Location Section
   ======================================== */
.location-section {
    background: #fff;
    padding: 60px 0;
}

.location-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.location-map-wrapper iframe {
    width: 100%;
    height: 600px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .location-section {
        padding: 40px 0;
    }

    .location-map-wrapper iframe {
        height: 400px;
    }

    .location-map-wrapper {
        border-radius: 12px;
    }
}

/* Responsive */
@media (max-width: 767px) {
    .search-input {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 0.85rem 0.5rem;
    }
}
