/* Front page: hero, carousel, why-shop, about */
main { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.carousel-section { margin-bottom: 4rem; }
.section-title { font-size: 2.2rem; color: var(--color-bg-dark); margin-bottom: 2rem; text-align: center; font-weight: 700; }
.carousel-container { position: relative; background: #fff; border-radius: 8px; padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.carousel { display: flex; gap: 1.5rem; overflow-x: auto; scroll-behavior: smooth; padding: 1rem 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
.carousel::-webkit-scrollbar { display: none; }
.carousel-item { flex: 0 0 calc(25% - 1.125rem); min-width: 200px; scroll-snap-align: start; }
.category-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; padding: 1.5rem; text-align: center; transition: all 0.3s ease; cursor: pointer; box-shadow: 0 1px 3px rgba(0,0,0,0.05); text-decoration: none; color: inherit; display: flex; flex-direction: column; gap: 1rem; min-height: 280px; }
.category-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-color: #999; }
.category-card img { width: 100%; height: 150px; object-fit: cover; border-radius: 6px; }
.category-card h3 { font-size: 1.3rem; color: var(--color-bg-dark); margin: 0; }
.category-card p { color: #666; font-size: 0.95rem; margin: 0; }
.carousel-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; }
.carousel-btn { width: 44px; height: 44px; border: 1px solid #ddd; background: #f5f5f5; color: #333; font-size: 1.2rem; cursor: pointer; border-radius: 4px; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.carousel-btn:hover { background: #e0e0e0; border-color: #999; }
.hero-section { background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2a3f5f 100%); color: white; padding: 4rem 2rem; margin-bottom: 4rem; border-radius: 8px; text-align: center; }
.hero-section h2 { font-size: 2.8rem; margin-bottom: 1rem; font-weight: 700; line-height: 1.2; color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.hero-section p { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.95; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }
.hero-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-cta-btn { padding: 1rem 2.5rem; font-size: 1.1rem; border: none; border-radius: 4px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; }
.hero-cta-btn.primary { background: var(--color-primary); color: white; }
.hero-cta-btn.primary:hover { background: #9d1a1a; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.hero-cta-btn.secondary { background: white; color: var(--color-bg-dark); }
.hero-cta-btn.secondary:hover { background: #f5f5f5; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.why-shop-section { max-width: 1000px; margin: 4rem auto; padding: 3rem 2rem; background: #f9f9f9; border-radius: 8px; border-top: 3px solid var(--color-primary); }
.why-shop-section h2 { font-size: 2.2rem; color: var(--color-bg-dark); margin-bottom: 2rem; text-align: center; font-weight: 700; }
.why-shop-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; }
.why-shop-item { text-align: center; }
.why-shop-item i { font-size: 2.5rem; color: var(--color-primary); margin-bottom: 1rem; }
.why-shop-item h3 { font-size: 1.1rem; color: var(--color-bg-dark); margin-bottom: 0.5rem; font-weight: 600; }
.why-shop-item p { font-size: 0.95rem; color: #666; line-height: 1.5; }
.about-section { max-width: 1000px; margin: 4rem auto; padding: 3rem 2rem; background: white; border-radius: 8px; border: 1px solid #e0e0e0; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.about-section h2 { font-size: 2.2rem; color: var(--color-bg-dark); margin-bottom: 1.5rem; font-weight: 700; }
.about-section p { color: #666; line-height: 1.8; margin-bottom: 1.5rem; font-size: 1rem; }
.about-cta-link { display: inline-block; color: var(--color-primary); font-weight: 600; text-decoration: none; margin-top: 1rem; transition: all 0.3s ease; }
.about-cta-link:hover { color: #9d1a1a; }
@media (max-width: 768px) { .carousel-item { flex: 0 0 calc(50% - 0.75rem); } .hero-section h2 { font-size: 2rem; } .hero-section p { font-size: 1.1rem; } .hero-cta-buttons { flex-direction: column; align-items: stretch; } .hero-cta-btn { width: 100%; } .why-shop-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .carousel-item { flex: 0 0 100%; } .section-title { font-size: 1.6rem; } .hero-section { padding: 2.5rem 1rem; margin-bottom: 2rem; } .hero-section h2 { font-size: 1.6rem; } .hero-section p { font-size: 1rem; } .why-shop-section h2, .about-section h2 { font-size: 1.6rem; } .why-shop-grid { grid-template-columns: 1fr; gap: 1.5rem; } .why-shop-section, .about-section { padding: 2rem 1rem; } main { padding: 2rem 1rem; } }
