/* ============================================================
   EnergyZone — style.css
   Based on Martfury marketplace layout/design patterns
   Mobile-first, custom properties, no framework dependency
   ============================================================ */

/* --- Variables --- */
:root {
  --primary:       #f97316;
  --primary-dark:  #ea6c0a;
  --primary-light: #fff7ed;
  --dark:          #1a1a2e;
  --text:          #333;
  --text-muted:    #888;
  --border:        #e8e8e8;
  --bg:            #f5f5f5;
  --white:         #fff;
  --red:           #e44;
  --green:         #2e7d32;

  --font-main:     'Barlow', sans-serif;
  --font-display:  'Barlow Condensed', sans-serif;

  --radius:        8px;
  --radius-sm:     4px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.07);
  --shadow-md:     0 6px 24px rgba(0,0,0,.10);
  --shadow-lg:     0 16px 48px rgba(0,0,0,.14);

  --container:     1280px;
  --header-h:      60px;
  --transition:    .25s ease;
}

/* --- Reset / Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; display: block; }
/* Global responsive images — object-fit for all thumb/banner images */
[class*="-thumb"] img,
[class*="-img"] img,
[class*="banner"] img,
[class*="slide"] img,
.cbp-img img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb img,
.cbp-img img { object-fit: contain; background: #f8f8f8; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select { font-family: inherit; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Utility --- */
.hidden-mobile { display: none; }
@media (min-width: 768px) {
  .hidden-mobile { display: block; }
  .hidden-desktop { display: none !important; }
}
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.primary-color { color: var(--primary); }
.badge-sale { background: var(--red); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.badge-new  { background: var(--green); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.badge-hot  { background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 20px; }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ============================================================
   TOP PROMOTION BAR
   ============================================================ */
.top-promotion {
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
  display: none; /* hidden on mobile, shown on md+ */
}
@media (min-width: 768px) { .top-promotion { display: block; } }
.top-promotion .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.promo-inner { display: flex; align-items: center; gap: 12px; }
.promo-percent { font-size: 22px; font-weight: 900; color: var(--primary); font-family: var(--font-display); line-height: 1; }
.promo-label { font-size: 11px; color: #aaa; display: block; }
.promo-title { font-weight: 600; font-size: 13px; }
.promo-code-label { font-size: 11px; color: #aaa; }
.promo-code { color: var(--primary); font-weight: 700; font-size: 14px; }
.promo-cta {
  background: var(--primary);
  color: #fff;
  padding: 6px 18px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 12px;
  transition: background var(--transition);
  white-space: nowrap;
}
.promo-cta:hover { background: var(--primary-dark); color: #fff; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  display: none;
}
@media (min-width: 768px) { .topbar { display: block; } }
.topbar .container { display: flex; align-items: center; justify-content: space-between; height: 36px; }
.topbar-left { display: flex; align-items: center; gap: 16px; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-right a { color: var(--text-muted); transition: color var(--transition); }
.topbar-right a:hover { color: var(--primary); }
.topbar-sep { color: var(--border); }
.lang-dropdown, .currency-dropdown {
  position: relative;
  cursor: pointer;
}
.lang-dropdown select, .currency-dropdown select {
  appearance: none;
  border: none;
  background: none;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  padding-right: 14px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 500;
}
.header-main { border-bottom: 1px solid var(--border); }
.header-main-row {
  display: flex;
  align-items: center;
  height: 72px;
}

/* Logo */
.site-logo-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  margin-right: 32px;
}
.site-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Search — ocupă tot spațiul liber */
.header-search {
  display: flex;
  flex: 1;
  min-width: 0;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  height: 44px;
  margin-right: 32px;
}
.header-search:focus-within {
  border-color: var(--primary);
}
.header-search input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--text);
}
.header-search input::placeholder { color: #bbb; }
.header-search-btn {
  background: var(--primary);
  color: #fff;
  padding: 0 24px;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}
.header-search-btn:hover { background: var(--primary-dark); }

/* Icons — dreapta, fix */
.header-icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.header-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  color: #444;
  font-size: 11px;
  gap: 3px;
  position: relative;
  text-decoration: none;
}
.header-icon:hover { color: var(--primary); background: var(--primary-light); }
.header-icon i { font-size: 22px; }
.header-icon .icon-count {
  position: absolute;
  top: 4px;
  right: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile header row */
.header-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}
@media (min-width: 768px) { .header-mobile { display: none; } }
.header-mobile .site-logo-text { font-size: 22px; }
.header-mobile-icons { display: flex; align-items: center; gap: 4px; }
.btn-menu-toggle {
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
  transition: background var(--transition);
}
.btn-menu-toggle:hover { background: var(--primary-light); }
.btn-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.btn-icon-mobile {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: #555;
  font-size: 18px;
  position: relative;
  transition: color var(--transition);
}
.btn-icon-mobile:hover { color: var(--primary); }
.btn-icon-mobile .icon-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile search bar */
.mobile-search-bar {
  padding: 0 16px 10px;
  display: none;
}
.mobile-search-bar.open { display: flex; }
.mobile-search-bar .header-search { max-width: 100%; border-width: 1.5px; }

/* Desktop nav */
.header-nav { display: none; }
@media (min-width: 768px) { .header-nav { display: block; } }
.header-nav .container {
  display: flex;
  align-items: stretch;
  height: 46px;
}
.header-main-desktop { display: none; }
@media (min-width: 768px) { .header-main-desktop { display: block; } }

/* Department button */
.department-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 0 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
  border-radius: 0;
  transition: background var(--transition);
  white-space: nowrap;
  height: 100%;
}
.department-btn:hover { background: var(--primary-dark); color: #fff; }
.department-dropdown {
  position: relative;
}
.department-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 600;
  background: #fff;
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  min-width: 860px;
}
.department-dropdown:hover .department-panel { display: flex; }

/* Mega panel layout */
.dept-mega { flex-direction: row; }
.dept-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #f8f9fa;
  border-right: 1px solid var(--border);
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.dept-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.dept-sidebar-item i:first-child { color: var(--primary); width: 16px; font-size: 14px; }
.dept-sidebar-item:hover,
.dept-sidebar-item.active { background: #fff; color: var(--primary); border-left: 3px solid var(--primary); padding-left: 13px; }

.dept-content { flex: 1; padding: 16px 20px; min-height: 300px; }
.dept-panel { display: none; }
.dept-panel.active { display: block; }
.dept-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 8px 20px; }
.dept-col { }
.dept-col-head {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--heading);
  padding: 4px 0 6px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}
.dept-col-head:hover { color: var(--primary); }
.dept-col-link {
  display: block;
  font-size: 12px;
  color: var(--text);
  padding: 2px 0;
  transition: color .15s, padding-left .15s;
}
.dept-col-link:hover { color: var(--primary); padding-left: 4px; }

/* Drawer sub-title nivel 2 */
.drawer-sub-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px 2px;
  letter-spacing: .5px;
}


/* Main nav links */
.nav-links { display: flex; align-items: center; flex: 1; padding-left: 4px; }
.nav-links > li { height: 100%; position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--primary); }
.nav-links > li > a.highlight { color: var(--primary); }
.nav-links > li > a .chevron { font-size: 9px; margin-top: 1px; }

/* Mega menu */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  z-index: 400;
  min-width: 520px;
  padding: 20px 24px;
}
.nav-links > li:hover .mega-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mega-group h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.mega-group a {
  display: block;
  padding: 5px 0;
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition), padding-left var(--transition);
}
.mega-group a:hover { color: var(--primary); padding-left: 6px; }

/* Hotline */
.nav-hotline {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 4px;
}
.nav-hotline strong { color: var(--dark); }
.nav-hotline i { color: var(--primary); }

/* ============================================================
   MOBILE MENU DRAWER
   ============================================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
}
.mobile-overlay.open { display: block; }
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 82vw;
  max-width: 320px;
  height: 100%;
  background: var(--white);
  z-index: 1000;
  overflow-y: auto;
  transition: left .3s ease;
  box-shadow: var(--shadow-lg);
}
.mobile-drawer.open { left: 0; }
.drawer-head {
  background: var(--primary);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-head .logo-text { font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.drawer-close { font-size: 22px; color: rgba(255,255,255,.8); transition: color var(--transition); }
.drawer-close:hover { color: #fff; }
.drawer-nav { padding: 8px 0; }
.drawer-nav a, .drawer-nav button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid #f5f5f5;
  transition: background var(--transition), color var(--transition);
  text-align: left;
}
.drawer-nav a:hover, .drawer-nav button:hover { background: var(--primary-light); color: var(--primary); }
.drawer-nav a i, .drawer-nav button i { width: 18px; color: var(--primary); font-size: 15px; }
.drawer-nav .arrow { margin-left: auto; font-size: 10px; color: #ccc; transition: transform var(--transition); }
.drawer-nav .arrow.open { transform: rotate(180deg); }
.drawer-submenu { display: none; background: #fafafa; }
.drawer-submenu.open { display: block; }
.drawer-submenu a { padding-left: 48px; font-size: 12px; color: var(--text-muted); border-bottom-color: transparent; }
.drawer-divider { height: 6px; background: var(--bg); }

/* ============================================================
   HERO / SLIDER SECTION
   ============================================================ */
.hero-section { background: var(--bg); }
.hero-inner {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .hero-inner { padding: 20px 0; }
}

/* Slider — full width */
.hero-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #e8e8e8;
  min-height: 260px;
}
@media (min-width: 768px) { .hero-slider { min-height: 440px; } }
@media (min-width: 1024px) { .hero-slider { min-height: 480px; } }

.slide {
  display: none;
  position: relative;
  min-height: 260px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) { .slide { min-height: 440px; } }
@media (min-width: 1024px) { .slide { min-height: 480px; } }

.slide.active { display: flex; align-items: center; animation: slideIn .5s ease; }
@keyframes slideIn { from { opacity: 0; transform: translateX(15px); } to { opacity: 1; transform: translateX(0); } }

.slide-content {
  position: relative;
  z-index: 2;
  padding: 32px 40px;
  max-width: 540px;
}
@media (min-width: 768px) { .slide-content { padding: 48px 60px; } }

.slide-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.slide-title { font-family: var(--font-display); font-weight: 800; font-size: 36px; line-height: 1.1; color: #fff; margin-bottom: 8px; }
@media (min-width: 768px) { .slide-title { font-size: 56px; } }
.slide-sub { color: rgba(255,255,255,.8); font-size: 14px; margin-bottom: 20px; max-width: 380px; }
.slide-discount { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.15); color: #fff; padding: 5px 14px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 16px rgba(249,115,22,.4);
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 8px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Slider controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition);
  font-size: 12px;
}
.slider-arrow:hover { background: var(--white); color: var(--primary); }
.slider-arrow.prev { left: 12px; }
.slider-arrow.next { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.slider-dot.active { background: var(--white); width: 24px; }

/* ============================================================
   FEATURES BAR
   ============================================================ */
.features-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(4,1fr); } }
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.feature-item:hover { background: var(--primary-light); }
.feature-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.feature-item:hover .feature-icon { background: var(--primary); }
.feature-icon i { font-size: 18px; color: var(--primary); transition: color var(--transition); }
.feature-item:hover .feature-icon i { color: #fff; }
.feature-title { font-weight: 700; font-size: 13px; }
.feature-sub { font-size: 11px; color: var(--text-muted); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.section-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--dark); }
@media (min-width: 768px) { .section-title { font-size: 26px; } }
.section-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.section-link:hover { gap: 8px; color: var(--primary-dark); }

/* Tabs */
.section-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tab-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: #f0f0f0;
  color: var(--text-muted);
  transition: all var(--transition);
}
.tab-btn:hover, .tab-btn.active { background: var(--primary); color: #fff; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */

/* ============================================================
   CATEGORIES — responsive, toate ecranele
   ============================================================ */
.categories-section { padding: 28px 0 36px; background: var(--bg); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px) { .categories-grid { gap: 12px; } }
@media (min-width: 768px) { .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; } }

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 14px;
  padding: 16px;
  color: #fff;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 130px;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}
@media (min-width: 480px) { .category-card { min-height: 150px; padding: 18px; } }
@media (min-width: 768px) { .category-card { min-height: 175px; padding: 22px; } }
@media (min-width: 1024px){ .category-card { min-height: 190px; } }

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}
.category-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.22); }

.category-card-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  flex-shrink: 0;
}
@media (min-width: 768px) { .category-card-icon { width: 52px; height: 52px; font-size: 24px; margin-bottom: 14px; } }

.category-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 480px) { .category-card h3 { font-size: 15px; } }
@media (min-width: 768px) { .category-card h3 { font-size: 18px; } }

.category-card p {
  font-size: 11px;
  opacity: .75;
  margin-top: 3px;
  line-height: 1.3;
}
@media (min-width: 768px) { .category-card p { font-size: 12px; margin-top: 5px; } }

.category-card-count {
  font-size: 10px;
  font-weight: 700;
  background: rgba(255,255,255,.22);
  border-radius: 20px;
  padding: 3px 9px;
  display: inline-block;
  margin-top: 8px;
  width: fit-content;
}
@media (min-width: 768px) { .category-card-count { font-size: 11px; } }

.cat-bg-1 { background: linear-gradient(145deg, #f97316 0%, #dc2626 100%); }
.cat-bg-2 { background: linear-gradient(145deg, #475569 0%, #1e293b 100%); }
.cat-bg-3 { background: linear-gradient(145deg, #eab308 0%, #ea580c 100%); }
.cat-bg-4 { background: linear-gradient(145deg, #0d9488 0%, #0369a1 100%); }

/* ============================================================
   DEALS / PRODUCT CARDS
   ============================================================ */
.deals-section { padding: 32px 0; background: var(--white); }
.featured-section { padding: 32px 0; }

/* Countdown */
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a1a2e;
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
}
.countdown-wrap i { color: var(--primary); font-size: 11px; }
.countdown-sep { color: var(--primary); font-weight: 900; }
.countdown-digit { font-family: monospace; font-size: 14px; font-weight: 700; min-width: 20px; text-align: center; }

/* Products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 480px)  { .products-grid { gap: 12px; } }
@media (min-width: 640px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
@media (min-width: 1200px) { .products-grid { grid-template-columns: repeat(5, 1fr); } } }
@media (min-width: 900px)  { .products-grid { grid-template-columns: repeat(4,1fr); } }
@media (min-width: 1100px) { .products-grid { grid-template-columns: repeat(5,1fr); } }

/* Product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: #f0a070; }
.product-thumb {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.07); }
.product-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  z-index: 2;
}
.product-actions {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
.action-btn {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  color: #555;
  transition: background var(--transition), color var(--transition);
}
.action-btn:hover { background: var(--primary); color: #fff; }

/* Product info */
.product-info { padding: 12px; }
.product-cat { font-size: 10px; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.product-brand { font-size: 10px; color: var(--text-muted); margin-bottom: 3px; }
.product-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 6px;
  transition: color var(--transition);
}
.product-card:hover .product-name { color: var(--primary); }
.product-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 6px; }
.product-stars i { font-size: 10px; }
.product-stars span { font-size: 10px; color: var(--text-muted); margin-left: 3px; }
.product-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price-current { font-size: 15px; font-weight: 800; color: var(--primary); }
.price-old { font-size: 11px; color: var(--text-muted); text-decoration: line-through; }

/* Progress bar (sold indicator) */
.product-sold { margin-top: 6px; }
.sold-bar-track { height: 4px; background: #eee; border-radius: 2px; overflow: hidden; }
.sold-bar-fill { height: 100%; background: var(--primary); border-radius: 2px; }
.sold-text { font-size: 10px; color: var(--text-muted); margin-top: 3px; }

/* ============================================================
   PROMO BANNERS
   ============================================================ */
.promo-banners { padding: 20px 0; }
.promo-grid {
  display: grid;
  gap: 12px;
}
@media (min-width: 768px) { .promo-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
.promo-card {
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 130px;
  transition: box-shadow var(--transition);
}
.promo-card:hover { box-shadow: var(--shadow-lg); }
.promo-card .promo-text { position: relative; z-index: 2; }
.promo-card .promo-tag { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.promo-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
@media (min-width: 768px) { .promo-card h3 { font-size: 26px; } }
.promo-card p { font-size: 12px; margin-bottom: 12px; opacity: .8; }
.promo-bg-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 80px;
  opacity: .12;
  z-index: 1;
}
.promo-orange { background: linear-gradient(135deg, #fbbf24, #f97316); color: #fff; }
.promo-dark   { background: linear-gradient(135deg, #374151, #111827); color: #fff; }
.promo-orange .promo-tag { color: #92400e; }
.promo-dark .promo-tag { color: var(--primary); }
.btn-promo-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  transition: all var(--transition);
}
.btn-promo-white:hover { background: var(--dark); color: #fff; }
.btn-promo-orange {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  transition: background var(--transition);
}
.btn-promo-orange:hover { background: var(--primary-dark); }

/* ============================================================
   BRANDS STRIP
   ============================================================ */
.brands-section { padding: 28px 0; background: var(--white); border-top: 1px solid var(--border); }
.brands-title { text-align: center; font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-muted); margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; }
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.brand-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.brand-chip:hover { background: var(--white); border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary-dark), #c2450a);
  padding: 48px 0;
  text-align: center;
  color: #fff;
}
.newsletter-section .icon { font-size: 32px; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.newsletter-section h2 { font-family: var(--font-display); font-size: 28px; font-weight: 800; margin-bottom: 6px; }
@media (min-width: 768px) { .newsletter-section h2 { font-size: 36px; } }
.newsletter-section p { color: rgba(255,255,255,.75); margin-bottom: 20px; font-size: 14px; }
.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  border: none;
  outline: none;
}
.newsletter-form button {
  background: #fff;
  color: var(--primary);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.newsletter-form button:hover { background: var(--dark); color: #fff; }
.newsletter-note { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 10px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #111827; color: #9ca3af; }
.footer-body { padding: 20px 20px 20px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand { grid-column: 1 / -1; }
@media (min-width: 768px) { .footer-brand { grid-column: auto; } }
.footer-logo { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-logo span { color: var(--primary); }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 34px;
  height: 34px;
  background: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #9ca3af;
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--primary); color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1f2937;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a {
  font-size: 12px;
  color: #9ca3af;
  transition: color var(--transition), padding-left var(--transition);
  display: block;
}
.footer-col a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 12px; }
.footer-contact-item i { color: var(--primary); font-size: 13px; margin-top: 2px; flex-shrink: 0; width: 16px; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: #9ca3af; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ============================================================
   CATEGORY BLOCKS — layout exact ca în screenshot
   sidebar | banner | 2×3 grid produse
   ============================================================ */

.cat-block-section {
  padding: 28px 0;
  background: var(--white);
}
.cat-block-alt {
  background: var(--bg);
}
.cat-block-section + .cat-block-section {
  border-top: 1px solid var(--border);
}

/* Main grid: sidebar(1) + banner(1.2) + products(3) */
.cat-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
@media (min-width: 640px) {
  .cat-block {
    grid-template-columns: 180px 1fr;
    grid-template-rows: auto;
  }
  .cat-block-sidebar  { grid-column: 1; grid-row: 1; }
  .cat-block-banner   { grid-column: 2; grid-row: 1; }
  .cat-block-grid     { grid-column: 1 / -1; grid-row: 2; border-top: 1px solid var(--border); }
}
@media (min-width: 900px) {
  .cat-block {
    grid-template-columns: 180px minmax(200px, 240px) 1fr;
    grid-template-rows: 1fr;
  }
  .cat-block-sidebar  { grid-column: 1; grid-row: 1; }
  .cat-block-banner   { grid-column: 2; grid-row: 1; }
  .cat-block-grid     { grid-column: 3; grid-row: 1; border-top: none; border-left: 1px solid var(--border); }
}

/* ── Sidebar ── */
.cat-block-sidebar {
  background: #fafafa;
  border-right: 1px solid var(--border);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
}
.cat-block-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}
.cat-block-links {
  flex: 1;
  list-style: none;
}
.cat-block-links li + li {
  border-top: 1px solid #f0f0f0;
}
.cat-block-links a {
  display: block;
  padding: 7px 0;
  font-size: 12.5px;
  color: #555;
  transition: color var(--transition), padding-left var(--transition);
}
.cat-block-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}
.cat-block-viewall {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
}
.cat-block-viewall:hover { color: var(--primary); }

/* ── Banner ── */
.cat-block-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  text-decoration: none;
}
@media (min-width: 900px) { .cat-block-banner { min-height: unset; } }
.cat-block-banner-content {
  position: relative;
  z-index: 2;
  padding: 20px 20px 16px;
}
.cat-banner-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.7);
  margin-bottom: 4px;
}
.cat-banner-disc {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.cat-banner-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.cat-banner-title em {
  font-style: normal;
  color: var(--primary);
  font-size: 20px;
}
.cat-banner-btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 5px;
  transition: background var(--transition);
}
.cat-block-banner:hover .cat-banner-btn {
  background: var(--primary-dark);
}
.cat-banner-dots {
  position: absolute;
  bottom: 12px;
  right: 14px;
  display: flex;
  gap: 5px;
  z-index: 3;
}
.cat-banner-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background var(--transition);
}
.cat-banner-dots .dot.active { background: #fff; }

/* ── Products 2×3 grid ── */
.cat-block-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 640px) {
  .cat-block-grid { grid-template-columns: repeat(3, 1fr); }
}

/* cbp — vertical card identic cu product-card din deals */
.cbp {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: box-shadow var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}
.cbp:hover { box-shadow: var(--shadow-md); background: var(--white); z-index: 1; }
.cbp:nth-child(2n) { border-right: none; }
@media (min-width: 640px) {
  .cbp:nth-child(2n)   { border-right: 1px solid var(--border); }
  .cbp:nth-child(3n)   { border-right: none; }
  .cbp:nth-last-child(-n+3) { border-bottom: none; }
}
.cbp:nth-last-child(-n+2) { border-bottom: none; }

/* Thumbnail */
.cbp-img {
  position: relative;
  aspect-ratio: 1;
  background: #f8f8f8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.cbp-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .35s ease;
}
.cbp:hover .cbp-img img { transform: scale(1.07); }

/* Badge (sale / out of stock) */
.cbp-img-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.75);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 2;
}

/* Hover action buttons (like deals) */
.cbp-actions {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 3;
}
.cbp:hover .cbp-actions { opacity: 1; transform: translateY(0); }
.cbp-actions .action-btn {
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  font-size: 11px;
  color: #555;
  transition: background var(--transition), color var(--transition);
  border: none;
  cursor: pointer;
}
.cbp-actions .action-btn:hover { background: var(--primary); color: #fff; }

/* Info */
.cbp-info { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.cbp-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}
.cbp:hover .cbp-name { color: var(--primary); }
.cbp-stars { font-size: 11px; color: #f59e0b; }
.cbp-stars span { color: var(--text-muted); font-size: 10px; }
.cbp-price { font-size: 14px; font-weight: 800; color: var(--primary); margin-top: 2px; }

/* ============================================================
   AUTH PAGES (login, register)
   ============================================================ */
.auth-section { padding: 48px 16px; min-height: 70vh; display: flex; align-items: center; }
.auth-section .container { width: 100%; }
.auth-box {
  max-width: 440px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.auth-logo { text-align: center; margin-bottom: 20px; }
.auth-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; text-align: center; margin-bottom: 24px; color: var(--dark); }
.auth-box .form-group { margin-bottom: 16px; display: flex; flex-direction: column; gap: 5px; }
.auth-box .form-group label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.auth-box .form-group input {
  border: 1.5px solid var(--border); border-radius: 6px;
  padding: 11px 14px; font-size: 14px; font-family: var(--font-main);
  transition: border-color var(--transition);
}
.auth-box .form-group input:focus { outline: none; border-color: var(--primary); }
.input-password-wrap { position: relative; }
.input-password-wrap input { width: 100%; padding-right: 44px; }
.btn-toggle-pass {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--text-muted);
  font-size: 15px; padding: 4px;
}
.btn-toggle-pass:hover { color: var(--primary); }
.form-row-flex { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.link-forgot { font-size: 12px; color: var(--primary); }
.link-forgot:hover { text-decoration: underline; }
.btn-auth-submit {
  width: 100%; padding: 13px; background: var(--primary); color: #fff;
  border: none; border-radius: 6px; font-weight: 700; font-size: 15px;
  cursor: pointer; transition: background var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-auth-submit:hover { background: var(--primary-dark); }
.auth-switch { text-align: center; margin-top: 20px; font-size: 13px; color: var(--text-muted); }
.auth-switch a { color: var(--primary); font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }

/* ============================================================
   STATIC PAGES — layout comun
   ============================================================ */
.static-page-header { background: linear-gradient(135deg, var(--dark) 0%, #2d3748 100%); color: #fff; padding: 28px 0; }
.static-header-inner { display: flex; align-items: center; gap: 16px; }
.static-header-icon { width: 52px; height: 52px; background: rgba(249,115,22,.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); flex-shrink: 0; }
.static-header-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; }
.static-header-inner .breadcrumb a { color: rgba(255,255,255,.6); }
.static-header-inner .breadcrumb a:hover { color: #fff; }
.static-header-inner .bc-sep, .static-header-inner .bc-current { color: rgba(255,255,255,.5); }

.static-section { padding: 32px 0 56px; }
.static-layout { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .static-layout { grid-template-columns: 220px 1fr; } }

/* Sidebar nav */
.static-sidebar { align-self: start; position: sticky; top: 84px; }
.static-sidebar-nav { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.static-nav-link { display: flex; align-items: center; gap: 10px; padding: 11px 16px; font-size: 13px; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--border); transition: all var(--transition); }
.static-nav-link:last-child { border-bottom: none; }
.static-nav-link:hover { background: var(--primary-light); color: var(--primary); padding-left: 20px; }
.static-nav-link.active { background: var(--primary-light); color: var(--primary); font-weight: 700; border-left: 3px solid var(--primary); }
.static-nav-link i { width: 16px; font-size: 13px; color: var(--primary); }

/* Content */
.static-content {}
.static-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.static-card h2 { font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
.static-card h2 i { color: var(--primary); font-size: 16px; }
.static-card h3 { font-size: 15px; font-weight: 700; margin: 14px 0 6px; }
.static-card p { font-size: 14px; line-height: 1.7; color: var(--text); margin-bottom: 10px; }
.static-card p:last-child { margin-bottom: 0; }
.static-note { font-size: 12px; color: var(--text-muted); background: var(--bg); padding: 10px 14px; border-radius: 6px; border-left: 3px solid var(--primary); display: flex; align-items: flex-start; gap: 8px; margin: 12px 0 0; }
.highlight-green { color: #16a34a; font-weight: 700; }

.static-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 12px; }
.static-table th { padding: 9px 12px; background: var(--bg); font-weight: 700; text-align: left; border-bottom: 2px solid var(--border); font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.static-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.static-table tr:last-child td { border-bottom: none; }
.static-table tr:nth-child(even) td { background: #fafafa; }

.static-list { padding-left: 20px; font-size: 14px; line-height: 1.8; color: var(--text); }
.static-list li { margin-bottom: 4px; }

/* Delivery options */
.delivery-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.delivery-card { display: flex; align-items: flex-start; gap: 14px; padding: 14px; background: var(--bg); border-radius: var(--radius); }
.delivery-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.delivery-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.delivery-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.delivery-price { font-size: 14px; font-weight: 700; color: var(--primary); }
.delivery-price span { font-size: 11px; font-weight: 400; color: var(--text-muted); }
.delivery-free { font-size: 12px; font-weight: 600; color: #16a34a; display: flex; align-items: center; gap: 4px; margin-top: 2px; }

/* Steps */
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-item { display: flex; gap: 14px; align-items: flex-start; }
.step-num { width: 30px; height: 30px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px; flex-shrink: 0; margin-top: 2px; }
.step-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.step-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Payment methods */
.payment-methods-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.payment-method-item { display: flex; align-items: center; gap: 10px; padding: 12px; background: var(--bg); border-radius: 6px; font-size: 13px; font-weight: 600; }
.payment-method-item i { color: var(--primary); font-size: 18px; width: 24px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 0; background: none; border: none; text-align: left; font-size: 14px; font-weight: 600; cursor: pointer; gap: 12px; color: var(--text); transition: color var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 12px; color: var(--text-muted); flex-shrink: 0; transition: transform .25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { font-size: 13px; color: var(--text-muted); line-height: 1.7; padding: 0 0 14px; }

.cbp-badge {
  position: absolute; top: 6px; left: 6px;
  background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 7px; border-radius: 4px;
}
.cbp-price-old {
  font-size: 11px; color: var(--text-muted);
  text-decoration: line-through; margin-left: 4px;
}

/* ── Static page DB content ──────────────────────────────── */
.static-db-content { font-size: 15px; line-height: 1.8; color: var(--text); }
.static-db-content h1,.static-db-content h2,.static-db-content h3 { color: var(--heading); margin: 24px 0 12px; }
.static-db-content h2 { font-size: 20px; border-bottom: 2px solid var(--border); padding-bottom: 8px; }
.static-db-content h3 { font-size: 17px; }
.static-db-content p { margin-bottom: 14px; }
.static-db-content ul,.static-db-content ol { padding-left: 22px; margin-bottom: 14px; }
.static-db-content li { margin-bottom: 6px; }
.static-db-content table { width: 100%; border-collapse: collapse; margin-bottom: 16px; }
.static-db-content table th,.static-db-content table td { padding: 8px 12px; border: 1px solid var(--border); font-size: 14px; }
.static-db-content table th { background: #f8f9fa; font-weight: 700; }
.static-db-content img { max-width: 100%; border-radius: 6px; margin: 12px 0; }
.static-db-content a { color: var(--primary); }
.static-db-content blockquote { border-left: 4px solid var(--primary); padding: 10px 16px; margin: 16px 0; background: var(--primary-light); border-radius: 0 6px 6px 0; color: var(--text); }
