/* Theme Variables */
:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --background-color: #ffffff;
    --background-alt: #f8fdf8;
    --text-color: #1a1a1a;
    --text-muted: #4a4a4a;
    --card-bg: #ffffff;
    --card-shadow: rgba(0,0,0,0.1);
    --input-border: #e0e0e0;
    --header-bg: #ffffff;
    --footer-bg: #2c5f2d;
}

/* Dark Theme */
body.dark-theme {
    --primary-color: #7dd87f;
    --secondary-color: #2d5a2f;
    --background-color: #0a0a0a;
    --background-alt: #111111;
    --text-color: #f5f5f5;
    --text-muted: #b8b8b8;
    --card-bg: #1a1a1a;
    --card-shadow: rgba(125, 216, 127, 0.1);
    --input-border: #333333;
    --header-bg: #0a0a0a;
    --footer-bg: #000000;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--header-bg);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--card-shadow);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

/* Enhanced Logo Section with Imperial Script Font */
.logo {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.logo-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

/* Imperial Script Font for BalahuMill */
.logo-text h1 {
    color: var(--primary-color);
    font-size: 36px;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
    transition: color 0.3s ease;
    user-select: none;
    /* Imperial Script-style elegant font */
    font-family: 'Dancing Script', cursive;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.logo-text .tagline {
    font-size: 13px;
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 500;
    margin-top: 2px;
    transition: color 0.3s ease;
    opacity: 0.9;
    user-select: none;
    /* Keep tagline in regular font */
    font-family: 'Arial', sans-serif;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav a:hover {
    color: var(--primary-color);
    background: var(--background-alt);
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle-btn {
    background: var(--background-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.theme-toggle-btn:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-clear {
    background: #ff4757;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.btn-clear:hover {
    background: #ff3742;
}

/* Hero Section */
.hero {
    background: var(--background-alt);
    padding: 130px 0 80px;
    transition: all 0.3s ease;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero h2 {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features i {
    color: var(--primary-color);
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 10px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.features h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--background-alt);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--card-shadow);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--background-alt);
    transition: all 0.3s ease;
}

.products h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.product-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px var(--card-shadow);
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--card-shadow);
}

.product-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

.product-card img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    margin-bottom: 15px;
}

.product-card h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
}

.btn-order {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-order:hover {
    background: var(--secondary-color);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about h3 {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.mission {
    background: var(--background-alt);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.mission h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
    color: var(--text-muted);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--background-alt);
    transition: all 0.3s ease;
}

.benefits h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--card-shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--card-shadow);
}

.benefit-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Order Section */
.order {
    padding: 80px 0;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.order h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

/* Shopping Cart */
.shopping-cart {
    background: var(--background-alt);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shopping-cart h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-count {
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.cart-items {
    min-height: 100px;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    margin-bottom: 10px;
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 2px 8px var(--card-shadow);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.cart-item-details {
    font-size: 14px;
    color: var(--text-muted);
}

.cart-item-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--input-border);
    border-radius: 5px;
}

.quantity-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
}

.quantity-btn:hover {
    background: var(--secondary-color);
}

.quantity-display {
    padding: 5px 10px;
    background: var(--card-bg);
    min-width: 40px;
    text-align: center;
}

.remove-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

.remove-btn:hover {
    background: #ff3742;
}

.cart-total {
    border-top: 2px solid var(--primary-color);
    padding-top: 15px;
    margin-top: 15px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
}

.total-row .label {
    font-weight: bold;
    color: var(--text-color);
}

.total-row .value {
    color: var(--text-muted);
}

.final-total {
    border-top: 2px solid var(--primary-color);
    margin-top: 10px;
    padding-top: 10px;
    font-size: 18px;
    font-weight: bold;
}

.final-total .label,
.final-total .value {
    color: var(--primary-color);
}

/* Customer Details */
.customer-details-section {
    background: var(--background-alt);
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.customer-details-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--input-border);
    border-radius: 5px;
    font-size: 16px;
    background: var(--card-bg);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.payment-method {
    margin: 20px 0;
}

.payment-method h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-alt);
    transition: all 0.3s ease;
}

.contact h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--card-shadow);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 3px;
}

.contact-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--card-shadow);
    border: 2px solid var(--primary-color);
}

.contact-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
}

.contact-card-header h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-card-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.contact-methods {
    margin-bottom: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--background-alt);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: var(--primary-color);
    color: white;
}

.method-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    color: white;
    font-size: 16px;
}

.method-info h5 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.method-info p {
    font-size: 12px;
    color: var(--text-muted);
}

.contact-method:hover .method-info h5,
.contact-method:hover .method-info p {
    color: white;
}

.business-hours {
    text-align: center;
    padding: 20px;
    background: var(--background-alt);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
}

.business-hours h5 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.business-hours p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: white;
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo h3 {
    margin: 0;
    color: white;
    /* Use Imperial Script font in footer logo too */
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
}

.footer-logo p {
    margin: 0;
    font-size: 14px;
    color: var(--secondary-color);
    font-style: italic;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d0d0d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--secondary-color);
    color: #d0d0d0;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: var(--card-bg);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 22px;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 30px;
}

/* Receipt */
.receipt {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

.receipt-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.receipt-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.receipt-company h3 {
    color: var(--primary-color);
    margin: 0 0 5px 0;
    font-size: 20px;
    /* Use Imperial Script in receipt too */
    font-family: 'Dancing Script', cursive;
}

.receipt-company p {
    margin: 2px 0;
    font-size: 11px;
    color: var(--text-muted);
}

.receipt-divider {
    border-top: 2px dashed var(--primary-color);
    margin: 20px 0;
}

.receipt-details h4,
.customer-details h4,
.order-items h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.receipt-info,
.customer-info {
    margin-bottom: 15px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 5px 0;
}

.info-row .label {
    font-weight: bold;
    color: var(--text-color);
}

.info-row .value {
    color: var(--text-muted);
}

.items-list {
    background: var(--background-alt);
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
}

.item-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted var(--input-border);
}

.item-row:last-child {
    border-bottom: none;
    font-weight: bold;
    padding-top: 15px;
}

.order-total {
    background: var(--background-alt);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.receipt-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--input-border);
}

.receipt-footer p {
    margin: 5px 0;
    font-size: 11px;
    color: var(--text-muted);
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 3000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.notification.success {
    background: #27ae60;
}

.notification.error {
    background: #e74c3c;
}

.notification.show {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .nav {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    .logo-text h1 {
        font-size: 28px;
    }
    
    .logo-text .tagline {
        font-size: 11px;
    }
    
    .theme-toggle-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero {
        padding: 110px 0 60px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .cart-item-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text h1 {
        font-size: 24px;
    }
    
    .logo-text .tagline {
        font-size: 10px;
    }
    
    .theme-toggle-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .products-grid,
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .receipt {
        padding: 20px;
    }
    
    .receipt-header {
        flex-direction: column;
        text-align: center;
    }
    
    .info-row {
        flex-direction: column;
        gap: 5px;
    }
}
