/* Modern CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Variables */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --text-color: #0f172a;
    --light-text: #475569;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-inter: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial;
    --font-jakarta: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial;
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-inter);
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-jakarta);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-normal);
}

.header .container {
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: var(--transition-fast);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-family: var(--font-jakarta);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    text-decoration: none;
    text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
    transition: var(--transition-normal);
}

.logo-container:hover .logo-text {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.logo-container {
    text-decoration: none;
    transition: var(--transition-normal);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

/* Icon Buttons */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.icon-btn .cart-icon,
.icon-btn .contact-icon {
    font-size: 1.2rem;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 999px;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-color: transparent;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

/* Desktop navigation layout */
@media (min-width: 769px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .nav-link {
        padding: 8px 12px;
        border-radius: var(--radius-sm);
    }
    
    .icon-btn {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .icon-btn .cart-icon,
    .icon-btn .contact-icon {
        font-size: 1.1rem;
    }
}

/* Mobile navigation layout */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        gap: 0;
    }

    .logo-container {
        order: 1;
        flex: 1;
        justify-content: flex-start;
    }

    .nav-menu {
        order: 3;
        flex-direction: row;
        width: auto;
        background-color: transparent;
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        gap: 8px;
        align-items: center;
        flex-wrap: wrap;
    }

    .nav-link {
        display: none; /* Hide Products link on mobile, accessible via mobile menu */
        padding: 8px 12px;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-toggle {
        order: 2;
        margin-left: 8px;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        border-bottom: 1px solid var(--border-color);
        padding: 0;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }

    .mobile-nav-link {
        padding: 12px 16px;
        background-color: transparent;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-color);
        font-weight: 600;
        width: 100%;
        text-align: left;
    }

    .mobile-nav-link:last-child {
        border-bottom: none;
    }

    .cart-count {
        top: -6px;
        right: -6px;
        font-size: 0.7rem;
        min-width: 18px;
        height: 18px;
    }
}

.cart-count {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    box-shadow: var(--shadow);
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    padding: 12px 16px;
    background-color: #f8fafc;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

/* Main Content */
.main {
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero {
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slide {
    position: relative;
    min-height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    opacity: 0.3;
    transform: scale(0.98);
    transition: all var(--transition-slow);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px;
}

.hero-tagline {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
}

.hero-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-product-showcase {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 300px;
}

.product-item {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    transition: var(--transition-fast);
}

.product-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.hero-stats {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    display: flex;
    gap: 20px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-text);
}

.hero-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.hero-control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: white;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow);
}

.hero-control-btn:hover {
    background-color: #f1f5f9;
    transform: scale(1.05);
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-dot.active,
.hero-dot:hover {
    background-color: white;
    transform: scale(1.2);
}

/* Products Section */
.products {
    padding: 60px 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 8px;
    color: var(--text-color);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--light-text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

/* Product Card */
.product-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.product-card-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
}

.product-image-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #f8fafc;
}

.product-image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-images {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-slide.active {
    opacity: 1;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background-color: white;
    transform: scale(1.1);
}

.product-slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slide-dot.active,
.slide-dot:hover {
    background-color: white;
    transform: scale(1.2);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-name {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--text-color);
    margin-bottom: 4px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--light-text);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #f8fafc;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: #f1f5f9;
}

.quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    background-color: transparent;
    outline: none;
}

.btn {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 140px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background-color: #f8fafc;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

.btn-large {
    padding: 14px 24px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 16px 28px;
    font-size: 1.2rem;
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: 40px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 24px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Cart Section */
.cart {
    padding: 20px 0;
}

.cart-items {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-item-price {
    color: var(--light-text);
    font-size: 0.95rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-total {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.cart-summary {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
}

.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding: 16px;
    background-color: #f8fafc;
    border-radius: var(--radius-md);
}

.total-label {
    font-weight: 700;
    font-size: 1.1rem;
}

.total-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.cart-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--light-text);
}

/* Footer */
.footer {
    background-color: #0f172a;
    color: #e2e8f0;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 20px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo-image {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-logo-text {
    font-family: var(--font-jakarta);
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: #f1f5f9;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
}

/* Sticky Cart Button for Mobile */
.sticky-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.btn-sticky {
    padding: 14px 20px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-hover);
    backdrop-filter: blur(10px);
}

/* Responsive Design */
@media (min-width: 768px) {
    .header .container {
        padding: 16px 0;
    }

    .nav-menu {
        gap: 32px;
    }

    .cart-link {
        padding: 12px 20px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 60px;
    }

    .hero-image {
        width: 50%;
    }

    .hero-product-showcase,
    .hero-stats {
        right: 60px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card-content {
        grid-template-columns: 1.2fr 1.8fr;
        gap: 24px;
    }

    .product-actions {
        align-items: center;
    }

    .cart-item {
        grid-template-columns: 2fr 1fr 1fr auto;
        align-items: center;
    }

    .cart-item-actions {
        justify-content: flex-end;
    }

    .total {
        flex-direction: row;
        gap: 16px;
    }

    .cart-actions {
        flex-direction: row;
    }

    .sticky-cart {
        bottom: 30px;
        right: 30px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cart-item {
        grid-template-columns: 3fr 1fr 1fr auto;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px 0;
    }

    .logo-container {
        order: 1;
        justify-content: center;
    }

    .nav-menu {
        order: 2;
        flex-direction: column;
        width: 100%;
        background-color: #f8fafc;
        padding: 16px;
        border-radius: var(--radius-md);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        gap: 12px;
    }

    .nav-link,
    .cart-link,
    .contact-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
    }

    .cart-link {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    }

    .contact-btn {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }

    .hero-slide {
        min-height: 400px;
    }

    .hero-content {
        padding: 30px 20px;
    }

    .hero-image {
        display: none;
    }

    .product-card-content {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }

    .product-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cart-item-actions {
        justify-content: space-between;
    }

    .total {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .cart-actions {
        flex-direction: column;
    }

    .cta-section {
        margin: 20px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-image-container {
    animation: slideInLeft 0.6s ease-out;
}

.product-info {
    animation: slideInRight 0.6s ease-out;
}

/* Loading states */
.product-slide img {
    transition: opacity var(--transition-normal);
}

.product-slide img:not(.loaded) {
    opacity: 0.7;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
