/* ========== RESET & BASE ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; background: #0a0a0a; color: #f5f5f5; }

/* ========== HEADER & NAV ========== */
.site-header { background: #1a1a1a; padding: 20px 0; position: sticky; top: 0; z-index: 1000; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.site-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 28px; font-weight: 800; color: white; text-decoration: none; }
.logo span { color: #ff3e00; }
.main-nav { display: flex; gap: 25px; }
.main-nav a { color: #d1d1d1; text-decoration: none; font-weight: 600; transition: color 0.3s; }
.main-nav a:hover { color: #ff3e00; }

/* ========== WORKING SLIDESHOW ========== */
.hero { margin: 30px 0 60px; }
.slideshow-container { max-width: 1200px; margin: auto; height: 500px; position: relative; overflow: hidden; border-radius: 10px; }
.mySlides { display: none; height: 100%; position: absolute; width: 100%; }
.mySlides.active { display: block; position: relative; }
.mySlides img { width: 100%; height: 100%; object-fit: cover; }
.slide-text { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.9)); color: white; padding: 40px; }
.slide-text h2 { color: #ff3e00; font-size: 18px; margin-bottom: 10px; }
.slide-text h1 { font-size: 42px; margin-bottom: 15px; }
.slide-text p { font-size: 18px; margin-bottom: 25px; max-width: 600px; }

/* Slideshow Controls */
.prev, .next { cursor: pointer; position: absolute; top: 50%; width: 50px; height: 50px; margin-top: -25px; color: white; font-size: 24px; background: rgba(0,0,0,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; text-decoration: none; }
.prev:hover, .next:hover { background: rgba(255,62,0,0.8); }
.next { right: 20px; }
.prev { left: 20px; }
.dots-container { text-align: center; padding: 20px; }
.dot { cursor: pointer; height: 14px; width: 14px; margin: 0 8px; background: rgba(255,255,255,0.5); border-radius: 50%; display: inline-block; transition: background 0.3s; border: 2px solid transparent; }
.dot:hover, .dot.active { background: #ff3e00; border-color: white; }

/* ========== BUTTONS ========== */
.cta-button { display: inline-block; background: #ff3e00; color: white; padding: 14px 30px; border-radius: 30px; font-weight: 700; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s; text-decoration: none; }
.cta-button:hover { background: #ff5c29; transform: translateY(-3px); }

/* ========== SITE SECTIONS ========== */
.brands, .reviews { padding: 60px 0; }
.brands h2, .reviews h2 { font-size: 36px; text-align: center; margin-bottom: 40px; }
.brand-grid, .review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 30px; }
.brand-card, .review-card { background: #1a1a1a; border-radius: 10px; overflow: hidden; transition: transform 0.3s; }
.brand-card:hover, .review-card:hover { transform: translateY(-10px); }
.brand-card img, .review-card img { width: 100%; height: 200px; object-fit: cover; }
.review-content { padding: 20px; }
.reviews { background: #111; }

/* ========== FOOTER ========== */
.site-footer { background: #111; padding: 60px 0 30px; margin-top: 60px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-section h3 { font-size: 20px; margin-bottom: 20px; }
.footer-section p, .footer-section a { color: #d1d1d1; line-height: 1.8; margin-bottom: 10px; display: block; }
.footer-section a:hover { color: #ff3e00; }
.affiliate-disclaimer { font-size: 14px; color: #888; margin-top: 20px; font-style: italic; }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #333; color: #666; }
