/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 0.5rem 0.5rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-logo {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.nav-logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #BF1109;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    position: absolute;
    left: 65%;
    transform: translateX(-50%);
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #BF1109;
}

.nav-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.nav-icons a {
    color: #333;
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: #BF1109;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    flex-shrink: 0;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.hero-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-text p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: #BF1109;
    color: white;
    border: 2px solid #BF1109;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: #a00e08;
    color: #BF1109;
    transform: translateY(-3px);
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(191, 17, 9, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #BF1109;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #BF1109;
    color: white;
    border-color: #BF1109;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(191, 17, 9, 0.4);
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Category Hero Section */
.category-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(191, 17, 9, 0.4) 0%, rgba(160, 14, 8, 0.4) 100%), 
                url('/assets/images/category/category_1.jpeg');
    color: white;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Restaurant Category Hero */
.category-hero.restaurant-hero {
    background: linear-gradient(135deg, rgba(191, 17, 9, 0.4) 0%, rgba(160, 14, 8, 0.4) 100%), 
                url('../../assets/images/category/category_1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Cosmetics Category Hero */
.category-hero.cosmetics-hero {
    background: linear-gradient(135deg, rgba(191, 17, 9, 0.7) 0%, rgba(160, 14, 8, 0.7) 100%), 
                url('../../assets/images/cosmetics/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Bar Category Hero */
.category-hero.bar-hero {
    background: linear-gradient(135deg, rgba(191, 17, 9, 0.8) 0%, rgba(160, 14, 8, 0.7) 100%), 
                url('../../assets/images/bar/hero.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.category-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.category-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

/* Category Filters */
.category-filters {
    margin-bottom: 3rem;
    text-align: center;
}

.drink-select-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto 2rem auto;
}

.styled-select {
    width: calc(4 * 100px + 3 * 1rem); /* 4 buttons min-width + 3 gaps */
    max-width: 100%;
    min-width: 320px;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    .styled-select {
        width: 100%;
        min-width: 0;
    }
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid #BF1109;
    background: transparent;
    color: #BF1109;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn.active,
.filter-btn:hover {
    background: #BF1109;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 17, 9, 0.3);
}

/* Features Section */
.features {
    padding: 50px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #FFFFFF;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #bf1109;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #BF1109;
}

.feature-card p {
    color: #666;
}

/* Categories Section */
.categories {
    padding: 2.5rem 0 4rem;
    background: white;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.category-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.category-link {
    color: #BF1109;
    text-decoration: none;
    font-weight: 600;
    background: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.category-link:hover {
    background: #BF1109;
    color: white;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background: #f8f9fa;
    overflow: hidden;
}

.featured-products .container {
    overflow: hidden;
    height: auto;
    max-height: none;
    padding: 0 20px;
}

.featured-products h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.products-slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    padding: 0 20px;
}

.products-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.products-grid {
    display: flex;
    gap: 2rem;
    padding: 0;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
}

.product-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 260px;
    max-width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    transition: box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 420px; /* Reduced height to prevent overflow */
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    height: 200px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: #BF1109;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 0;
    overflow: hidden;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #333;
    line-height: 1.3;
}

.product-description {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    flex-shrink: 0;
    padding-top: 0.5rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #BF1109;
}

.original-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.add-to-cart {
    background: #BF1109;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.add-to-cart:hover {
    background: #a00d08;
}

/* Newsletter Section */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, #BF1109 0%, #a00d08 100%);
    background-image: url('../../assets/images/hero/hero_4.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.newsletter .container {
    padding: 0 20px;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #FFE8E9;
    color: #333;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #BF1109;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #333;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #BF1109;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #BF1109;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #a00e08;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(191, 17, 9, 0.2);
    opacity: 0.8;
}

.footer-logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.cart-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: cartSlideIn 0.3s ease-out;
}

@keyframes cartSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.cart-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    color: #BF1109;
    background: #f8f8f8;
}

.cart-items {
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    animation: fadeInUp 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-content img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.cart-item-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-actions button {
    background: #BF1109;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-actions button:hover {
    background: #a00d08;
    transform: scale(1.1);
}

.cart-item-actions span {
    font-weight: 600;
    color: #333;
    min-width: 20px;
    text-align: center;
}

.cart-item-actions .remove-btn {
    background: #e74c3c;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
}

.cart-item-actions .remove-btn:hover {
    background: #c0392b;
}

.cart-footer {
    border-top: 2px solid #f0f0f0;
    padding-top: 1.5rem;
}

.cart-total {
    text-align: center;
    margin-bottom: 1.5rem;
}

.cart-total span {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.cart-actions .btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    display: block;
}

.cart-actions .btn-secondary {
    background: #f8f8f8;
    color: #666;
    border: 2px solid #e0e0e0;
}

.cart-actions .btn-secondary:hover {
    background: #e0e0e0;
    color: #333;
}

.cart-actions .btn-primary {
    background: #BF1109;
    color: white;
}

.cart-actions .btn-primary:hover {
    background: #a00d08;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(191, 17, 9, 0.3);
}

/* Empty cart state */
.cart-items:empty::after {
    content: "Your cart is empty";
    display: block;
    text-align: center;
    color: #999;
    font-style: italic;
    padding: 2rem 0;
}

/* Responsive design for cart modal */
@media (max-width: 768px) {
    .cart-content {
        width: 95%;
        max-width: none;
        margin: 1rem;
        padding: 1.5rem;
        max-height: 85vh;
    }
    
    .cart-header h3 {
        font-size: 1.25rem;
    }
    
    .cart-item-content {
        gap: 0.75rem;
    }
    
    .cart-item-content img {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-details h4 {
        font-size: 0.9rem;
    }
    
    .cart-item-details p {
        font-size: 0.8rem;
    }
    
    .cart-item-actions button {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .cart-item-actions .remove-btn {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
    
    .cart-actions {
        gap: 0.75rem;
    }
    
    .cart-actions .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cart-content {
        width: 98%;
        padding: 1rem;
        margin: 0.5rem;
    }
    
    .cart-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .cart-header h3 {
        font-size: 1.1rem;
    }
    
    .close-cart {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
    }
    
    .cart-item {
        padding: 0.75rem 0;
    }
    
    .cart-item-content img {
        width: 45px;
        height: 45px;
    }
    
    .cart-item-details h4 {
        font-size: 0.85rem;
    }
    
    .cart-item-details p {
        font-size: 0.75rem;
    }
    
    .cart-total span {
        font-size: 1.1rem;
    }
}

/* Mobile responsive fixes to prevent horizontal overflow */
@media (max-width: 768px) {
    .navbar-logo {
        height: 60px;
        max-width: 270px;
    }
    
    .nav-container {
        padding: 0 10px;
        min-height: 60px;
        justify-content: space-between;
    }
    
    .nav-logo {
        flex: 1 1 auto;
        justify-content: flex-start;
        min-width: 0;
        order: 1;
    }
    
    .nav-menu {
        position: fixed !important;
        right: -250px !important; 
        left: auto !important; 
        flex-direction: column;
        background-color: #BF1109;
        width: 180px;
        min-width: 180px;
        text-align: left;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        padding: 1rem 1.5rem;
        z-index: 2000;
        overflow-y: auto;
        height: calc(100vh - 60px);
        order: 4;
        transform: none !important;
        visibility: hidden;
        opacity: 0;
    }
    
    .nav-menu.active {
        right: 0 !important; 
        left: auto !important; 
        visibility: visible;
        opacity: 1;
    }
    
    .nav-menu li {
        margin: 0  0.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.2rem 0;
        color: #FFFFFF;
        font-weight: 500;
        display: block;
    }
    
    .nav-menu a:hover {
        color: #f0f0f0;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none;
        background: #BF1109;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin: 0.5rem 0 0 0;
        padding: 0 0 0 1rem;
        z-index: 2100;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: white;
        background: none;
        padding: 0.5rem 0;
        font-size: 1rem;
        border-radius: 0;
        margin: 0;
        opacity: 0.9;
    }
    
    .dropdown-menu a:hover {
        color: #f0f0f0;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-icons {
        display: flex;
        align-items: center;
        gap: 0.7rem;
        order: 2;
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .hamburger {
        display: flex;
        order: 3;
        margin-left: 0;
    }
    
    .search-icon {
        display: none !important;
    }
    
    /* Consistent container padding for all sections */
    .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .categories .container,
    .featured-products .container,
    .newsletter .container {
        padding: 0 15px;
    }
    
    .products-slider-container {
        margin: 0;
        padding: 0 15px;
        overflow: hidden;
    }
    
    .products-grid {
        gap: 1rem;
        padding: 0;
        margin: 0;
    }
    
    .product-card {
        flex: 0 0 calc(50% - 0.5rem);
        min-width: 160px;
        max-width: none;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slider-prev { 
        left: 0; 
    }
    
    .slider-next { 
        right: 0; 
    }
    
    /* Ensure no horizontal scroll on mobile */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .featured-products {
        overflow: hidden;
    }
    
    /* Newsletter form adjustments for mobile */
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    /* Mobile button adjustments */
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 0 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .navbar-logo {
        height: 50px;
        max-width: 170px;
    }
    
    .nav-container {
        padding: 0 4px;
        min-height: 48px;
    }
    
    .nav-icons {
        gap: 0.5rem;
        margin-right: 0.5rem;
    }
    
    /* Consistent container padding for smaller screens */
    .container {
        padding: 0 10px;
    }
    
    .categories .container,
    .featured-products .container,
    .newsletter .container {
        padding: 0 10px;
    }
    
    .products-slider-container {
        margin: 0;
        padding: 0 10px;
    }
    
    .product-card {
        flex: 0 0 100%;
        min-width: 140px;
        margin: 0 0 1rem 0;
    }
    
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    
    .slider-prev { 
        left: 0; 
    }
    
    .slider-next { 
        right: 0; 
    }
    
    .slider-dots {
        margin-top: 1rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Additional mobile fixes */
    .hero-content {
        padding: 0 10px;
    }
    
    .categories-grid {
        gap: 1rem;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
    
    /* Smaller buttons for very small screens */
    .hero-buttons .btn {
        padding: 8px;
        font-size: 0.85rem;
        width: 120px;
        max-width: 50%;
    }
    
    .hero-buttons {
        gap: 0.4rem;
    }
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 10px;
}

.dropdown-menu a:hover {
    background: #BF1109;
    color: white;
    transform: translateX(2px);
}

/* Category Products Section */
.category-products {
    padding: 80px 0;
    background: white;
    margin-bottom: 0;
}

.category-products .container {
    max-width: 1400px;
    padding: 0 2rem;
}

.category-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0;
    align-items: start;
}

.category-products .product-card {
    width: 100%;
    min-width: auto;
    height: auto;
    min-height: 320px;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.category-products .product-card.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    left: -9999px;
    top: -9999px;
    z-index: -1;
    grid-column: unset;
    grid-row: unset;
    order: unset;
}

/* Products Slider Styles */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.10);
    transition: background 0.3s, transform 0.3s;
}
.slider-arrow:hover {
    background: #BF1109;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.slider-prev { left: 0; }
.slider-next { right: 0; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0;
    height: auto;
    overflow: visible;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.dot.active, .dot:hover {
    background: #BF1109;
    transform: scale(1.15);
}

@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.333% - 1rem); /* 3 per view */
        min-width: 220px;
    }
}
@media (max-width: 768px) {
    .products-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    .product-card {
        flex: 0 0 calc(50% - 0.5rem); /* 2 per view */
        min-width: 180px;
    }
    .slider-arrow {
        width: 38px;
        height: 38px;
    }
    .slider-prev { left: 2px; }
    .slider-next { right: 2px; }
}
@media (max-width: 480px) {
    .product-card {
        flex: 0 0 100%; /* 1 per view */
        min-width: 140px;
    }
    .slider-arrow {
        width: 32px;
        height: 32px;
    }
    .slider-dots {
        margin-top: 1.2rem;
    }
    .dot {
        width: 9px;
        height: 9px;
    }
}

/* About Us Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(191, 17, 9, 0.8) 0%, rgba(191, 17, 9, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.our-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #BF1109;
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-vision {
    padding: 80px 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #BF1109;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3, .vision-card h3 {
    font-size: 1.8rem;
    color: #BF1109;
    margin-bottom: 1rem;
}

.mission-card p, .vision-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.our-values {
    padding: 80px 0;
    background: white;
}

.our-values h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #BF1109;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #BF1109;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #BF1109;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

.our-team {
    padding: 80px 0;
    background: #f8f9fa;
}

.our-team h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #BF1109;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    color: #BF1109;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #BF1109;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    line-height: 1.6;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(191, 17, 9, 0) 0%, rgba(191, 17, 9, 0) 100%), 
                url('../../assets/images/hero/hero_4.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1rem;
    border-radius: 12px;
    background: #BF1109;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: #f01005;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(191, 17, 9, 0.8) 0%, rgba(191, 17, 9, 0.6) 100%), 
                url('https://images.unsplash.com/photo-1546069901-ba9599a7e63c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2080&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    padding: 80px 0;
    background: white;
}

.contact-info .container {
    max-width: 1200px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #BF1109;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #BF1109;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

.form-content h2 {
    font-size: 2.5rem;
    color: #BF1109;
    margin-bottom: 1rem;
    text-align: center;
}

.form-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BF1109;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.map-section {
    padding: 80px 0;
    background: white;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #BF1109;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #BF1109;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #BF1109;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive Design for About and Contact Pages */
@media (max-width: 768px) {
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero,
    .contact-hero,
    .stats-section {
        background-attachment: scroll;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-text h2,
    .form-content h2,
    .our-values h2,
    .our-team h2,
    .map-section h2,
    .faq-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        max-width: 95%;
    }
    
    .faq-grid {
        max-width: 95%;
    }
}

/* Hero Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-dot.active {
    background: #BF1109;
    border-color: white;
    transform: scale(1.2);
}

/* Animation for hero content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Authentication Pages Styles */
.auth-hero {
    background: linear-gradient(135deg, #BF1109 0%, #8B0000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
    position: relative;
    overflow: hidden;
}

.auth-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.auth-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 50px;
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}

.auth-header {
    text-align: center;
    margin-bottom: 20px;
}

.auth-header h1 {
    color: #333;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.auth-header p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    position: relative;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
    outline: none;
    border-color: #BF1109;
    box-shadow: 0 0 0 3px rgba(191, 17, 9, 0.1);
    background: #fff;
}

.form-group input::placeholder {
    color: #999;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 6px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.remember-me label {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.forgot-link {
    color: #BF1109;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #8B0000;
    text-decoration: underline;
}

.auth-btn {
    background: linear-gradient(135deg, #BF1109 0%, #8B0000 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.auth-btn:hover::before {
    left: 100%;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(191, 17, 9, 0.3);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e1e5e9;
    z-index: 1;
}

.auth-divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 20px;
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.social-auth {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    background: white;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-btn:hover {
    border-color: #BF1109;
    background: #f8f9fa;
    transform: translateY(-1px);
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn.google i {
    color: #DB4437;
}

.social-btn.facebook i {
    color: #4267B2;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e1e5e9;
}

.auth-footer p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.auth-footer a {
    color: #BF1109;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #8B0000;
    text-decoration: underline;
}

/* Registration Form Two-Column Layout */
.register-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.register-form .form-group.full-width {
    grid-column: 1 / -1;
}

.register-form .checkbox-group {
    grid-column: 1 / -1;
}

.register-form .auth-btn {
    grid-column: 1 / -1;
    margin-top: 15px;
}

/* Add more spacing for registration form specifically */
.register-form .form-group {
    margin-bottom: 5px;
}

.register-form .form-group label {
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.register-form .form-group input {
    padding: 12px 16px;
}


/* Forgot Password Specific Styles */
.forgot-form {
    text-align: center;
}

.forgot-form .form-group {
    margin-bottom: 12px;
}

.back-to-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #BF1109;
    text-decoration: none;
    font-weight: 500;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.back-to-login:hover {
    color: #8B0000;
}

.back-to-login i {
    font-size: 0.9rem;
}

/* Success/Error Messages */
.auth-message {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.auth-message.success {
    background: rgba(76, 175, 80, 0.1);
    color: #2E7D32;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.auth-message.error {
    background: rgba(244, 67, 54, 0.1);
    color: #C62828;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

/* Responsive Design for Auth Pages */
@media (max-width: 768px) {
    .auth-container {
        padding: 40px 25px;
        margin: 25px 20px;
        max-width: 100%;
    }
    
    .auth-header h1 {
        font-size: 1.75rem;
    }
    
    .auth-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
    
    .social-auth {
        gap: 10px;
    }
    
    .social-btn {
        padding: 14px 18px;
        font-size: 0.85rem;
    }
    
    /* Registration form single column on mobile */
    .register-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .register-form .form-group.full-width,
    .register-form .form-group.checkbox-group {
        grid-column: 1;
    }
    
    .register-form .form-group {
        margin-bottom: 8px;
    }
    
    /* .register-form .form-group:nth-child(1),
    .register-form .form-group:nth-child(2),
    .register-form .form-group:nth-child(3),
    .register-form .form-group:nth-child(4),
    .register-form .form-group:nth-child(5),
    .register-form .form-group:nth-child(6) {
        margin-bottom: 12px;
    } */
    
    .register-form .form-group.checkbox-group {
        margin-top: 8px;
    }
    
    .register-form .auth-btn {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .auth-hero {
        padding: 100px 15px 30px;
    }
    
    .auth-container {
        padding: 35px 20px;
        margin: 20px 15px;
    }
    
    .auth-header h1 {
        font-size: 1.5rem;
    }
    
    .auth-header p {
        font-size: 0.9rem;
    }
    
    .form-group input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .remember-forgot {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .auth-form {
        gap: 10px;
    }
    
    .auth-divider {
        margin: 15px 0;
    }
    
    .auth-divider span {
        padding: 0 15px;
        font-size: 0.85rem;
    }
    
    .social-auth {
        gap: 8px;
    }
    
    .social-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .auth-footer {
        margin-top: 15px;
        padding-top: 12px;
    }
}

/* ===== USER DASHBOARD STYLES ===== */

.dashboard-hero {
    background: linear-gradient(135deg, #BF1109 0%, #8B0000 100%);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.dashboard-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.dashboard-hero-content h1 span {
    color: #FFD700;
}

.dashboard-hero-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.dashboard-content {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sidebar Styles */
.dashboard-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-nav li {
    margin: 0;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dashboard-nav a:hover {
    background: #f8f9fa;
    color: #BF1109;
    border-left-color: #BF1109;
}

.dashboard-nav li.active a {
    background: rgba(191, 17, 9, 0.1);
    color: #BF1109;
    border-left-color: #BF1109;
    font-weight: 600;
}

.dashboard-nav i {
    width: 20px;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Main Content Styles */
.dashboard-main {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dashboard-section {
    display: none;
    padding: 30px;
}

.dashboard-section.active {
    display: block;
}

.section-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 8px;
}

.section-header p {
    color: #666;
    font-size: 1rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: #BF1109;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon i {
    color: white;
    font-size: 1.2rem;
}

.stat-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.stat-content p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Recent Activity */
.recent-activity {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.recent-activity h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
}

.activity-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #BF1109;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.activity-icon i {
    color: white;
    font-size: 0.9rem;
}

.activity-content p {
    margin: 0 0 5px 0;
    color: #333;
    font-weight: 500;
}

.activity-time {
    color: #666;
    font-size: 0.85rem;
}

/* Profile Form */
.profile-form {
    max-width: 600px;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.profile-form .form-group {
    margin-bottom: 20px;
}

.profile-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.profile-form input,
.profile-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.profile-form input:focus,
.profile-form textarea:focus {
    outline: none;
    border-color: #BF1109;
}

.profile-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Orders List */
.orders-list {
    min-height: 300px;
}

.no-orders,
.no-wishlist,
.no-addresses {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-orders i,
.no-wishlist i,
.no-addresses i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-orders h3,
.no-wishlist h3,
.no-addresses h3 {
    margin-bottom: 10px;
    color: #333;
}

.no-orders p,
.no-wishlist p,
.no-addresses p {
    margin-bottom: 25px;
}

/* Wishlist Grid */
.wishlist-grid {
    min-height: 300px;
}

/* Settings Grid */
.settings-grid {
    display: grid;
    gap: 30px;
}

.setting-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.setting-card h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 1.3rem;
}

.password-form .form-group {
    margin-bottom: 20px;
}

.notification-settings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.setting-item {
    display: flex;
    align-items: center;
}

.account-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
}

.btn-danger:hover {
    background: #c82333;
}

/* Responsive Design for Dashboard */
@media (max-width: 1024px) {
    .dashboard-grid {
        grid-template-columns: 250px 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-hero-content h1 {
        font-size: 2rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
    }
    
    .dashboard-sidebar {
        position: static;
        order: 1;
        margin-top: 20px;
        width: 100%;
    }
    
    .dashboard-main {
        order: 2;
        width: 100%;
    }
    
    .dashboard-nav ul {
        display: flex;
        overflow-x: auto;
        padding: 10px;
        gap: 10px;
        width: 100%;
    }
    
    .dashboard-nav li {
        flex-shrink: 0;
    }
    
    .dashboard-nav a {
        padding: 12px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
        border-radius: 8px;
        background: #f8f9fa;
    }
    
    .dashboard-nav a:hover,
    .dashboard-nav li.active a {
        border-left-color: transparent;
        border-bottom-color: #BF1109;
        background: rgba(191, 17, 9, 0.1);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .profile-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-section {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .dashboard-hero {
        padding: 60px 0 30px;
    }
    
    .dashboard-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .dashboard-content {
        padding: 20px 0;
    }
    
    .dashboard-grid {
        margin: 0 10px;
        max-width: calc(100% - 20px);
    }
    
    .dashboard-section {
        padding: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-card {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .dashboard-nav {
        margin-bottom: 0;
        width: 100%;
    }
    
    .dashboard-nav ul {
        padding: 8px;
        gap: 8px;
        width: 100%;
    }
    
    .dashboard-nav a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .dashboard-nav i {
        font-size: 1rem;
        margin-right: 8px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .recent-activity {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .activity-item {
        padding: 12px 0;
    }
    
    .activity-icon {
        width: 35px;
        height: 35px;
    }
    
    .profile-form {
        margin-top: 0;
        width: 100%;
    }
    
    .profile-form .form-group {
        margin-bottom: 15px;
    }
    
    .profile-form input,
    .profile-form textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .setting-card {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .setting-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

/* Dashboard Notifications */
.dashboard-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    border-left: 4px solid #BF1109;
}

.dashboard-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.dashboard-notification.success {
    border-left-color: #28a745;
}

.dashboard-notification.error {
    border-left-color: #dc3545;
}

.dashboard-notification.info {
    border-left-color: #17a2b8;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notification-content i {
    font-size: 1.1rem;
}

.dashboard-notification.success .notification-content i {
    color: #28a745;
}

.dashboard-notification.error .notification-content i {
    color: #dc3545;
}

.dashboard-notification.info .notification-content i {
    color: #17a2b8;
}

.notification-content span {
    color: #333;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: #333;
}

@media (max-width: 480px) {
    .dashboard-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

/* Authentication Check Section */
.auth-check-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #BF1109 0%, #8B0000 100%);
    color: white;
}

.auth-check-content {
    text-align: center;
    padding: 40px;
}

.auth-check-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.auth-check-content h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.auth-check-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Checkout Notifications */
.checkout-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    border-left: 4px solid #BF1109;
}

.checkout-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.checkout-notification.success {
    border-left-color: #28a745;
}

.checkout-notification.error {
    border-left-color: #dc3545;
}

.checkout-notification.info {
    border-left-color: #17a2b8;
}

.checkout-notification .notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.checkout-notification .notification-content i {
    font-size: 1.1rem;
}

.checkout-notification.success .notification-content i {
    color: #28a745;
}

.checkout-notification.error .notification-content i {
    color: #dc3545;
}

.checkout-notification.info .notification-content i {
    color: #17a2b8;
}

.checkout-notification .notification-content span {
    color: #333;
    font-weight: 500;
}

.checkout-notification .notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.checkout-notification .notification-close:hover {
    color: #333;
}

@media (max-width: 480px) {
    .checkout-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
}

/* Custom Food Menu Section */
.custom-food-menu {
    background: #fff8f6;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(191, 17, 9, 0.10);
    margin: 3rem 0 2rem 0;
    padding: 2.5rem 1.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: visible;
}
.custom-food-menu h2 {
    color: #BF1109;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 1px;
}
.menu-description {
    text-align: center;
    color: #555;
    margin-bottom: 2.2rem;
    font-size: 1.15rem;
}
.food-menu-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}
.menu-categories {
    flex: 2 1 420px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu-category {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(191, 17, 9, 0.08);
    padding: 1.5rem 2rem;
    margin-bottom: 0.5rem;
    position: relative;
    transition: box-shadow 0.2s;
}
.menu-category:hover {
    box-shadow: 0 6px 24px rgba(191, 17, 9, 0.13);
}
.menu-category h3 {
    color: #BF1109;
    font-size: 1.18rem;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.menu-category h3::before {
    content: attr(data-step);
    display: inline-block;
    background: #BF1109;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    text-align: center;
    line-height: 2rem;
    margin-right: 0.7rem;
}
.menu-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 1rem;
}
.menu-options label {
    font-size: 1.08rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 8px;
    background: #fff8f6;
    border: 1.5px solid #f3d3ce;
    transition: background 0.2s, border 0.2s;
    font-weight: 500;
    box-shadow: 0 1px 4px rgba(191, 17, 9, 0.03);
}
.menu-options input[type="radio"],
.menu-options input[type="checkbox"] {
    accent-color: #BF1109;
    width: 20px;
    height: 20px;
}
.menu-options label:hover, .menu-options input:checked + label {
    background: #ffe5e0;
    border: 1.5px solid #BF1109;
}
.menu-summary {
    flex: 1 1 260px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(191, 17, 9, 0.08);
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    align-self: flex-start;
    position: sticky;
    top: 120px;
}
.menu-summary h4 {
    color: #BF1109;
    font-size: 1.13rem;
    margin-bottom: 0.7rem;
    font-weight: 700;
}
#selection-summary {
    list-style: none;
    padding: 0;
    margin-bottom: 1.2rem;
}
#selection-summary li {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: space-between;
}
.menu-summary .btn-primary {
    width: 100%;
    font-size: 1.08rem;
    padding: 12px 0;
    border-radius: 8px;
    margin-top: 0.7rem;
}
@media (max-width: 900px) {
    .food-menu-form {
        flex-direction: column;
        gap: 1.5rem;
    }
    .menu-summary {
        margin-top: 0;
        align-self: stretch;
        position: static;
    }
}
@media (max-width: 600px) {
    .custom-food-menu {
        padding: 1.2rem 0.5rem;
    }
    .menu-category {
        padding: 0.8rem 0.7rem;
    }
    .menu-summary {
        padding: 0.8rem 0.7rem;
    }
    .custom-food-menu h2 {
        font-size: 1.3rem;
    }
}

.styled-select {
  border: 1.5px solid #c9c9c9;
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  color: #222;
  padding: 0.75rem 1rem;
  margin-top: 0.5rem;
  transition: border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.styled-select:focus {
  border-color: #eab308;
  outline: none;
}
.styled-select option, .styled-select optgroup {
  background: #fff;
  color: #222;
  font-size: 1rem;
}

.custom-dropdown {
  position: relative;
  width: calc(4 * 100px + 3 * 1rem);
  max-width: 100%;
  min-width: 320px;
  margin-top: 0.5rem;
  box-sizing: border-box;
  text-align: left;
}
.dropdown-toggle {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.dropdown-toggle:focus {
  border-color: #eab308;
  outline: none;
}
.dropdown-list {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1.5px solid #c9c9c9;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 10;
  max-height: 320px;
  overflow-y: auto;
  display: none;
}
.dropdown-list.open {
  display: block;
}
.dropdown-optgroup {
  font-weight: 600;
  color: #BF1109;
  padding: 0.5rem 1rem 0.25rem 1rem;
  background: #fff;
}
.dropdown-option {
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: #222;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.dropdown-option:hover, .dropdown-option.active {
  background: #BF1109;
  color: #fff;
}
@media (max-width: 600px) {
  .custom-dropdown {
    width: 100%;
    min-width: 0;
  }
}

.drink-select-container .custom-dropdown {
  position: relative;
  width: calc(4 * 100px + 3 * 1rem);
  max-width: 100%;
  min-width: 320px;
  margin-top: 0.5rem;
  box-sizing: border-box;
  text-align: left;
}
.drink-select-container .dropdown-toggle {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #c9c9c9;
  border-radius: 6px;
  background: #fff;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.drink-select-container .dropdown-toggle:focus {
  border-color: #eab308;
  outline: none;
}
.drink-select-container .dropdown-list {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1.5px solid #c9c9c9;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  z-index: 10;
  max-height: 320px;
  overflow-y: auto;
  display: none;
}
.drink-select-container .dropdown-list.open {
  display: block;
}
.drink-select-container .dropdown-optgroup {
  font-weight: 600;
  color: #BF1109;
  padding: 0.5rem 1rem 0.25rem 1rem;
  background: #fff;
}
.drink-select-container .dropdown-option {
  padding: 0.65rem 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: #222;
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.drink-select-container .dropdown-option:hover, .drink-select-container .dropdown-option.active {
  background: #BF1109;
  color: #fff;
}
@media (max-width: 600px) {
  .drink-select-container .custom-dropdown {
    width: 100%;
    min-width: 0;
  }
}
