/* ========= MODERN DESIGN SYSTEM & VARIABLES ========= */
:root {
  --primary: #4f46e5;
  --primary-dark: #3730a3;
  --primary-light: #eef2ff;
  --secondary: #0ea5e9;
  --accent: #f43f5e;
  --accent-dark: #be123c;
  --dark-bg: #0f172a;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --card-bg: rgba(255, 255, 255, 0.85);
  --border-color: #e2e8f0;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 12px 35px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 25px 70px rgba(79, 70, 229, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: 
    radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 40%),
    #f8fafc;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); }
img { max-width: 100%; height: auto; object-fit: cover; }
.glass-effect { backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }

/* ========= ECOSYSTEM LIVE TICKER ========= */
.live-ticker-bar {
  background: linear-gradient(90deg, #0f172a, #1e1b4b);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ticker-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ticker-left { display: flex; align-items: center; gap: 16px; }
.pulse-dot { width: 8px; height: 8px; background-color: #22c55e; border-radius: 50%; display: inline-block; box-shadow: 0 0 10px #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } }

/* ========= USP TOPBAR ========= */
.usp-bar { background-color: #ffffff; border-bottom: 1px solid var(--border-color); font-size: 13px; font-weight: 600; padding: 12px 0; color: var(--text-muted); }
.usp-container { display: flex; justify-content: space-between; align-items: center; }
.usp-item { display: flex; align-items: center; gap: 8px; }
.usp-item i { color: var(--primary); }

/* ========= HEADER & LOGO ========= */
.main-header { background: rgba(255, 255, 255, 0.85); padding: 20px 0; position: sticky; top: 0; z-index: 9999; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04); border-bottom: 1px solid rgba(226, 232, 240, 0.6); }
.header-grid { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 50px; }
.logo-container { display: flex; align-items: center; gap: 14px; }
.logo-icon-box { width: 56px; height: 56px; border-radius: 18px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3); position: relative; overflow: hidden; }
.logo-icon-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25), transparent); transform: rotate(45deg); animation: shine 4s infinite; }
@keyframes shine { 0% { left: -100%; } 20% { left: 100%; } 100% { left: 100%; } }
.logo-text h1 { font-size: 28px; font-weight: 800; color: var(--dark-bg); line-height: 1; letter-spacing: -1.2px; }
.logo-text h1 span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-text p { font-size: 11px; color: var(--text-muted); font-weight: 700; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.8px; }
.search-wrapper { display: flex; width: 100%; max-width: 720px; background: #f1f5f9; border-radius: 18px; padding: 6px; transition: all 0.3s; border: 1px solid transparent; }
.search-wrapper:focus-within { background: white; border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.search-input { flex: 1; padding: 12px 18px; border: none; font-size: 14px; font-weight: 500; outline: none; background: transparent; }
.category-select { padding: 0 20px; border: none; border-left: 1px solid #cbd5e1; background: transparent; font-size: 14px; font-weight: 600; color: var(--text-main); cursor: pointer; outline: none; }
.search-btn { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border: none; padding: 0 24px; border-radius: 14px; cursor: pointer; font-size: 15px; font-weight: 600; box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.partner-btn { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 8px 24px; border-radius: 40px; font-weight: 700; font-size: 14px; transition: 0.2s; }
.partner-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3); }
.contact-link { font-weight: 600; color: var(--text-main); transition: 0.2s; display: flex; align-items: center; gap: 6px; }
.contact-link:hover { color: var(--primary); }

/* ========= CATEGORIES NAVIGATION ========= */
.nav-bar { background-color: #ffffff; border-bottom: 1px solid var(--border-color); padding: 14px 0; }
.nav-container { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; color: #334155; }
.all-cats-btn { background: linear-gradient(135deg, var(--primary-light), #e0f2fe); color: var(--primary); padding: 10px 20px; border-radius: 12px; display: flex; align-items: center; gap: 10px; }
.nav-item:hover { color: var(--primary); }
.offers-link { margin-left: auto; color: var(--accent); display: flex; align-items: center; gap: 6px; }

/* ========= HERO ========= */
.hero-section { background-color: #ffffff; margin-top: 35px; border-radius: var(--radius-lg); overflow: hidden; display: grid; grid-template-columns: 1.2fr 1fr; box-shadow: var(--shadow-md); }
.hero-main-banner { padding: 70px; background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(240, 244, 255, 0.9)); display: flex; flex-direction: column; justify-content: center; }
.hero-main-banner h2 { font-size: 62px; font-weight: 800; color: var(--dark-bg); line-height: 1.05; letter-spacing: -2.5px; }
.hero-main-banner h2 span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.hero-main-banner p { font-size: 17px; color: var(--text-muted); margin: 25px 0 35px; max-width: 520px; line-height: 1.7; }
.hero-usps { display: flex; gap: 24px; margin-bottom: 40px; font-size: 14px; font-weight: 700; }
.hero-usp-item i { color: var(--primary); margin-right: 6px; }
.hero-usp-item span { display: block; font-size: 12px; color: var(--text-muted); font-weight: 500; }
.hero-buttons { display: flex; gap: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 14px; display: inline-block; transition: transform 0.2s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-secondary { background-color: #ffffff; border: 1px solid var(--border-color); color: var(--text-main); padding: 14px 28px; border-radius: 12px; font-weight: 700; font-size: 14px; display: inline-block; }
.hero-superdeal-banner { background: linear-gradient(180deg, #ffffff, #f8fafc); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.slider-viewport { width: 100%; height: 100%; position: relative; flex: 1; }
.deal-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; padding: 50px; opacity: 0; visibility: hidden; transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out; z-index: 1; }
.deal-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.superdeal-tag { background-color: var(--accent); color: white; font-size: 11px; font-weight: 800; padding: 5px 14px; border-radius: 6px; display: inline-block; text-transform: uppercase; margin-bottom: 20px; }
.superdeal-title { font-size: 26px; font-weight: 800; color: var(--dark-bg); max-width: 320px; line-height: 1.2; }
.stars-review { color: #f59e0b; font-size: 13px; margin: 12px 0 24px; display: flex; align-items: center; gap: 6px; }
.superdeal-specs { list-style: none; font-size: 14px; color: var(--text-main); margin-bottom: 30px; }
.superdeal-specs li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.superdeal-specs li::before { content: "✓"; color: #22c55e; font-weight: 900; }
.price-box { display: flex; align-items: baseline; gap: 12px; margin-bottom: 25px; }
.current-price { font-size: 42px; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
.old-price { font-size: 18px; color: #94a3b8; text-decoration: line-through; }
.discount-badge { background-color: rgba(244, 63, 94, 0.1); color: var(--accent); font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }
.btn-deal { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: white; width: 100%; padding: 16px; border: none; border-radius: 14px; font-weight: 700; font-size: 16px; cursor: pointer; box-shadow: 0 6px 20px rgba(244, 63, 94, 0.25); text-align: center; display: block; }
.superdeal-product-img { position: absolute; right: 30px; top: 50px; width: 220px; height: 220px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); background: #ffffff; box-shadow: var(--shadow-md); overflow: hidden; border: 1px solid var(--border-color); }
.slider-controls { position: absolute; bottom: 25px; right: 50px; display: flex; align-items: center; gap: 12px; z-index: 10; }
.slider-btn { width: 36px; height: 36px; border-radius: 50%; background: white; border: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-main); transition: all 0.2s ease; box-shadow: var(--shadow-sm); }
.slider-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.slider-dots { display: flex; gap: 6px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; cursor: pointer; transition: all 0.2s ease; }
.slider-dot.active { background: var(--primary); width: 20px; border-radius: 4px; }

/* ========= COUNTER ========= */
.counter-bar { background-color: #ffffff; margin-top: 30px; border-radius: var(--radius-md); padding: 26px; display: grid; grid-template-columns: repeat(5, 1fr); box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.counter-item { display: flex; align-items: center; gap: 16px; border-right: 1px solid var(--border-color); padding: 0 16px; }
.counter-item:last-child { border-right: none; }
.counter-icon { font-size: 26px; color: var(--primary); width: 50px; height: 50px; background-color: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.counter-text h4 { font-size: 18px; font-weight: 800; color: var(--dark-bg); }
.counter-text p { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ========= FLASH DEALS SECTIE ========= */
.deals-section { margin-top: 40px; display: grid; grid-template-columns: 340px 1fr; gap: 28px; }
.flash-deal-sidebar { background: linear-gradient(180deg, var(--accent), var(--accent-dark)); color: white; border-radius: var(--radius-md); padding: 40px 24px; display: flex; flex-direction: column; align-items: center; text-align: center; box-shadow: 0 15px 40px rgba(244, 63, 94, 0.25); position: relative; overflow: hidden; }
.flash-deal-sidebar h3 { font-size: 24px; font-weight: 800; }
.flash-deal-sidebar p { font-size: 14px; opacity: 0.9; margin-top: 8px; }
.countdown-timer { display: flex; gap: 12px; margin: 35px 0; z-index: 2; }
.time-segment { display: flex; flex-direction: column; background: rgba(0, 0, 0, 0.15); padding: 10px 14px; border-radius: 10px; min-width: 60px; }
.time-segment .num { font-size: 28px; font-weight: 800; }
.time-segment .lbl { font-size: 10px; font-weight: 700; opacity: 0.8; text-transform: uppercase; margin-top: 2px; }
.countdown-divider { font-size: 28px; font-weight: 800; align-self: center; }
.deal-progress-container { width: 100%; margin-bottom: 30px; text-align: left; z-index: 2; }
.progress-labels { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.progress-bar-bg { width: 100%; height: 8px; background: rgba(255,255,255,0.25); border-radius: 10px; overflow: hidden; }
.progress-bar-fill { width: 74%; height: 100%; background: white; border-radius: 10px; }
.btn-all-deals { background-color: #ffffff; color: var(--accent); font-weight: 700; padding: 14px 30px; border-radius: 12px; font-size: 15px; width: 100%; z-index: 2; box-shadow: 0 4px 15px rgba(0,0,0,0.05); border: none; cursor: pointer; }

/* ========= PRODUCT GRID ========= */
.products-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-bottom: 40px; }
.grid-product-card { background-color: #ffffff; border-radius: var(--radius-md); padding: 20px; position: relative; border: 1px solid var(--border-color); display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: all 0.2s; }
.grid-product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.card-discount-tag { position: absolute; top: 14px; left: 14px; background-color: var(--primary); color: white; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; z-index: 2; }
.card-img-container { height: 150px; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; overflow: hidden; background: #f8fafc; border-radius: var(--radius-sm); }
.card-img-container img { max-height: 100%; max-width: 100%; object-fit: contain; }
.card-brand { font-size: 14px; font-weight: 700; color: var(--dark-bg); }
.card-title { font-size: 13px; color: var(--text-muted); margin-top: 4px; height: 36px; overflow: hidden; line-height: 1.4; }
.card-stars { color: #f59e0b; font-size: 11px; margin: 10px 0; }
.card-stars span { color: #94a3b8; }
.card-price-row { margin-top: auto; display: flex; align-items: baseline; gap: 8px; }
.card-current-price { font-size: 20px; font-weight: 800; color: var(--accent); }
.card-old-price { font-size: 13px; color: #94a3b8; text-decoration: line-through; }
.card-shipping { font-size: 12px; color: #22c55e; margin-top: 6px; font-weight: 600; }

/* ========= CATEGORIES ========= */
.categories-section { margin-top: 50px; }
.section-header-flex { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.section-header-flex h3 { font-size: 24px; font-weight: 800; color: var(--dark-bg); }
.view-all-link { font-size: 15px; font-weight: 700; color: var(--primary); }
.circle-cats-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px; margin-bottom: 40px; }
.circle-cat-card { background-color: #ffffff; border-radius: var(--radius-md); padding: 24px 12px; text-align: center; border: 1px solid var(--border-color); display: flex; flex-direction: column; align-items: center; transition: all 0.2s; }
.circle-cat-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.circle-img-box { width: 90px; height: 90px; border-radius: 50%; background-color: #f8fafc; margin-bottom: 14px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.circle-img-box img { width: 100%; height: 100%; object-fit: cover; }
.circle-cat-card p { font-size: 14px; font-weight: 700; color: var(--text-main); }

/* ========= TV ROW, REVIEWS, FAQ, NEWSLETTER, FOOTER ========= */
.tv-row-section { margin-top: 50px; background-color: #ffffff; border-radius: var(--radius-md); padding: 30px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 35px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.tv-badge-logo { background: linear-gradient(135deg, var(--accent), #e11d48); color: white; padding: 20px 30px; border-radius: 14px; font-weight: 900; font-size: 20px; text-transform: uppercase; text-align: center; }
.tv-badge-logo span { display: block; font-size: 13px; font-weight: 600; opacity: 0.9; }
.tv-products-scroller { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tv-inline-product { display: flex; align-items: center; gap: 16px; background-color: #f8fafc; padding: 16px; border-radius: 14px; position: relative; }
.tv-inline-product:hover { background-color: #ffffff; box-shadow: var(--shadow-md); }
.tv-prod-img { width: 70px; height: 70px; background: white; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid var(--border-color); }
.tv-prod-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.tv-prod-details h5 { font-size: 12px; color: var(--text-muted); font-weight: 600; }
.tv-prod-details h4 { font-size: 14px; font-weight: 700; color: var(--text-main); margin: 3px 0; }
.tv-price { font-size: 15px; font-weight: 800; color: var(--accent); }
.tv-price .old { font-size: 12px; color: #94a3b8; text-decoration: line-through; margin-left: 6px; }
.tv-play-btn { position: absolute; right: 16px; bottom: 16px; width: 28px; height: 28px; background-color: #ffffff; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 11px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }

.reviews-section { margin-top: 50px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: white; border-radius: var(--radius-md); padding: 30px; border: 1px solid var(--border-color); }
.review-user { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.user-avatar { width: 44px; height: 44px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.user-meta h4 { font-size: 15px; font-weight: 700; color: var(--dark-bg); }
.user-meta p { font-size: 12px; color: #22c55e; font-weight: 600; }
.review-text { font-size: 14px; color: #475569; line-height: 1.6; font-style: italic; }

.faq-section { margin-top: 50px; }
.faq-wrapper { max-width: 900px; margin: 0 auto; }
.faq-item { background: white; border-radius: 14px; padding: 20px 24px; margin-bottom: 14px; border: 1px solid var(--border-color); cursor: pointer; }
.faq-trigger { display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 16px; }
.faq-trigger i { color: var(--primary); transition: transform 0.3s ease; }
.faq-item.active .faq-trigger i { transform: rotate(180deg); }
.faq-content { margin-top: 12px; font-size: 14px; color: var(--text-muted); display: none; }

.bottom-usp-bar { background-color: #ffffff; margin-top: 50px; padding: 24px; border-radius: var(--radius-md); display: flex; justify-content: space-around; border: 1px solid var(--border-color); flex-wrap: wrap; gap: 20px; }
.b-usp-item { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 700; }
.b-usp-item i { font-size: 20px; color: var(--primary); }
.b-usp-item span { font-weight: 500; color: var(--text-muted); }

.newsletter-banner { background: linear-gradient(135deg, #0f172a, #1e1b4b); color: white; border-radius: var(--radius-md); margin-top: 40px; padding: 50px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.newsletter-form { display: flex; gap: 12px; width: 100%; max-width: 480px; }
.newsletter-form input { flex: 1; padding: 16px 20px; border: none; border-radius: 12px; font-size: 14px; outline: none; }
.newsletter-form button { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; border: none; padding: 0 28px; border-radius: 12px; font-weight: 700; cursor: pointer; }

/* ========= FOOTER ========= */
.main-footer { background-color: #0f172a; color: #94a3b8; margin-top: 60px; padding: 80px 0 30px; font-size: 14px; border-top: 4px solid var(--primary); }
.footer-columns { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 50px; }
.footer-logo-wrapper { display: flex; flex-direction: column; align-items: center; margin-bottom: 24px; }
.footer-logo-box { width: 80px; height: 80px; border-radius: 24px; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 20px rgba(0,0,0,0.2); margin-bottom: 16px; position: relative; overflow: hidden; }
.footer-logo-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent); transform: rotate(45deg); animation: shine 4s infinite; pointer-events: none; z-index: 1; }
.footer-logo-box img { width: 92px; height: 92px; object-fit: contain; position: relative; z-index: 2; }
.footer-company-name { font-size: 28px; font-weight: 800; color: white; letter-spacing: -1px; text-align: center; }
.footer-company-name span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-col h4 { color: white; font-size: 15px; font-weight: 800; margin-bottom: 22px; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-info-text { font-size: 14px; line-height: 1.6; margin: 18px 0 24px; }
.social-links-row { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; background-color: rgba(255,255,255,0.05); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; }
.social-btn:hover { background-color: var(--primary); }
.footer-bottom { padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 15px; }
.payment-icons { display: flex; gap: 12px; }
.payment-icon { background: rgba(255, 255, 255, 0.05); padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 700; color: white; }

/* ========= TOAST ========= */
.live-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 8px 14px;
  border-radius: 40px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 99999;
  transform: translateX(150px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  max-width: 280px;
}
.live-toast.show { transform: translateX(0); opacity: 1; }
.toast-img { width: 28px; height: 28px; background: var(--primary); border-radius: 30px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.live-toast h5 { font-size: 11px; font-weight: 700; margin-bottom: 2px; }
.live-toast p { font-size: 10px; opacity: 0.9; line-height: 1.3; }

/* ========= COOKIE BANNER (met blauw gradient logo) ========= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 999999;
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes slideUp {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-container {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-radius: 28px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(79, 70, 229, 0.15);
  overflow: hidden;
}
.cookie-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px 8px 24px;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.6);
}
.cookie-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-logo-box {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(79, 70, 229, 0.2);
  position: relative;
  overflow: hidden;
}
.cookie-logo-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: shine 4s infinite;
  pointer-events: none;
  z-index: 1;
}
.cookie-logo-box img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  position: relative;
  z-index: 2;
}
.cookie-brand {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}
.cookie-brand span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cookie-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #94a3b8;
  transition: color 0.2s;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 40px;
}
.cookie-close:hover {
  color: #4f46e5;
  background: #eef2ff;
}
.cookie-body {
  padding: 20px 28px 28px 28px;
}
.cookie-text {
  font-size: 14px;
  line-height: 1.5;
  color: #334155;
  margin-bottom: 24px;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.cookie-btn.accept {
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  color: white;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}
.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}
.cookie-btn.decline {
  background: #f1f5f9;
  color: #1e293b;
  border: 1px solid #e2e8f0;
}
.cookie-btn.decline:hover {
  background: #e2e8f0;
}
.cookie-settings {
  font-size: 13px;
  color: #4f46e5;
  font-weight: 600;
  text-decoration: none;
  margin-left: 8px;
  transition: color 0.2s;
}
.cookie-settings:hover {
  color: #3730a3;
  text-decoration: underline;
}
@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .cookie-body {
    padding: 16px 20px 20px 20px;
  }
  .cookie-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-settings {
    text-align: center;
    margin-left: 0;
    margin-top: 4px;
  }
}

/* =========================================
   RESPONSIVE MEDIA QUERIES (DESKTOP EERST)
========================================= */

/* LARGE TABLETS & SMALL LAPTOPS */
@media (max-width: 1200px) {
  .header-grid {
    gap: 24px;
  }
  .hero-main-banner {
    padding: 50px;
  }
  .hero-main-banner h2 {
    font-size: 52px;
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .circle-cats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TABLET */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  .header-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .logo-container {
    justify-content: center;
  }
  .header-actions {
    justify-content: center;
  }
  .search-wrapper {
    max-width: 100%;
  }
  .nav-container {
    flex-wrap: wrap;
    gap: 16px;
  }
  .hero-section {
    grid-template-columns: 1fr;
  }
  .hero-main-banner {
    padding: 40px 28px;
  }
  .hero-main-banner h2 {
    font-size: 44px;
  }
  .hero-buttons {
    flex-wrap: wrap;
  }
  .superdeal-product-img {
    position: relative;
    top: auto;
    right: auto;
    margin: 30px auto 0;
  }
  .deals-section {
    grid-template-columns: 1fr;
  }
  .counter-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .counter-item {
    border-right: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .circle-cats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .tv-row-section {
    grid-template-columns: 1fr;
  }
  .tv-products-scroller {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .bottom-usp-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  .newsletter-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    max-width: 100%;
  }
}

/* ========= MOBIELE COMPACTE HEADER & HAMBURGER MENU ========= */
/* Alleen zichtbaar op mobiel (max-width 768px) */
.mobile-sticky-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  padding: 8px 16px;
}

.mobile-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo .logo-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mobile-logo .logo-icon-box img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mobile-logo .logo-text h1 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.mobile-logo .logo-text h1 span {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.mobile-search-btn, .mobile-hamburger {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
  transition: all 0.2s;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-search-btn:hover, .mobile-hamburger:hover {
  background: rgba(79, 70, 229, 0.1);
}

/* Mobiele menu overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1002;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}

.mobile-menu-overlay.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu-header {
  background: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e2e8f0;
  font-weight: 700;
  font-size: 18px;
}

.close-menu-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #64748b;
}

.mobile-nav {
  background: white;
  width: 85%;
  max-width: 320px;
  height: 100%;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav {
  transform: translateX(0);
}

.mobile-nav a {
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.2s;
}

.mobile-nav a:hover {
  background: #f1f5f9;
}

/* Aanpassingen voor de desktop elementen op mobiel */
@media (max-width: 768px) {
  .mobile-sticky-header {
    display: block;
  }
  .main-header, .nav-bar {
    transition: transform 0.3s ease;
  }
  /* Desktop logo verbergen op mobiel */
  .desktop-logo {
    display: none !important;
  }
  /* Zorg dat de grote header niet sticky is */
  .main-header {
    position: relative;
    top: auto;
    margin-top: 0;
  }
  /* De grote header en navigatie verdwijnen bij scroll (wordt via JS geregeld, maar we zetten initiële transitie) */
  .main-header, .nav-bar {
    transition: transform 0.3s ease;
  }
}

@media (min-width: 769px) {
  .mobile-sticky-header, .mobile-menu-overlay, .mobile-search-btn, .mobile-hamburger {
    display: none !important;
  }
  .desktop-logo {
    display: flex !important;
  }
}

/* ========= EXTRA MOBIELE STIJLEN ========= */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .live-ticker-bar {
    display: none;
  }
  .usp-container {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .main-header {
    padding: 16px 0;
  }
  .logo-text h1 {
    font-size: 22px;
  }
  .logo-text p {
    font-size: 9px;
  }
  .search-wrapper {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }
  .category-select {
    border-left: none;
    border-top: 1px solid #cbd5e1;
    padding: 12px 0 0;
  }
  .search-btn {
    width: 100%;
    height: 52px;
  }
  .nav-container {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
  }
  .hero-main-banner {
    padding: 30px 22px;
  }
  .hero-main-banner h2 {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  .hero-main-banner p {
    font-size: 15px;
  }
  .hero-usps {
    flex-direction: column;
    gap: 16px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .deal-slide {
    padding: 24px;
  }
  .superdeal-title {
    font-size: 22px;
  }
  .current-price {
    font-size: 32px;
  }
  .slider-controls {
    right: 20px;
    bottom: 20px;
  }
  .counter-bar {
    grid-template-columns: 1fr;
  }
  .counter-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
  }
  .counter-item:last-child {
    border-bottom: none;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .circle-cats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-banner {
    padding: 32px 22px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    height: 52px;
  }
  .live-toast {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero-main-banner h2 {
    font-size: 28px;
  }
  .circle-cats-grid {
    grid-template-columns: 1fr;
  }
  .countdown-timer {
    gap: 6px;
  }
  .time-segment {
    min-width: 48px;
    padding: 8px;
  }
  .time-segment .num {
    font-size: 20px;
  }
  .newsletter-banner {
    padding: 24px 18px;
  }
  .tv-row-section {
    padding: 20px;
  }
  .faq-item {
    padding: 18px;
  }
  .cookie-container {
    border-radius: 18px;
  }
}

.mobile-sticky-header {
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px); /* Chrome, Safari, iOS */
  backdrop-filter: blur(12px);
}

@media (max-width: 768px) {
  .main-header, .nav-bar {
    display: none !important;
  }
}