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

:root {
    /* Warm, modern color palette */
    --primary: #FF6B6B;       /* Warm coral */
    --secondary: #4ECDC4;     /* Fresh mint */
    --background: #FFFBF7;    /* Warmer white */
    --background-alt: #FEF9EF; /* Warm cream */
    --text: #2D3436;          /* Softer charcoal */
    --text-light: #636E72;    /* Medium gray */
    --accent: #FFE66D;        /* Sunny yellow */
    
    /* Semantic colors */
    --success: #52C41A;
    --warning: #FAAD14;
    --error: #FF4757;
    --info: #4ECDC4;
    
    /* Neutral palette */
    --white: #ffffff;
    --neutral-50: #FAFAF9;
    --neutral-100: #F5F3F0;
    --neutral-200: #E8E6E3;
    --neutral-300: #D1CFC9;
    --neutral-400: #A8AAAC;
    --neutral-500: #74787C;
    
    /* Additional accent colors */
    --peach: #FFD3B6;
    --lavender: #C9B6E4;
    --mint: #A8E6CF;
    --coral-light: #FFAAA5;
    
    /* Shadows with warm tints */
    --shadow: rgba(255, 107, 107, 0.08);
    --shadow-md: rgba(255, 107, 107, 0.12);
    --shadow-lg: rgba(255, 107, 107, 0.16);
    --overlay: rgba(45, 52, 54, 0.4);
    
    /* Modern typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-secondary);
    color: var(--text);
    background: linear-gradient(180deg, var(--background) 0%, var(--background-alt) 100%);
    min-height: 100vh;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text);
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition-base);
}

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

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
    background: linear-gradient(135deg, var(--peach) 0%, var(--coral-light) 100%);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--coral-light) 100%);
    font-weight: 600;
    box-shadow: 0 4px 12px var(--shadow-md);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-name {
    font-weight: 500;
    color: var(--text);
    padding: 0.375rem 0.75rem;
    background: var(--neutral-100);
    border-radius: 20px;
    font-size: 0.875rem;
}

.cart-btn {
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--mint) 100%);
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    color: var(--white);
    border-radius: 12px;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px var(--shadow);
}

.cart-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px var(--shadow-md);
}

.cart-btn:active {
    transform: translateY(0) scale(0.98);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 12px;
    min-width: 22px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(255, 230, 109, 0.4);
    animation: bounce 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--peach) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--peach) 100%);
    color: var(--text);
    box-shadow: 0 4px 12px rgba(255, 230, 109, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 230, 109, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px var(--shadow);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--coral-light) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-md);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Filter Section */
.filter-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--neutral-50) 100%);
    border-bottom: 2px solid var(--neutral-100);
    box-shadow: 0 4px 12px var(--shadow);
}

.filter-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--secondary);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    background: var(--neutral-100);
    border: 2px solid transparent;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.filter-btn:hover {
    background: linear-gradient(135deg, var(--mint) 0%, var(--secondary) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--mint) 100%);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.3);
    animation: pulse 0.3s ease;
}

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

/* Products Grid */
.products {
    padding: 3rem 0;
    min-height: 400px;
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, var(--peach) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px var(--shadow-lg);
}

.product-card:hover::before {
    opacity: 0.05;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: var(--neutral-100);
    transition: transform var(--transition-slow);
}

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

.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
}

.product-price {
    font-size: 1.375rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary) 0%, var(--coral-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.product-description {
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.product-tag {
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, var(--lavender) 0%, var(--mint) 100%);
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--white);
    font-weight: 500;
    opacity: 0.9;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.add-to-cart {
    flex: 1;
    padding: 0.625rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--coral-light) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px var(--shadow);
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.add-to-cart:active {
    transform: translateY(0);
}

.view-in-app {
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--mint) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 8px rgba(78, 205, 196, 0.3);
}

.view-in-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(78, 205, 196, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--neutral-100);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--primary);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
}

.modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-image {
    width: 100%;
    border-radius: 8px;
}

.modal-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.modal-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.modal-actions {
    display: flex;
    gap: 1rem;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: linear-gradient(180deg, var(--white) 0%, var(--neutral-50) 100%);
    box-shadow: -4px 0 20px var(--shadow-lg);
    z-index: 1001;
    transition: right var(--transition-base);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--coral-light) 100%);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
}

.cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin: 0.5rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 2px 8px var(--shadow);
    transition: all var(--transition-base);
}

.cart-item:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px var(--shadow);
}

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

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
}

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

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 2px solid var(--secondary);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: 600;
    transition: all var(--transition-base);
}

.quantity-btn:hover {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.cart-item-remove {
    background: var(--error);
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 0.875rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    opacity: 0.8;
}

.cart-item-remove:hover {
    opacity: 1;
    transform: scale(1.1) rotate(90deg);
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-dark);
}

.cart-footer {
    padding: 1.5rem;
    background: var(--white);
    border-top: 2px solid var(--neutral-100);
    box-shadow: 0 -4px 12px var(--shadow);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--peach) 0%, var(--coral-light) 100%);
    border-radius: 12px;
    color: var(--text);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    backdrop-filter: blur(4px);
    z-index: 999;
    animation: fadeIn 0.3s ease;
}

.overlay.active {
    display: block;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text) 0%, var(--neutral-500) 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    width: 100%;
    height: 3px;
    background: var(--secondary);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header Mobile */
    .nav-wrapper {
        position: relative;
        padding: 0.75rem 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: -16px;
        right: -16px;
        background: var(--white);
        box-shadow: 0 4px 8px var(--shadow);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        z-index: 200;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--gray-light);
        margin: 0;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .header-actions {
        order: 3;
        gap: 1rem;
    }
    
    .user-name {
        display: none;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Filter Section Mobile */
    .filter-section {
        padding: 1.5rem 0;
    }
    
    .filter-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .filter-group {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .filter-buttons {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        flex-wrap: nowrap;
        gap: 0.75rem;
    }
    
    .filter-buttons::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-buttons::-webkit-scrollbar-track {
        background: var(--gray-light);
        border-radius: 2px;
    }
    
    .filter-buttons::-webkit-scrollbar-thumb {
        background: var(--gray);
        border-radius: 2px;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 0.625rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Products Grid Mobile */
    .products {
        padding: 2rem 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .product-card {
        border-radius: 6px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 0.875rem;
    }
    
    .product-name {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .product-price {
        font-size: 1.125rem;
        margin-bottom: 0.375rem;
    }
    
    .product-description {
        font-size: 0.8125rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .product-actions {
        gap: 0.375rem;
    }
    
    .add-to-cart {
        padding: 0.625rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .view-in-app {
        padding: 0.625rem 0.75rem;
        font-size: 0.875rem;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 85vh;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-product {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .modal-info h2 {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 1.25rem;
    }
    
    .modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .modal-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Cart Sidebar Mobile */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section ul {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.875rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 0.75rem;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.625rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .cart-sidebar .cart-header {
        padding: 1rem;
    }
    
    .cart-sidebar .cart-footer {
        padding: 1rem;
    }
}