/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e74c3c;
    --secondary-color: #2c3e50;
    --accent-color: #f39c12;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --success: #27ae60;
    --border-radius: 12px;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    cursor: pointer;
}

.logo:hover {
    opacity: 0.8;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 0;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu .order-link {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-menu .order-link:hover {
    background: #c0392b;
    color: var(--white) !important;
}

.nav-menu .order-link.active {
    background: #c0392b;
    color: var(--white) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    margin: 20px 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary i {
    margin-right: 0.5rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* About Section */
.about-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.about-section h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.about-text ul {
    list-style: none;
    margin-top: 1rem;
}

.about-text li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Smoothies Section */
.smoothies-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 3rem 0;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Content Section */
.content-section {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    margin: 2rem 0;
}

.content-section h2 {
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* Franchise Grid */
.franchise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.franchise-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform 0.3s;
}

.franchise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.franchise-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

/* Blog Section */
.blog-section {
    margin: 3rem 0;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: block;
}

.blog-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.blog-details h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.blog-details p {
    margin-bottom: 1rem;
}

.blog-details ul {
    list-style: none;
    margin-left: 0;
    margin-top: 1rem;
}

.blog-details li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-details li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
    margin: 3rem 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.map-container {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.map-container h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section p a {
    display: inline;
    padding: 0;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        padding: 0.8rem;
        border-radius: var(--border-radius);
    }
    
    .nav-menu a:hover {
        background: var(--bg-light);
    }
    
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .smoothies-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .about-content {
        flex-direction: column;
    }
}


/* ===== ORDER PAGE STYLES ===== */

.order-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    overflow-x: hidden;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
    overflow-x: hidden;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    flex: 1;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: -1;
}

.progress-step:first-child::before {
    display: none;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    transition: all 0.3s;
}

.progress-step.active .step-circle {
    background: var(--primary-color);
    color: var(--white);
}

.progress-step.completed .step-circle {
    background: var(--success);
    color: var(--white);
}

.progress-step span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.progress-step.active span {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed span {
    color: var(--success);
    font-weight: 500;
}

/* Steps */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.step {
    display: none;
    animation: fadeIn 0.3s;
}

.step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.back-button {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--primary-color);
    cursor: pointer;
    font-weight: 600;
}

.back-button:hover {
    text-decoration: underline;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.category-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.category-image {
    width: 100%;
    height: 120px;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--text-light);
}

/* Subcategory Tabs */
.subcategory-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    overflow-x: auto;
    padding: 0 10px;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    background: #f8f9fa;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: bold;
}

.add-to-cart {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: #c0392b;
}

.product-card.in-cart {
    border: 2px solid var(--success);
}

.product-card.in-cart .add-to-cart {
    background: var(--success);
}

/* Extra Section */
.extra-section {
    margin: 3rem 0;
}

.extra-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Next Button */
.next-btn-wrapper {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 70%, rgba(255,255,255,0) 100%);
    padding: 20px 0 20px;
    margin-top: 2rem;
    z-index: 100;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.next-btn {
    display: block;
    margin: 0 auto;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    max-width: 400px;
}

.next-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.next-btn::after {
    content: ' →';
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.order-summary h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.item-quantity {
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-price {
    font-weight: bold;
    color: var(--primary-color);
}

.total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Form Section */
.form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.form-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.form-section input,
.form-section textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

.form-section input:focus,
.form-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Payment Section */
.payment-section {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.payment-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow);
}

.payment-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1.2rem;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-icon {
    font-size: 1.5rem;
}

/* Floating Cart */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.5);
    transition: all 0.3s;
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.5);
    }
    50% {
        box-shadow: 0 4px 25px rgba(231, 76, 60, 0.8);
    }
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.7);
    animation: none;
}

.cart-icon {
    font-size: 1.8rem;
    color: var(--white);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--white);
    color: var(--primary-color);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.3s;
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.cart-item-price {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cart-item-remove {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.3rem 0.8rem;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: bold;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

.cart-overlay.open {
    display: block;
}

/* Menu Page */
.menu-container {
    margin: 2rem 0;
}

.menu-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.menu-category h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-item {
    display: flex;
    gap: 1rem;
}

.menu-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.menu-item-info {
    flex: 1;
}

.menu-item-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.menu-item-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.menu-item-price {
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive for Order Page */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .order-container {
        padding: 10px;
        width: 100%;
        max-width: 100vw;
    }
    
    .progress-bar {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .progress-step {
        flex: 1;
        min-width: 0;
    }
    
    .progress-step span {
        font-size: 0.65rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        margin-bottom: 0;
        width: 100%;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .floating-cart {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.6);
    }
    
    .cart-icon {
        font-size: 1.6rem;
    }
    
    .cart-count {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
    
    .next-btn-wrapper {
        padding: 15px 10px;
        background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0.98) 80%, rgba(255,255,255,0) 100%);
        width: 100%;
        max-width: 100vw;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    
    .next-btn {
        width: calc(100% - 20px);
        margin: 0 10px;
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }
    
    .main-content {
        width: 100%;
        max-width: 100vw;
        padding: 0;
    }
    
    .step {
        width: 100%;
        max-width: 100vw;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .step h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
}


/* Blog Details */
.blog-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.blog-details h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.blog-details ul {
    list-style: none;
    margin-left: 0;
}

.blog-details li {
    padding: 0.3rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-details li:before {
    content: "• ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.blog-details p {
    margin: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
}


/* ===== HERO SECTION WITH IMAGE ===== */

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 60px 20px;
    border-radius: var(--border-radius);
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ===== GALLERY SECTION ===== */

.gallery-section {
    margin: 4rem 0;
}

.gallery-section h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* ===== PREMIUM GALLERY DESIGN ===== */

.premium-gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Masonry Gallery */
.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.masonry-item.large {
    grid-column: span 1;
    grid-row: span 1;
}

@media (min-width: 768px) {
    .masonry-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .masonry-item.large:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .masonry-item.large:nth-child(4) {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    .masonry-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(243, 156, 18, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;
}

.masonry-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: bounce 0.6s ease;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Premium Carousel */
.premium-carousel {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.premium-carousel h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.carousel-container.premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
}

.carousel-container.premium .carousel-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carousel-container.premium .carousel-slide img {
    max-height: 450px;
    border-radius: 12px;
}

.carousel-container.premium .carousel-controls {
    margin-top: 2rem;
    gap: 1.5rem;
}

.carousel-container.premium .carousel-btn {
    flex: 1;
    max-width: 200px;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.carousel-container.premium .carousel-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.carousel-container.premium .carousel-dots {
    margin-top: 1.5rem;
}

.carousel-container.premium .carousel-dot {
    width: 14px;
    height: 14px;
    transition: all 0.3s ease;
}

.carousel-container.premium .carousel-dot.active {
    width: 35px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.carousel-container.premium .carousel-counter {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .masonry-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .premium-carousel {
        padding: 1.5rem;
    }
    
    .carousel-container.premium {
        padding: 1rem;
    }
}

/* ===== SMOOTHIES SECTION ===== */

.smoothies-section {
    margin: 4rem 0;
}

.smoothies-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.smoothies-text {
    flex: 1;
    min-width: 300px;
}

.smoothies-text h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.smoothies-text p {
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.smoothies-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.smoothies-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.smoothies-gallery {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.smoothies-gallery h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.smoothies-gallery .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.smoothies-gallery .gallery-item img {
    height: 200px;
}

/* ===== SALAD AND DESSERT SECTIONS ===== */

.salad-image,
.dessert-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.salad-image img,
.dessert-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .smoothies-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .about-content {
        flex-direction: column;
    }
}


/* ===== SOCIAL LINKS ===== */

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-links a i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== LIGHTBOX ===== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: all 0.3s;
    z-index: 2001;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1rem;
}

/* ===== CAROUSEL/SLIDER ===== */

.carousel-container {
    position: relative;
    margin-top: 2rem;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.carousel-counter {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .lightbox-nav {
        padding: 0.8rem 1rem;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .carousel-slide img {
        max-height: 300px;
    }
}


/* ===== PREMIUM ABOUT SECTION ===== */

.premium-about {
    margin: 4rem 0;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.about-card h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    min-width: 30px;
}

.feature span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* ===== PREMIUM SECTIONS ===== */

.premium-section {
    margin: 4rem auto;
    padding: 3rem 2rem;
    max-width: 1200px;
}

.section-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.section-content.reverse {
    flex-direction: row-reverse;
}

.section-text {
    flex: 1;
    min-width: 300px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-text h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.section-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.section-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.section-image:hover img {
    transform: translateY(-10px);
}

/* Salad Section */
.salad-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 1200px;
}

/* Smoothie Section */
.smoothie-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 1200px;
}

.smoothie-section .section-badge {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.smoothie-section .section-text h2,
.smoothie-section .section-text p {
    color: var(--white);
}

.smoothie-section .section-text p {
    color: rgba(255,255,255,0.9);
}

.smoothie-gallery-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 1200px;
}

.smoothie-gallery-section h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* Dessert Section */
.dessert-section {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 1200px;
}

.dessert-section .section-badge {
    background: rgba(231, 76, 60, 0.3);
    color: var(--secondary-color);
}

/* ===== PREMIUM CTA ===== */

.premium-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
    color: var(--white);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 4rem auto;
    max-width: 1200px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
    background: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: #c0392b;
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .about-card {
        padding: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .section-content {
        gap: 2rem;
    }
    
    .section-content.reverse {
        flex-direction: column;
    }
    
    .section-text h2 {
        font-size: 1.8rem;
    }
    
    .premium-cta {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}


/* ===== GOOGLE REVIEWS SECTION ===== */

.google-reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 4rem 0;
    text-align: center;
}

.reviews-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.google-logo {
    font-size: 3rem;
    color: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-maps-logo {
    width: 80px;
    height: auto;
}

.rating-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    font-size: 1.5rem;
    color: #fbbc04;
}

.stars i {
    margin: 0 2px;
}

.rating-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.rating-label {
    font-size: 1rem;
    color: var(--text-light);
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.reviewer-info strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-stars {
    color: #fbbc04;
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 2rem 1rem;
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .google-logo {
        font-size: 2.5rem;
    }
    
    .google-maps-logo {
        width: 60px;
    }
}


/* PWA Installation Prompt */
.pwa-install-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.pwa-install-modal.show {
    opacity: 1;
}

.pwa-install-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.pwa-install-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.pwa-install-close:hover {
    color: #333;
}

.pwa-install-icon {
    text-align: center;
    margin-bottom: 20px;
}

.pwa-install-icon img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pwa-install-content h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 24px;
}

.pwa-install-content > p {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.pwa-install-steps {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.pwa-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.pwa-step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: var(--primary-color);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 12px;
}

.pwa-step p {
    margin: 0;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pwa-step svg {
    vertical-align: middle;
    color: var(--primary-color);
}

.pwa-install-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
    margin-bottom: 10px;
}

.pwa-install-button:hover {
    background: var(--secondary-color);
}

.pwa-install-dismiss {
    width: 100%;
    background: transparent;
    color: #666;
    border: none;
    padding: 12px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.pwa-install-dismiss:hover {
    background: #f0f0f0;
}

@media (max-width: 480px) {
    .pwa-install-content {
        padding: 25px 20px;
    }
    
    .pwa-install-content h3 {
        font-size: 20px;
    }
    
    .pwa-step p {
        font-size: 13px;
    }
}


/* Product Customization Modal */
.customization-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.customization-modal.show {
    opacity: 1;
}

.customization-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.customization-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
}

.customization-close:hover {
    background: rgba(0, 0, 0, 0.7);
}

.customization-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.customization-product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.customization-product-info h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.customization-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.customization-base-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.customization-body {
    padding: 20px;
}

.option-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.option-group:last-child {
    border-bottom: none;
}

.option-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.option-group-header h3 {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.option-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.option-badge.required {
    background: #ffe5e5;
    color: var(--primary-color);
}

.option-badge.optional {
    background: #e8f5e9;
    color: #4caf50;
}

.option-info {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-item {
    display: flex;
    align-items: center;
}

.option-item input[type="radio"],
.option-item input[type="checkbox"] {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.option-item label {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.option-item label:hover {
    background: #f8f9fa;
}

.option-item input:checked + label {
    background: #fff3e0;
}

.option-label {
    font-size: 14px;
    color: #333;
}

.option-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.customization-note {
    padding: 20px;
    border-top: 1px solid #eee;
}

.customization-note label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.customization-note textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.customization-note textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.customization-footer {
    padding: 20px;
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

.customization-total {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customization-total span:first-child {
    font-size: 13px;
    color: #666;
}

#customization-total-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.customization-footer .btn {
    padding: 12px 30px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .customization-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .customization-product-image {
        height: 150px;
    }
    
    .customization-product-info h2 {
        font-size: 18px;
    }
    
    .option-group-header h3 {
        font-size: 14px;
    }
    
    .option-item label {
        padding: 10px;
    }
    
    .option-label,
    .option-price {
        font-size: 13px;
    }
    
    #customization-total-price {
        font-size: 20px;
    }
}

/* SweetAlert z-index override - must be higher than customization modal */
.swal2-container {
    z-index: 10002 !important;
}

.swal2-popup {
    z-index: 10003 !important;
}

/* Cart Item Customizations */
.cart-item-customizations,
.order-item-customizations {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.customization-tag {
    background: #f0f0f0;
    color: #666;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    display: inline-block;
}

.cart-item-note,
.order-item-note {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 5px;
    padding: 5px;
    background: #fff9e6;
    border-radius: 4px;
    border-left: 3px solid #ffc107;
}
