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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

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

/* Cart Notification */
.cart-notification {
    position: fixed;
    top: -100px;
    right: 20px;
    background: #4ecdc4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: top 0.3s ease;
}

.cart-notification.show {
    top: 100px;
}

/* Header and Navigation */
header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 4px solid #ff6b6b;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.logo h1 {
    font-size: 1.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover, .nav-menu li a.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1920&h=600&fit=crop') center/cover;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-bottom: 5px solid #ff6b6b;
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 800px;
    padding: 2rem 1rem;
    background: rgba(0,0,0,0.3);
    border-radius: 15px;
    border: 3px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
}

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

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.cta-button {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: clamp(1rem, 2vw, 1.2rem);
    border-radius: 50px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.cta-button:hover {
    background: white;
    color: #ff6b6b;
    border: 3px solid #ff6b6b;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.6);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

/* Offers Banner */
.offers-banner {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 2rem 1rem;
    margin: 2rem auto;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.offers-slider {
    position: relative;
    min-height: 60px;
}

.offer-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.offer-item.active {
    display: block;
}

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

.slider-dots {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background: white;
    transform: scale(1.3);
}

/* Menu Section */
.menu-section, .menu-page {
    padding: 2rem 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
    color: #667eea;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.menu-controls {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.search-input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 10px rgba(102,126,234,0.3);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn:hover, .filter-btn.active {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border: 3px solid #667eea;
}

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

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

.menu-item h3 {
    padding: 1rem;
    color: #333;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.menu-item p {
    padding: 0 1rem;
    color: #666;
}

.menu-item .price {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    color: #ff6b6b;
    font-weight: bold;
    padding: 1rem;
}

.menu-item .category {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: #667eea;
    color: white;
    border-radius: 15px;
    font-size: 0.85rem;
    margin: 0 1rem;
}

.add-to-cart {
    width: 100%;
    padding: 1rem;
    background: #4ecdc4;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    font-weight: 600;
}

.add-to-cart:hover {
    background: #45b7aa;
    border-top: 3px solid #667eea;
}

.view-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
}

.view-more-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.6);
}

/* Video Section */
.video-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 20px;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-section .section-title {
    color: white;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 4px solid white;
}

.video-container video {
    width: 100%;
    display: block;
}

.video-controls, .audio-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-control-btn, .audio-control-btn {
    background: white;
    color: #667eea;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-control-btn:hover, .audio-control-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

/* Audio Section */
.audio-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    text-align: center;
    border: 5px solid #ffe66d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.audio-section .section-title {
    color: white;
}

.audio-container {
    margin: 2rem 0 1rem;
}

.audio-container audio {
    width: 100%;
    max-width: 600px;
}

/* Reviews Section */
.reviews-section {
    padding: 2rem 0;
}

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

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.review-card:hover, .review-card.highlighted {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: #ff6b6b;
}

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

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1rem;
    margin: 2rem 0;
    text-align: center;
    color: white;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 1.5rem auto;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
}

.subscribe-message {
    margin-top: 1rem;
    font-weight: 600;
}

/* Pricing Table */
.pricing-section {
    padding: 2rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 4px solid #667eea;
    margin-bottom: 1rem;
}

.pricing-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pricing-table th {
    padding: 1rem;
    text-align: left;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    border-right: 2px solid rgba(255,255,255,0.2);
}

.pricing-table th:last-child {
    border-right: none;
}

.pricing-table td {
    padding: 1rem;
    border-bottom: 2px solid #f0f0f0;
    border-right: 2px solid #f0f0f0;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.pricing-table td:last-child {
    border-right: none;
}

.pricing-table tbody tr {
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-table tbody tr:hover, .pricing-table tbody tr.selected {
    background-color: #e3f2fd;
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.plan-message {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 2rem 0;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-box:hover, .feature-box.expanded {
    border-color: #667eea;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-box h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    border-bottom: 3px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

.feature-list {
    padding-left: 1.5rem;
    color: #666;
}

.feature-list li {
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    padding: 0.3rem;
    border-radius: 5px;
}

.feature-list li:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
    color: #667eea;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 1rem;
    margin: 2rem 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Order Form */
.order-form-section {
    padding: 2rem 0;
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid #667eea;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background-color: white;
    box-shadow: 0 0 10px rgba(102,126,234,0.3);
}

.radio-group, .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.radio-group input,
.checkbox-group input {
    width: auto;
    margin-right: 0.3rem;
    cursor: pointer;
}

.radio-group label,
.checkbox-group label {
    font-weight: normal;
    cursor: pointer;
    transition: color 0.3s ease;
}

.radio-group label:hover,
.checkbox-group label:hover {
    color: #667eea;
}

.order-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 2px solid #e0e0e0;
}

.order-summary h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.order-summary p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.order-summary .total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e0e0e0;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.submit-button, .reset-button {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 3px solid transparent;
}

.submit-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(102,126,234,0.4);
}

.reset-button {
    background: #f0f0f0;
    color: #333;
    border: 3px solid #e0e0e0;
}

.reset-button:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-3px);
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

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

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

/* Cart Page */
.cart-page {
    padding: 2rem 0;
    min-height: 60vh;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.cart-items {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    align-items: center;
}

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

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #ff6b6b;
    font-size: 1.3rem;
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: #667eea;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #5568d3;
    transform: scale(1.1);
}

.remove-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.cart-summary {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.summary-item.total {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
    padding-top: 1rem;
}

.summary-divider {
    border-top: 2px solid #e0e0e0;
    margin: 1rem 0;
}

.checkout-btn, .continue-shopping-btn, .clear-cart-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkout-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102,126,234,0.4);
}

.continue-shopping-btn {
    background: #4ecdc4;
    color: white;
}

.continue-shopping-btn:hover {
    background: #45b7aa;
}

.clear-cart-btn {
    background: #f0f0f0;
    color: #333;
}

.clear-cart-btn:hover {
    background: #ff6b6b;
    color: white;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart h2 {
    font-size: 2rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 1rem 1rem;
    margin-top: 2rem;
    border-top: 5px solid #ff6b6b;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ffe66d;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.social-btn {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 2px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.back-to-top {
    padding: 0.5rem 1.5rem;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: #ff5252;
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0,0,0,0.2);
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .hero {
        min-height: 300px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-section {
        overflow-x: auto;
    }
    
    .pricing-table {
        min-width: 600px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
}

@media (min-width: 769px) {
    .cart-container {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
}
