/* Modern Pizza Delivery Design - Canadian Style */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Canadian-inspired color palette */
    --primary-color: #DC143C; /* Canadian red */
    --secondary-color: #FF6B35; /* Warm orange */
    --accent-color: #F7B801; /* Golden yellow */
    --dark-color: #1A1A1A;
    --light-color: #FFFFFF;
    --text-color: #2C2C2C;
    --border-color: #E8E8E8;
    --success-color: #28A745;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%);
    --gradient-hero: linear-gradient(135deg, rgba(220, 20, 60, 0.95) 0%, rgba(255, 107, 53, 0.95) 100%);
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #F0F8FF 100%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(220, 20, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 184, 1, 0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(220, 20, 60, 0.02) 50px,
            rgba(220, 20, 60, 0.02) 51px
        );
    z-index: 0;
    pointer-events: none;
    animation: backgroundMove 20s ease-in-out infinite;
}

@keyframes backgroundMove {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-20px, -20px);
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23DC143C' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

/* Ensure content is above background layers */
.container,
header,
section,
footer {
    position: relative;
    z-index: 1;
}

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

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-accept:hover {
    background: #B8122E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.4);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo h1 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    animation: fadeInLeft 0.6s ease-out;
}

.logo-domain {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin: -5px 0 0 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.cart-link {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.cart-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cart-link:hover::before {
    width: 300px;
    height: 300px;
}

.cart-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.5) 0%, transparent 50%);
    color: var(--dark-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image-section {
    animation: fadeInLeft 1s ease-out;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-content {
    animation: fadeInRight 1s ease-out;
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 1;
    font-weight: 400;
    line-height: 1.8;
    color: #333333;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-cta .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.hero-cta .btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

.hero-cta .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.2);
}

.hero-cta .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

.hero-note {
    font-size: 1rem;
    opacity: 1;
    font-weight: 400;
    color: #555555;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 80px 0;
    animation: fadeIn 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--dark-color);
    font-weight: 700;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.category-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    object-fit: cover;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 600;
}

.category-popular {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    font-size: 0.95rem;
    color: #666;
}

/* Top Selling Items */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.item-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.item-image {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    object-fit: cover;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.item-card:hover .item-image img {
    transform: scale(1.05);
}

.item-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.item-description,
.item-options,
.item-features,
.item-special,
.item-time,
.item-benefits {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Deals Section */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.deal-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.deal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.deal-card:hover::before {
    transform: scaleX(1);
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.deal-card.featured {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(135deg, #fff 0%, #fff5f0 100%);
}

.deal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    animation: pulse 2s ease-in-out infinite;
    z-index: 10;
}

.deal-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    object-fit: cover;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.deal-card:hover .deal-image img {
    transform: scale(1.05);
}

.deal-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 600;
}

.deal-description,
.deal-audience,
.deal-savings,
.deal-availability {
    margin-bottom: 15px;
    line-height: 1.7;
}

.deal-savings {
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Brand Section */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.about-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.about-section p {
    line-height: 1.8;
    color: #555;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.advantage-card:hover::after {
    transform: scaleX(1);
}

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

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.advantage-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.3rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 600;
}

.footer-domain {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #999;
}

/* Menu Page Styles */
.page-header {
    background: var(--gradient-hero);
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Filters */
.filters {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 40px 0;
    box-shadow: var(--shadow);
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
    margin-bottom: 40px;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filters-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
}

.filter-select {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

/* Menu Grid */
.menu-section {
    margin-bottom: 80px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.menu-item:hover::before {
    transform: scaleX(1);
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    object-fit: cover;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.item-composition,
.item-sizes,
.item-options,
.item-taste,
.item-benefits,
.item-serves,
.item-savings,
.item-customization,
.item-availability,
.item-price {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Product Page */
.product-main {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 60px 0;
    margin-bottom: 40px;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.product-image-section {
    position: sticky;
    top: 100px;
}

.product-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: white;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-header {
    animation: fadeInUp 0.8s ease-out;
}

.product-header h1 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.8rem;
    font-weight: 700;
}

.product-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.product-info {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.product-pricing {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.product-price span {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.product-options {
    background: #fafafa;
    padding: 60px 0;
}

.options-container {
    max-width: 900px;
    margin: 0 auto;
}

.option-group {
    margin-bottom: 30px;
}

.option-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.option-select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.option-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.toppings-list,
.special-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.topping-option,
.special-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.topping-option:hover,
.special-option:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.price-display {
    background: var(--gradient-primary);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: var(--shadow-lg);
}

.current-price {
    font-size: 2.2rem;
    font-weight: 800;
}

/* Nutrition Section */
.product-nutrition {
    background: #fafafa;
    padding: 60px 0;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.nutrition-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.nutrition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.nutrition-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.nutrition-table {
    margin-top: 20px;
}

.nutrition-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.allergen-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Origin Section */
.product-origin {
    background: white;
    padding: 60px 0;
}

.origin-content {
    max-width: 900px;
    margin: 0 auto;
}

.origin-section {
    margin-bottom: 30px;
    padding: 35px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.origin-section:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.origin-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Similar Items */
.similar-items {
    background: #fafafa;
    padding: 60px 0;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.similar-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.similar-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.similar-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Cart Page */
.cart-section {
    padding: 60px 0;
}

.cart-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 40px;
}

.cart-items {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.empty-cart {
    text-align: center;
    padding: 60px 40px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 2px solid var(--border-color);
    gap: 30px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: #fafafa;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 10px;
}

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

.cart-item-info h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 25px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fafafa;
    padding: 8px 15px;
    border-radius: 50px;
}

.quantity-controls button {
    width: 35px;
    height: 35px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.quantity-controls button:hover {
    background: #B8122E;
    transform: scale(1.1);
}

.cart-item-price {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    min-width: 100px;
    text-align: right;
}

.btn-remove {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.cart-summary {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.cart-summary h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    border-top: 3px solid var(--primary-color);
    margin-top: 15px;
    padding-top: 20px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.tax-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.promo-section,
.order-type-section {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.promo-section h3,
.order-type-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.promo-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.promo-input {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

.promo-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.promo-message {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.promo-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.promo-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.order-type-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-type-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.order-type-option:hover {
    border-color: var(--primary-color);
    background: #fff5f0;
    transform: translateX(5px);
}

.option-content strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
    font-weight: 600;
}

.cart-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cart-actions .btn-secondary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    font-weight: 600;
}

.cart-actions .btn-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.4);
}

/* Contact Page - Modern Styling */
.contact-hero {
    background: var(--gradient-hero);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards Section */
.contact-info-section {
    padding: 80px 0;
    background: transparent;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.contact-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-card-modern:hover::before {
    transform: scaleX(1);
}

.contact-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.contact-icon-wrapper {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.contact-card-modern h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 8px;
    color: #555;
}

.contact-phone a,
.contact-email a {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Contact Hours */
.contact-hours {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--dark-color);
}

.hours-time {
    color: var(--primary-color);
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: transparent;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-form {
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    color: #555;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.6;
    animation: fadeInUp 0.4s ease-out;
    transition: all 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 2px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 2px solid #dc3545;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.2);
}

.form-message strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Store Page Styling */
.store-header {
    background: var(--gradient-hero);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.store-intro {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.address-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hours-table {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.hours-table:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.8s ease-out;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 30px;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.8rem;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
}

.order-info {
    background: #fafafa;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 35px;
}

.order-detail {
    margin-bottom: 20px;
}

.order-detail:last-child {
    margin-bottom: 0;
}

.order-detail h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.order-detail p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Scroll animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Store Page Styles */
.store-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.store-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.store-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.store-map {
    padding: 60px 0;
    background: #fafafa;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.store-info {
    padding: 60px 0;
}

.store-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

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

.info-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.info-card p {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark-color);
}

.hours-item .time {
    color: var(--primary-color);
    font-weight: 600;
}

.store-benefits {
    padding: 60px 0;
    background: #fafafa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Order Form Styles */
.order-form-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.order-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.order-form {
    margin-top: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.order-message {
    margin-top: 20px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
}

.order-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.order-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Policies Page Styles */
.policies-section {
    padding: 60px 0;
    background: #fafafa;
}

.policies-nav {
    max-width: 1200px;
    margin: 0 auto 50px;
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.policies-nav h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.policies-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.policies-menu li a {
    display: block;
    padding: 12px 25px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.policies-menu li a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto 60px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.policy-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.policy-content h3 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 15px;
    color: #555;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: #555;
}

.policy-content li {
    margin-bottom: 10px;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: var(--secondary-color);
}
