/* order-now.css */

.order-now-body {
    background: #ffffff;
    padding-top: 140px;
}

.order-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Location Header */
.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}
.location-icon-wrap {
    color: var(--color-red);
}
.location-text h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    font-family: var(--font-body);
}
.location-text p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

/* Search Bar */
.order-search-bar {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    margin-bottom: 1.5rem;
    gap: 10px;
}
.order-search-bar input {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--font-body);
}
.order-search-bar i {
    color: var(--color-red);
}

/* Toggle Menu */
.toggle-menu-wrapper {
    background: #f0f0f0;
    border-radius: 50px;
    display: flex;
    padding: 5px;
    margin-bottom: 2rem;
}
.toggle-item {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.toggle-item.active {
    background: #ffffff;
    color: #d32f2f; /* Red from the image */
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Promo Banner */
.promo-banner {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    background: #2a3441; /* Dark blue background from image */
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.promo-banner h2 {
    color: #e2db71;
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 0px #b2a84d, 4px 4px 0px rgba(0,0,0,0.2);
    letter-spacing: 4px;
}
.promo-banner .cash {
    transform: rotate(-3deg);
    display: inline-block;
}
.promo-banner .back {
    transform: rotate(2deg);
    display: inline-block;
}

/* What's on your mind */
.mind-section-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.mind-menu-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 15px;
}
.mind-menu-row::-webkit-scrollbar {
    display: none;
}
.mind-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 75px;
    cursor: pointer;
    color: #666;
    transition: all 0.2s ease;
}
.mind-item span {
    font-size: 0.85rem;
    font-weight: 500;
}
.mind-item.active {
    color: #d32f2f;
}
.mind-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.mind-item:hover .mind-icon-wrap {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.mind-item.active .mind-icon-wrap {
    border: 2px solid #d32f2f;
    background: #fff;
}
.mind-item.active i {
    color: #d32f2f;
}

/* Restaurant List header */
.restaurant-list-header {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
