* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #007bff;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-actions button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.nav-actions button:hover {
    color: #007bff;
}

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

.menu-toggle {
    display: none;
}

/* Language Toggle Button */
.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* @tweakable language toggle button colors */
    border-color: #007bff;
    color: #007bff;
}

.lang-btn:hover {
    background: #007bff;
    color: white;
    /* @tweakable language toggle hover effects */
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.lang-text {
    font-size: 0.9rem;
    font-weight: 600;
    /* @tweakable language text styling */
    letter-spacing: 0.5px;
}

/* Language Transition Effects */
[data-en], [data-bn] {
    transition: opacity 0.3s ease;
    /* @tweakable language transition duration */
    transition-duration: 0.4s;
}

.lang-switching {
    opacity: 0.5;
    /* @tweakable language switching opacity */
    opacity: 0.3;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 0 2rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    flex: 1;
    padding: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.cta-button {
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
}

/* Banner Slider Styles */
.banner-slider {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.slides {
    position: relative;
    width: 100%;
    height: 400px;
    /* @tweakable banner slider height */
    height: 420px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    /* @tweakable banner slider transition duration */
    transition-duration: 0.6s;
}

.slide.active {
    opacity: 1;
}

.slide .hero-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    max-width: none;
    transition: none;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    /* @tweakable banner slider nav button size */
    width: 45px;
    height: 45px;
    /* @tweakable banner slider nav button background */
    background: rgba(255, 255, 255, 0.8);
    /* @tweakable banner slider nav button font size */
    font-size: 20px;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.1);
    /* @tweakable banner slider nav button hover scale */
    transform: scale(1.15);
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    /* @tweakable banner slider indicator spacing */
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    /* @tweakable banner slider indicator size */
    width: 14px;
    height: 14px;
    /* @tweakable banner slider indicator background */
    background: rgba(255, 255, 255, 0.6);
}

.indicator.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.2);
    /* @tweakable banner slider active indicator scale */
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-banner {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    /* @tweakable hero banner border radius */
    border-radius: 15px;
    /* @tweakable hero banner shadow intensity */
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    /* @tweakable hero banner max width */
    max-width: 550px;
    /* @tweakable hero banner opacity */
    opacity: 1;
    /* @tweakable hero banner transition effects */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-banner:hover {
    /* @tweakable hero banner hover scale */
    transform: scale(1.02);
    /* @tweakable hero banner hover opacity */
    opacity: 0.95;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: #f8f9fa;
}

.categories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
    /* @tweakable category image border radius */
    border-radius: 12px;
    /* @tweakable category image hover effect */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.category-card:hover .category-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    color: #333;
}

/* New Arrivals Section */
.new-arrivals {
    padding: 5rem 0;
    background: #fff;
    /* @tweakable new arrivals section background */
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.new-arrivals h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    /* @tweakable new arrivals title styling */
    font-weight: 700;
    position: relative;
}

.new-arrivals h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    /* @tweakable new arrivals title underline */
    background: linear-gradient(90deg, #007bff, #28a745);
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    /* @tweakable new arrivals grid gap */
    gap: 2.5rem;
}

.new-arrival-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    /* @tweakable new arrival card styling */
    border: 1px solid #f0f0f0;
}

.new-arrival-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    /* @tweakable new arrival card hover effect */
    transform: translateY(-10px);
}

.new-arrival-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4757;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    /* @tweakable new arrival badge styling */
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
    animation: pulse 2s infinite;
}

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

.new-arrival-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* @tweakable new arrival image height */
    height: 320px;
}

.new-arrival-card:hover .new-arrival-image {
    transform: scale(1.1);
}

.new-arrival-info {
    padding: 1.5rem;
}

.new-arrival-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #333;
    font-weight: 600;
    /* @tweakable new arrival product title */
    font-size: 1.25rem;
}

.new-arrival-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1rem;
    /* @tweakable new arrival price styling */
    color: #28a745;
    font-size: 1.5rem;
}

.view-all-container {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* @tweakable view all button styling */
    background: linear-gradient(45deg, #007bff, #0056b3);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.view-all-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    /* @tweakable view all button hover effect */
    transform: translateY(-3px);
}

/* Special Offer Section */
.special-offer {
    padding: 5rem 0;
    background: #fff;
    /* @tweakable special offer section background gradient */
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    /* @tweakable special offer section border */
    border-top: 3px solid #ff4757;
}

.special-offer h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    /* @tweakable special offer title styling */
    font-weight: 700;
    position: relative;
    /* @tweakable special offer title color */
    color: #ff4757;
}

.special-offer h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    /* @tweakable special offer title underline */
    background: linear-gradient(90deg, #ff4757, #ff6b7a);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    /* @tweakable special offer grid gap */
    gap: 2.5rem;
}

.offer-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
    /* @tweakable special offer card styling */
    border: 2px solid #ff4757;
    transform: scale(1);
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 71, 87, 0.2);
    /* @tweakable special offer card hover effect */
    transform: translateY(-12px) scale(1.03);
}

.offer-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff4757;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 10;
    /* @tweakable special offer badge styling */
    background: linear-gradient(45deg, #ff4757, #ff2e43);
    animation: offerPulse 2s infinite;
    /* @tweakable special offer badge shadow */
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

@keyframes offerPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.offer-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* @tweakable special offer image height */
    height: 370px;
    /* @tweakable special offer image filter */
    filter: brightness(1.05);
}

.offer-card:hover .offer-image {
    transform: scale(1.1);
    /* @tweakable special offer image hover filter */
    filter: brightness(1.1);
}

.offer-info {
    padding: 1.5rem;
    /* @tweakable special offer info background */
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.offer-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
    /* @tweakable special offer product title */
    font-size: 1.35rem;
    text-align: center;
}

.offer-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    /* @tweakable special offer pricing layout */
    flex-direction: column;
    gap: 0.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    /* @tweakable original price styling */
    font-weight: 500;
}

.offer-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff4757;
    /* @tweakable special offer price styling */
    font-size: 1.9rem;
    text-shadow: 0 1px 2px rgba(255, 71, 87, 0.2);
}

.offer-btn {
    background: #ff4757;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    /* @tweakable special offer button styling */
    background: linear-gradient(45deg, #ff4757, #ff2e43);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-btn:hover {
    background: #ff2e43;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    /* @tweakable special offer button hover effect */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

/* Product Badge for regular products */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4757;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    /* @tweakable product badge styling */
    background: linear-gradient(45deg, #ff4757, #ff6b7a);
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

/* Products Section */
.products {
    padding: 5rem 0;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

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

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    /* @tweakable product image aspect ratio */
    aspect-ratio: 1/1;
    /* @tweakable product image hover effect */
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 1rem;
}

.add-to-cart {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    width: 100%;
}

.add-to-cart:hover {
    background: #0056b3;
}

/* Modal Styles */
.cart-modal,
.admin-modal,
.product-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

.cart-content,
.admin-content,
.form-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.admin-content {
    max-width: 1000px;
    width: 95%;
}

.cart-header,
.admin-header,
.form-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart,
.close-admin,
.close-form {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.cart-items {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    /* @tweakable cart item image size */
    width: 90px;
    height: 90px;
    /* @tweakable cart item image border radius */
    border-radius: 8px;
}

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

.cart-item-info h4 {
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: #007bff;
    font-weight: 600;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

/* Admin Panel Styles */
.admin-tabs {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.admin-tab {
    background: none;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.admin-tab.active {
    border-bottom-color: #007bff;
    color: #007bff;
}

.admin-body {
    padding: 2rem;
}

.admin-panel {
    display: none;
}

.admin-panel.active {
    display: block;
}

.admin-actions {
    margin-bottom: 2rem;
}

.add-product-btn,
.add-category-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.admin-table {
    overflow-x: auto;
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.edit-btn,
.delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin: 0 0.2rem;
    border-radius: 3px;
}

.edit-btn {
    color: #007bff;
}

.edit-btn:hover {
    background: #e3f2fd;
}

.delete-btn {
    color: #dc3545;
}

.delete-btn:hover {
    background: #ffebee;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

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

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cancel-btn,
.save-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.cancel-btn {
    background: #6c757d;
    color: white;
}

.save-btn {
    background: #28a745;
    color: white;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #fff;
}

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

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

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

.footer-section a:hover {
    color: #007bff;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #555;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .hero-banner {
        max-width: 350px;
    }
    
    .category-image {
        height: 150px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-filters {
        flex-wrap: wrap;
    }
    
    .admin-content {
        width: 98%;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
    }
    
    .admin-tab {
        padding: 0.8rem 1rem;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        /* @tweakable mobile language button size */
        padding: 0.3rem 0.6rem;
    }
    
    .lang-text {
        font-size: 0.8rem;
        /* @tweakable mobile language text size */
        font-size: 0.75rem;
    }
    
    .banner-slider {
        max-width: 350px;
    }
    
    .slides {
        height: 300px;
        /* @tweakable mobile banner slider height */
        height: 320px;
    }
    
    .new-arrivals-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        /* @tweakable mobile new arrivals grid gap */
        gap: 1.8rem;
    }
    
    .new-arrival-image {
        height: 250px;
        /* @tweakable mobile new arrival image height */
        height: 260px;
    }
    
    .offer-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        /* @tweakable mobile special offer grid gap */
        gap: 1.8rem;
    }
    
    .offer-image {
        height: 280px;
        /* @tweakable mobile special offer image height */
        height: 300px;
    }
    
    .offer-badge {
        top: 10px;
        left: 10px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        /* @tweakable mobile special offer badge */
        font-size: 0.75rem;
    }
    
    .offer-pricing {
        /* @tweakable mobile special offer pricing layout */
        flex-direction: row;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .hero-banner {
        max-width: 280px;
    }
    
    .category-image {
        height: 120px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .new-arrivals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .new-arrival-image {
        height: 220px;
        /* @tweakable small mobile new arrival image height */
        height: 230px;
    }
    
    .view-all-btn {
        padding: 0.9rem 2.2rem;
        font-size: 1rem;
        /* @tweakable mobile view all button */
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .offer-image {
        height: 250px;
        /* @tweakable small mobile special offer image height */
        height: 270px;
    }
    
    .offer-info h3 {
        font-size: 1.2rem;
        /* @tweakable small mobile special offer title */
        font-size: 1.15rem;
    }
    
    .offer-price {
        font-size: 1.6rem;
        /* @tweakable small mobile special offer price */
        font-size: 1.5rem;
    }
    
    .offer-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
        /* @tweakable small mobile special offer button */
        font-size: 0.95rem;
    }
}