/* Core Styles */
:root {
    --brand-red: #d41d1d;
    --dark: #222;
    --white: #fff;
    --gray: #f8f8f8;
    --text-sec: #666;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; background: var(--white); overflow-x: hidden; }

/* Banners */
.top-banner { background: var(--brand-red); color: white; text-align: center; padding: 12px; font-size: 13px; font-weight: 700; letter-spacing: 1px; }
.utility-bar { background: var(--gray); padding: 8px 30px; border-bottom: 1px solid #eee; }
.utility-links { display: flex; justify-content: flex-end; font-size: 12px; }
.utility-links a { color: var(--text-sec); text-decoration: none; }

/* Header */
header { display: flex; justify-content: space-between; align-items: center; padding: 15px 30px; background: white; border-bottom: 1px solid #eee; position: sticky; top: 0; z-index: 100; }
.hamburger { cursor: pointer; display: flex; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background: var(--dark); transition: 0.3s; }
.logo { position: absolute; left: 50%; transform: translateX(-50%); }
.logo img { height: 40px; }
.cart-count { background: var(--brand-red); color: white; border-radius: 50%; padding: 3px 8px; font-size: 11px; font-weight: bold; }

/* Sidebar */
.sidebar { position: fixed; left: -320px; top: 0; width: 320px; height: 100vh; background: white; z-index: 1000; transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 5px 0 20px rgba(0,0,0,0.1); }
.sidebar.active { left: 0; }
.sidebar-header { padding: 20px; display: flex; justify-content: space-between; border-bottom: 1px solid #eee; align-items: center; }
.tab.active { background: var(--brand-red); color: white; padding: 5px 15px; border-radius: 4px; font-weight: bold; }
.close-btn { background: none; border: none; font-size: 24px; cursor: pointer; }
.menu-links { list-style: none; }
.menu-links li { padding: 18px 20px; border-bottom: 1px solid #f9f9f9; cursor: pointer; font-weight: 500; display: flex; justify-content: space-between; }
.submenu { display: none; background: #fdfdfd; padding: 10px 0; }
.submenu.active { display: block; }
.submenu a { display: block; padding: 12px 40px; color: var(--text-sec); text-decoration: none; font-size: 14px; }
.direct-link { color: inherit; text-decoration: none; display: block; width: 100%; }

/* Hero */
.hero { height: 450px; position: relative; overflow: hidden; }
.hero-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: 1s; }
.hero-image.active { opacity: 1; }
.hero-overlay { position: absolute; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; color: white; padding: 20px; }
.red-banner { background: var(--brand-red); padding: 10px 20px; display: inline-block; margin-bottom: 15px; font-weight: 700; text-transform: uppercase; font-size: 14px; }
.hero h1 { font-size: 42px; letter-spacing: 2px; }

/* Action Bar (Buttons Below) */
.action-bar { padding: 40px 20px; text-align: center; border-bottom: 1px solid #eee; }
.price-tag-dark { color: var(--text-sec); font-size: 12px; letter-spacing: 3px; margin-bottom: 20px; }
.hero-btns-below { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.btn-red { background: var(--brand-red); color: white; padding: 15px 40px; text-decoration: none; border-radius: 50px; font-weight: bold; transition: 0.3s; border: 2px solid var(--brand-red); }
.btn-outline-dark { background: transparent; color: var(--dark); padding: 15px 40px; text-decoration: none; border-radius: 50px; font-weight: bold; transition: 0.3s; border: 2px solid var(--dark); }
.btn-red:hover, .btn-outline-dark:hover { transform: scale(1.05); }

/* Promo */
.promo-banner { background: #111; color: white; text-align: center; padding: 10px; font-size: 11px; letter-spacing: 1px; }

/* Grid */
.products { padding: 60px 20px; max-width: 1200px; margin: auto; }
.products h2 { text-align: center; margin-bottom: 40px; font-size: 32px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.product-card { background: white; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: 300px; object-fit: cover; }
.badge { position: absolute; top: 15px; right: 15px; background: var(--brand-red); color: white; padding: 5px 12px; font-size: 11px; font-weight: bold; border-radius: 3px; }
.product-card h3 { padding: 15px; font-size: 18px; }
.price { padding: 0 15px 20px; font-size: 20px; font-weight: bold; color: var(--brand-red); }

/* About Section */
.about-section { background: var(--gray); padding: 80px 20px; text-align: center; }
.about-content { max-width: 800px; margin: auto; }
.about-image { width: 100%; border-radius: 10px; overflow: hidden; margin: 30px 0; }
.about-image img { width: 100%; display: block; }
.team-badge { background: var(--brand-red); color: white; padding: 10px 20px; border-radius: 50px; display: inline-block; margin-bottom: 20px; font-size: 12px; font-weight: bold; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .hero-btns-below a { width: 100%; max-width: 300px; }
}
