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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1f2937;
    line-height: 1.6;
}

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

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.025em;
    margin: 0;
}

.brand-tagline {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1;
}

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

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

/* Hero */
.hero {
    padding: 80px 0 120px 0;
    text-align: center;
    background-color: #f8fafc;
    position: relative;
    min-height: 600px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(248, 250, 252, 0) 0%, rgba(248, 250, 252, 0.3) 30%, rgba(255, 255, 255, 0.8) 70%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: -0.05em;
    line-height: 1.1;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.025em;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

/* Aanbod Section */
.aanbod {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
    letter-spacing: -0.025em;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #111827;
    margin: 1rem auto 0;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 80px;
}

.carousel-wrapper {
    overflow: visible;
    border-radius: 8px;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 150px;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 5;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    padding: 5px 0;
}

.carousel-slide {
    min-width: 85%;
    max-width: 85%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    padding: 0;
}

/* Single product - center and normal width */
.carousel-container.single-product .carousel-slide {
    min-width: 100%;
    max-width: 100%;
}

.carousel-slide .product-card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Peek effect - show partial next slide (only for multiple products) */
.carousel-slide {
    position: relative;
}

.carousel-container:not(.single-product) .carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.carousel-container:not(.single-product) .carousel-slide:not(.active-slide)::after {
    opacity: 1;
}

.carousel-container:not(.single-product) .carousel-slide:not(.active-slide) {
    transform: scale(0.9);
    transition: transform 0.5s ease;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover:not(:disabled) {
    background-color: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn i {
    font-size: 1.4rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    border-color: #2563eb;
    transform: scale(1.2);
}

.indicator.active {
    background-color: #2563eb;
    border-color: #2563eb;
}

/* Single product mode - disable interaction */
.carousel-container.single-product .carousel-btn {
    pointer-events: none;
    opacity: 0.3;
}

.carousel-container.single-product .indicator {
    pointer-events: none;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 60px;
    }
    
    .carousel-slide {
        min-width: calc(100% - 80px);
        max-width: calc(100% - 80px);
    }
    
    .carousel-btn {
        width: 48px;
        height: 48px;
    }
    
    .carousel-btn i {
        font-size: 1.2rem;
    }
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #374151;
}

.product-card.sold-item {
    opacity: 0.7;
}

.product-card.sold-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.product-image {
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    background-color: #ffffff;
}

.wheel-icon {
    font-size: 4rem;
    color: #60a5fa;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.product-info {
    padding: 1.25rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 140px;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    color: #111827;
    line-height: 1.3;
    letter-spacing: -0.025em;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.product-brand {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    order: -1;
}

.product-specs {
    color: #4b5563;
    font-weight: 400;
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
    margin: 0;
}

.status-badge, .brand-tag {
    background: #111827;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.sold {
    background-color: #dc2626;
    color: #ffffff;
    border: 1px solid #dc2626;
    font-weight: 700;
    border-radius: 2px;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    text-align: center;
    margin-top: auto;
}

.price-badge {
    color: #111827;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-top: auto;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Product Detail Page */
.product-detail {
    padding: 2rem 0 4rem 0;
    background-color: #ffffff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.product-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    margin-bottom: 1rem;
}

.detail-img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    background-color: #ffffff;
    border-radius: 2px;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 1px solid #e5e7eb;
}

.detail-img:hover {
    transform: scale(1.02);
}

.thumbnail-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0;
    max-width: 100%;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: #60a5fa;
}

.thumbnail.active {
    border-color: #60a5fa;
}

.image-counter {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    z-index: 2;
}

/* Gallery Navigation Arrows */
.gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.7;
}

.gallery-nav-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-nav-prev {
    left: 1rem;
}

.gallery-nav-next {
    right: 1rem;
}

.gallery-nav-arrow i {
    pointer-events: none;
}

/* Hide arrows on mobile */
@media (max-width: 768px) {
    .gallery-nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-nav-prev {
        left: 0.5rem;
    }
    
    .gallery-nav-next {
        right: 0.5rem;
    }
}

/* Photo Lightbox (Fullscreen) */
.photo-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.95) 70%, rgba(0, 0, 0, 0.98) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 10001;
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

.image-sold-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(239, 68, 68, 0.8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.product-info-detail {
    color: black;
}

.breadcrumb {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #60a5fa;
    text-decoration: none;
}

.product-detail-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #111827;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.brand-tag {
    display: none;
}

.spec-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

@media (max-width: 968px) {
    .spec-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.specifications, .description, .compatibility, .contact-seller {
    margin-bottom: 2rem;
}

.specifications h3, .description h3, .compatibility h3, .contact-seller h3 {
    color: hsl(0, 0%, 0%);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.spec-grid {
    display: grid;
    gap: 0.8rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 2px;
    border: 1px solid #d1d5db;
    border-bottom: 1px solid #e5e7eb;
}

.spec-label {
    color: #6b7280;
    font-weight: 500;
}

.spec-value {
    color: #1f2937;
    font-weight: 600;
}

.product-description {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.description p {
    color: black;
    line-height: 1.6;
    margin-bottom: 1rem;
    white-space: pre-line;
}

.compatibility ul {
    list-style: none;
    padding: 0;
}

.compatibility li {
    color: black;
    padding: 0.5rem 0;
    border-bottom: 1px solid #1e3a5f;
}

.compatibility li:before {
    content: "✓ ";
    color: #22c55e;
    font-weight: bold;
    margin-right: 0.5rem;
}

.btn-contact {
    display: inline-block;
    background-color: #60a5fa;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #3b82f6;
}

.btn-back {
    display: inline-block;
    background-color: transparent;
    color: #60a5fa;
    padding: 12px 24px;
    text-decoration: none;
    border: 1px solid #60a5fa;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-right: 1rem;
}

.btn-back:hover {
    background-color: #60a5fa;
    color: #ffffff;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1e3a5f;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .btn-back {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-info-detail h1 {
        font-size: 2rem;
    }
}

/* About Us Page */
.about-us {
    padding: 40px 0 80px 0;
    background-color: #1a2332;
    min-height: 80vh;
}

.about-content {
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: black;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 3rem;
    text-align: center;
}

.price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
    letter-spacing: -0.025em;
    margin-top: auto;
}

.about-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-section h2 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-section p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.feature-item {
    background-color: #243447;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #1e3a5f;
}

.feature-item h3 {
    color: #60a5fa;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.specializations {
    list-style: none;
    padding: 0;
}

.specializations li {
    color: black;
    padding: 0.5rem 0;
    border-bottom: 1px solid #1e3a5f;
}

.specializations li:before {
    content: "• ";
    color: #60a5fa;
    font-weight: bold;
    margin-right: 0.5rem;
}

.product-gallery {
    background: #ffffff;
    border-radius: 2px;
    padding: 1.5rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.specifications-box {
    background: #ffffff;
    border-radius: 2px;
    padding: 1.5rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.specifications-box .specifications {
    margin-bottom: 0;
}

.compatibility-box {
    background: #ffffff;
    border-radius: 2px;
    padding: 1.5rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.compatibility-box .compatibility {
    margin-bottom: 0;
}

.contact-seller-wrapper {
    margin-top: 2rem;
}

.contact-seller-wrapper .contact-seller {
    background: #ffffff;
    border-radius: 5px;
    padding: 2rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.product-detail-info {
    background: #ffffff;
    border-radius: 2px;
    padding: 2rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.contact-seller {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #243447;
    border-radius: 8px;
    border: 1px solid #1e3a5f;
}

.contact-seller h3 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.contact-seller p {
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-content h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.contact-info p {
    margin-bottom: 1rem;
    color: #1f2937;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 1rem;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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