/*
Theme Name: Sokha Phone Shop
Theme URI: https://sokhaphoneshop.com
Author: Sokha Phone Shop
Description: Official WordPress theme for Sokha Phone Shop — modern Cambodian electronics retailer. WooCommerce-ready, fully responsive, pixel-perfect match to v3 HTML design.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sokha-phone-shop
Tags: e-commerce, woocommerce, responsive, custom-logo, custom-menu, translation-ready
*/

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --orange:    #f26522;
  --orange-dk: #d94f0a;
  --orange-lt: #fff3ed;
  --blue-bar:  #cce6ff;
  --blue-text: #0055cc;
  --footer-bg: #1e1b16;
  --footer-div:#2e2b25;
  --border:    #e8e8e8;
  --muted:     #6b7280;
  --text:      #1a1a1a;
  --card:      #f0f0f0;
  --white:     #fff;
  --bg:        #f5f5f5;
  --radius:    10px;
  --shadow:    0 2px 8px rgba(0,0,0,.07);
}

/* ═══════════════════════════════════════════════════════
   RESET / BASE
═══════════════════════════════════════════════════════ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', 'Kantumruy Pro', sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 400;
}
a { text-decoration: none; color: inherit; transition: color .2s; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════════
   TOPBAR
═══════════════════════════════════════════════════════ */
.topbar { background: var(--orange); padding: 7px 0; font-size: 12px; color: #fff; }
.topbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.topbar-left a, .topbar-right a, .topbar-right span {
  color: #fff; font-size: 12px; display: flex; align-items: center; gap: 5px; opacity: .9;
}
.topbar-left a:hover, .topbar-right a:hover { opacity: 1; }
.tb-sep     { opacity: .35; font-size: 10px; }
.tb-dot     { opacity: .4;  font-size: 8px; margin: 0 2px; }
.tb-chevron { font-size: 9px; }

/* ═══════════════════════════════════════════════════════
   STICKY HEADER WRAPPER (header + announce bar together)
═══════════════════════════════════════════════════════ */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

/* ═══════════════════════════════════════════════════════
   SITE HEADER
═══════════════════════════════════════════════════════ */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 16px;
}

/* Real logo image */
.sk-real-logo { height: 54px; width: auto; display: block; }
.sk-logo .sk-real-logo { height: 54px; }
.sk-logo { display: flex; align-items: center; flex-shrink: 0; }

/* Fallback CSS badge (used if no logo uploaded) */
.logo-badge {
  width: 56px; height: 56px; background: var(--orange); border-radius: 12px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1;
}
.logo-kh { font-size: 9px; color: rgba(255,255,255,.8); font-weight: 700; margin-bottom: 1px; }
.logo-sk { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -2px; text-shadow: 2px 2px 0 rgba(0,0,0,.2); }
.logo-text strong { display: block; font-size: 14px; font-weight: 800; color: var(--orange); }
.logo-text span   { font-size: 11px; color: var(--muted); }

/* Primary Nav */
.primary-nav { flex: 1; display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 3px;
  padding: 10px 11px; font-size: 13px; font-weight: 500; color: #2d2d2d;
  letter-spacing: 0.02em; white-space: nowrap;
  border-bottom: 2.5px solid transparent; transition: color .2s, border-color .2s;
}
.nav-menu > li > a .arrow { font-size: 8px; opacity: .6; }
.nav-menu > li:hover > a,
.nav-menu > li.current-menu-item > a { color: var(--orange); border-bottom-color: var(--orange); }
.nav-menu > li > .sub-menu {
  position: absolute; top: calc(100% + 2px); left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  min-width: 160px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 400; padding: 4px 0; display: none;
}
.nav-menu > li:hover > .sub-menu { display: block; }
.sub-menu li a {
  display: block; padding: 9px 16px; font-size: 13px; color: #333;
  border-bottom: 1px solid #f0f0f0; transition: background .15s, color .15s;
}
.sub-menu li:last-child a { border: none; }
.sub-menu li a:hover { background: var(--orange-lt); color: var(--orange); }

/* Search */
.header-search {
  display: flex; border: 1.5px solid var(--border); border-radius: 6px;
  overflow: hidden; transition: border-color .2s; flex-shrink: 0;
}
.header-search:focus-within { border-color: var(--orange); }
.header-search input {
  padding: 8px 14px; border: none; outline: none;
  font-size: 13px; font-family: inherit; width: 200px; background: #fff; color: var(--text);
}
.header-search input::placeholder { color: #bbb; }
.header-search button {
  background: #fff; border: none; padding: 0 14px;
  color: var(--muted); font-size: 14px; border-left: 1px solid var(--border); transition: color .2s;
}
.header-search button:hover { color: var(--orange); }

/* ═══════════════════════════════════════════════════════
   ANNOUNCE BAR  (animated zoom)
═══════════════════════════════════════════════════════ */
@keyframes textZoom {
  0%   { transform: scale(1);    letter-spacing: 0.01em; }
  45%  { transform: scale(1.07); letter-spacing: 0.05em; }
  55%  { transform: scale(1.07); letter-spacing: 0.05em; }
  100% { transform: scale(1);    letter-spacing: 0.01em; }
}
.announce-bar {
  background: #cce6ff;
  padding: 13px 20px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid #a8d4f5;
}
.announce-inner { max-width: 1280px; margin: 0 auto; }
.announce-text {
  font-size: 17px; font-weight: 800; color: #0055cc;
  display: inline-block;
  animation: textZoom 2.8s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
  white-space: nowrap;
}
.announce-text em { color: #0055cc; font-style: normal; font-weight: 800; }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  max-width: 1280px; margin: 18px auto 0; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 380px; gap: 16px; align-items: stretch;
}
/* Hero slider = the one hero banner; photos stack inside it */
.hero-slider {
  border-radius: var(--radius);
  overflow: hidden !important;
  position: relative;
  height: 500px !important;
  background: #f5f5f5;
  display: block;
}
.hero-slider.hero-slide--light { background: #f5f5f5; }
.hero-slider.hero-slide--dark  { background: #1a1a2e; }

/* Each photo fills the slider exactly via absolute positioning */
.hero-photo {
  position: absolute !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  width: 100% !important; height: 100% !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
  z-index: 1;
  overflow: hidden;
}
.hero-photo.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  display: block;
  max-width: none !important;
}

/* Dots & arrows float above photos */
.slider-dots   { z-index: 10; }
.slider-arrows { z-index: 10; }

/* Slider dots + arrows */
.slider-dots { position: absolute; bottom: 10px; left: 14px; display: flex; gap: 5px; z-index: 4; }
.slider-dot {
  width: 18px; height: 4px; border-radius: 3px;
  background: rgba(255,255,255,.55); cursor: pointer; transition: background .2s, width .2s;
}
.slider-dot.active { background: var(--orange); width: 28px; }
.slider-arrows { position: absolute; bottom: 6px; right: 10px; display: flex; gap: 5px; z-index: 4; }
.slider-arrow {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.88); display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: #444; cursor: pointer;
  border: 1px solid rgba(0,0,0,.10); transition: all .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.slider-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Side panels — two stacked cards beside the hero slider */
.hero-panels {
  display: flex; flex-direction: column; gap: 16px; flex-shrink: 0;
}
.hero-panel {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--border); flex: 1;
  display: grid; grid-template-columns: 1fr 140px;
  align-items: stretch; overflow: hidden; min-height: 0;
}
.hero-panel--img { padding: 0; }

/* Left text: label + title + button */
.panel-content {
  padding: 20px 10px 20px 22px;
  display: flex; flex-direction: column; justify-content: center;
  min-width: 0;
}
.panel-content .panel-label {
  font-size: 18px; font-weight: 900; font-style: italic;
  color: var(--orange); line-height: 1.1; margin-bottom: 2px;
}
.panel-content .panel-title {
  font-size: 18px; font-weight: 900; color: #111;
  line-height: 1.1; margin-bottom: 14px;
}
.panel-btn {
  display: inline-flex; align-items: center; padding: 6px 12px;
  background: transparent;
  border: 1.5px solid var(--orange); border-radius: 6px;
  font-size: 11px; font-weight: 600; color: var(--orange);
  white-space: nowrap; align-self: flex-start;
  transition: border-color .2s, color .2s, background .2s;
  text-decoration: none;
}
.panel-btn:hover {
  background: var(--orange); color: #fff;
}

/* Right image — fixed 140px column, image contained */
.panel-real-img {
  width: 140px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #f5f5f5;
}
.panel-real-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   BRANDS GRID — flex with fixed pill width, all rows centred
═══════════════════════════════════════════════════════ */
.brands-section {
  background: var(--white);
  margin-top: 24px;
  padding: 20px 0 28px;
}
.brands-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* flex + justify-content:center → last row is also centred */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
}

/* Fixed width so every pill is identical — 8 per row on 1280px */
.brand-pill {
  flex: 0 0 auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  text-decoration: none;
  overflow: visible;
  box-sizing: border-box;
  transition: opacity .18s;
}
.brand-pill:hover {
  opacity: .8;
  text-decoration: none;
}

/* Logo fills the cell */
.brand-pill img, .brand-pill-img { border-radius:2px; min-height:auto; width:auto; height:auto; max-height:56px; max-width:140px; display:block; object-fit:contain; }

/* Fallback text */
.brand-pill-name {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Tablet */
@media (max-width: 960px) {
  .brand-pill     { flex: 0 0 130px; height: 56px; padding: 0; }
  .brand-pill img, .brand-pill-img { border-radius:2px; min-height:auto; width:auto; height:auto; max-height:56px; max-width:140px; display:block; object-fit:contain; }
}
/* Mobile: 4 columns, taller cells, generous padding */
@media (max-width: 600px) {
  .brands-section { padding: 14px 0 20px; margin-top: 14px; }
  .brands-inner   { padding: 0 12px; }
  .brands-grid    { gap: 3px; }
  .brand-pill     { flex: 0 0 calc(25% - 6px); height: 56px; padding: 0; border-radius: 8px; }
  .brand-pill img, .brand-pill-img { border-radius:2px; min-height:auto; width:auto; height:auto; max-height:56px; max-width:140px; display:block; object-fit:contain; }
}

/* ═══════════════════════════════════════════════════════
   PRODUCT SECTIONS
═══════════════════════════════════════════════════════ */
.section { max-width: 1280px; margin: 36px auto 0; padding: 0 20px; }
.section-full { background: var(--white); }
.section-full .section-inner { max-width: 1280px; margin: 0 auto; padding: 28px 20px; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 10px;
}
.section-accent { display: none; }  /* removed — accent labels hidden site-wide */
.section-title {
  font-size: 32px; font-weight: 800; color: #1a1a5e;
  letter-spacing: 1px; padding-left: 0; text-transform: uppercase;
  line-height: 1.15;
  font-family: 'Montserrat', 'Kantumruy Pro', sans-serif;
}
/* Orange dash removed */
.section-left .section-title::before,
.section-head > div .section-title::before,
.section-title::before {
  display: none !important;
  content: none !important;
  background: none !important;
}
p.section-sub {
  font-size: 120%; color: #333; margin-top: 6px;
  letter-spacing: 0; line-height: 1.6;
  text-transform: none !important; font-weight: 450;
  font-style: normal;
  font-family: 'Roboto', 'Kantumruy Pro', sans-serif;
}
.section-link  { display: flex; align-items: center; gap: 5px; color: var(--orange); font-size: 13px; font-weight: 600; transition: gap .2s; }
.section-link:hover { gap: 9px; }

/* Product grid */
.product-grid   { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
.product-grid-6 { grid-template-columns: repeat(6, 1fr); }

.product-card {
  background: var(--card); border-radius: 10px; overflow: hidden;
  border: 1px solid transparent; transition: border-color .22s, box-shadow .22s, transform .22s; cursor: pointer;
}
.product-card:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(242,101,34,.14); transform: translateY(-3px); }
.product-img {
  aspect-ratio: 1/1; background: var(--card);
  display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 10px;
}
.product-img img { width: 80%; height: 80%; object-fit: contain; display: block; margin: auto; }

/* CSS phone colour blocks (fallback when no image) */
.phone-img    { width: 70%; height: 80%; border-radius: 16px; position: relative; }
.phone-gold       { background: linear-gradient(135deg,#f5c842 0%,#e8a800 50%,#f9e07a 100%); }
.phone-graphite   { background: linear-gradient(135deg,#4a4a4a 0%,#2d2d2d 50%,#5e5e5e 100%); }
.phone-purple     { background: linear-gradient(135deg,#9b59b6 0%,#8e44ad 50%,#a569bd 100%); }
.phone-pink       { background: radial-gradient(circle at 30% 30%,#f48fb1,#e91e8c,#9c27b0); }
.phone-blue       { background: linear-gradient(135deg,#2196f3 0%,#1565c0 50%,#42a5f5 100%); }
.phone-white      { background: linear-gradient(135deg,#f5f5f5 0%,#e0e0e0 50%,#fff 100%); }
.phone-dark       { background: linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%); }
.phone-green      { background: linear-gradient(135deg,#4caf50 0%,#2e7d32 50%,#66bb6a 100%); }
.phone-silver     { background: linear-gradient(135deg,#bdbdbd 0%,#9e9e9e 50%,#e0e0e0 100%); }
.phone-rose       { background: linear-gradient(135deg,#e91e63 0%,#c2185b 50%,#f06292 100%); }

.product-info  { padding: 10px 12px 12px; }
.product-name  { font-size: 12px; font-weight: 500; color: #1a1a1a; margin-bottom: 5px; line-height: 1.4; letter-spacing: 0.01em; }
.product-price { font-size: 13px; font-weight: 700; color: var(--orange); letter-spacing: 0.01em; }
.product-price del { color: var(--muted); font-size: 11px; font-weight: 400; margin-left: 4px; }

/* More button */
.more-wrap { text-align: center; margin-top: 18px; }
.more-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 28px; border: 1.5px solid var(--orange); border-radius: 8px;
  color: var(--orange); font-weight: 700; font-size: 13px; transition: all .2s;
}
.more-btn:hover { background: var(--orange); color: #fff; }

/* ═══════════════════════════════════════════════════════
   ACCESSORIES CARDS  (white bg + SVG illustrations)
═══════════════════════════════════════════════════════ */
.acc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  transition: border-color .22s, box-shadow .22s, transform .22s; cursor: pointer;
}
.acc-card:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(242,101,34,.13); transform: translateY(-3px); }
.acc-img {
  aspect-ratio: 1/1; background: #fff;
  display: flex; align-items: center; justify-content: center; padding: 18px; position: relative;
}
.acc-img svg { width: 75%; height: 75%; display: block; }
.acc-info { padding: 10px 14px 14px; border-top: 1px solid #f0f0f0; }
.acc-name  { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.3; text-align: center; }
.acc-price { font-size: 13px; font-weight: 800; color: var(--orange); text-align: center; }
.acc-price del { color: var(--muted); font-weight: 400; font-size: 11px; margin-left: 4px; }

/* ═══════════════════════════════════════════════════════
   BRAND STRIP  (scrollable tiles with icon + label)
═══════════════════════════════════════════════════════ */
.brand-strip { background: #fff; padding: 24px 0; margin-top: 32px; overflow: hidden; }
.brand-strip-inner { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.brand-strip-scroll {
  display: flex; gap: 10px; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.brand-strip-scroll::-webkit-scrollbar { display: none; }
a.brand-tile { text-decoration:none; color:inherit; }
a.brand-tile:hover { text-decoration:none; }
.brand-tile {
  flex: 0 0 130px; display: flex; flex-direction: column; align-items: center;
  gap: 10px; padding: 16px 12px;
  background: #efefef;
  border-radius: 12px;
  border: none;
  cursor: pointer; transition: background .2s, transform .15s;
}
.brand-tile:hover { background: #e2e2e2; transform: translateY(-2px); }
.brand-tile-logo {
  height: 44px; display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: #111;
}
.brand-tile-name { font-size: 12px; color: #111111; font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.faq-section { max-width: 1280px; margin: 48px auto 0; padding: 0 20px 48px; }
.faq-head    { margin-bottom: 28px; }
.faq-accent  { display: none; }
.faq-title   { font-size: 26px; font-weight: 900; color: #111; letter-spacing: -.3px; }
.faq-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}
.faq-row:first-child { border-top: 1px solid var(--border); }
.faq-q, .faq-a { padding: 18px 0; font-size: 13px; line-height: 1.65; }
.faq-q { font-weight: 600; color: var(--text); padding-right: 40px; }
.faq-a { color: #555; padding-left: 20px; border-left: 1px solid var(--border); }
.faq-a a { color: var(--orange); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   TRUST FEATURES ROW
═══════════════════════════════════════════════════════ */
.features-row {
  max-width: 1280px; margin: 0 auto; padding: 36px 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  border-top: 1px solid var(--border);
}
.feat-ico {
  width: 48px; height: 48px; border-radius: 10px;
  border: 1.5px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--orange); margin-bottom: 14px;
}
.feat-title { font-size: 15px; font-weight: 800; color: #111; margin-bottom: 8px; }
.feat-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer { background: var(--footer-bg); color: #9ca3af; margin-top: 48px; font-family: 'Roboto', 'Kantumruy Pro', sans-serif; }

/* Footer logo — fire gradient SK */
.footer-top { text-align: center; padding: 36px 20px 24px; }
.footer-logo { margin-bottom: 16px; display: flex; justify-content: center; align-items: center; }
.footer-logo .sk-real-logo { height: 80px; width: auto; display: block; filter: drop-shadow(0 4px 18px rgba(242,101,34,.4)); }

/* Fallback: fire SK text */
.sk-fire-logo { display: inline-flex; flex-direction: column; align-items: center; line-height: 1; margin-bottom: 4px; }
.sk-fire-kh { font-size: 13px; font-weight: 700; color: #f59e0b; margin-bottom: 4px; }
.sk-fire-sk {
  font-size: 64px; font-weight: 900; letter-spacing: -5px; line-height: .85;
  background: linear-gradient(180deg,#fff700 0%,#ff8c00 35%,#e83000 70%,#8b0000 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(2px 3px 0 rgba(200,68,0,.5));
}

.footer-svc-label {
  font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: underline; text-underline-offset: 4px; margin-bottom: 20px;
}
.footer-svc-row { display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.footer-svc-row a { color: #fff; font-size: 15px; font-weight: 600; transition: color .2s; }
.footer-svc-row a:hover { color: var(--orange); }

.footer-divider { border: none; border-top: 1px solid var(--footer-div); margin: 0 24px; }

/* Footer grid */
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  max-width: 1280px; margin: 0 auto; padding: 32px 24px;
}
.fcol-title { font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.fcol-list  { display: flex; flex-direction: column; gap: 12px; }
.fcol-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: #888; line-height: 1.6; }
.fcol-list li i { color: #999; margin-top: 3px; flex-shrink: 0; width: 14px; font-size: 13px; }
.fcol-list li a { color: #888; }
.fcol-list li a:hover { color: var(--orange); }
.cat-list a { font-size: 13px; color: #888; }
.cat-list a:hover { color: var(--orange); }
.cat-list   { display: flex; flex-direction: column; gap: 10px; }
.social-list { display: flex; flex-direction: column; gap: 12px; }
.social-list a { display: flex; align-items: center; gap: 11px; font-size: 13px; color: #888; }
.social-list a:hover { color: #fff; }
.soc-ico { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; color: #fff; }
.soc-fb  { background: #1877f2; }
.soc-tt  { background: #010101; }
.soc-ig  { background: radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%); }
.soc-tg  { background: #29a9ea; }

/* Payment logos — SVG fills badge edge-to-edge, rounded corners, no white card */
.footer-pay   { text-align: center; padding: 22px 20px 28px; }
.pay-label    {
  font-size: 12px; font-weight: 500; color: #aaa;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px;
}
.pay-logos    {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; flex-wrap: wrap; padding: 0 12px;
}
.pay-item {
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  overflow: hidden;
  background: transparent;
  flex-shrink: 0;
}
.pay-logos img {
  max-height: 32px;
  width: auto;
  display: block;
  border-radius: 3px;
}

.footer-copy { text-align: center; padding: 13px 20px; font-size: 12px; color: #ccc; background: #2a2118; }

/* ═══════════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════════ */
#scrollTop {
  position: fixed; bottom: 24px; right: 20px; width: 40px; height: 40px;
  border-radius: 50%; background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  z-index: 200; box-shadow: 0 4px 14px rgba(242,101,34,.45);
  opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s;
  pointer-events: none; cursor: pointer;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { background: var(--orange-dk); }

/* ═══════════════════════════════════════════════════════
   MOBILE HEADER  (≤ 960px)
═══════════════════════════════════════════════════════ */
.mobile-header {
  display: none;
  position: sticky; top: 0; z-index: 500;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: 0 2px 6px rgba(0,0,0,.07);
}
.mh-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  min-height: 68px;
}

/* Logo — fixed, never shrinks */
.mh-logo { flex: 0 0 auto; }
.mh-logo .sk-real-logo { height: 42px; width: auto; display: block; }

/* Center ticker — takes remaining space, clips overflow */
.mh-ticker {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  text-align: center;
  padding: 2px 4px;
}
.mh-ticker-text {
  font-size: 10.5px;
  font-weight: 600;
  color: #0044cc;
  line-height: 1.55;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Icons — fixed right, never shrinks or wraps */
.mh-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 2px; }
.mh-icon {
  width: 38px; height: 38px; border-radius: 8px; border: none;
  background: none; display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #333; cursor: pointer;
  transition: background .2s, color .2s;
}
.mh-icon:hover { background: var(--orange-lt); color: var(--orange); }

/* Search expand */
.mh-search { display: none; padding: 6px 12px 10px; background: #fff; }
.mh-search.open { display: block; }
.mh-search form {
  display: flex; border: 1.5px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.mh-search input {
  flex: 1; padding: 10px 12px; border: none; outline: none;
  font-size: 14px; font-family: inherit;
}
.mh-search button {
  background: var(--orange); color: #fff; border: none;
  padding: 0 16px; font-size: 14px; cursor: pointer;
}

/* ═══════════════════════════════════════════════════════
   MOBILE FAB (bottom action bar)
═══════════════════════════════════════════════════════ */
.mob-fab {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: #fff;
  border-top: 1.5px solid #e5e5e5;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  border-radius: 14px 14px 0 0;
}
.mob-fab-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch;
  width: 100%;
  height: 77px;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
/* Side items */
.fab-item {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 13px; font-weight: 700;
  color: #b84c1a;
  text-decoration: none;
  transition: opacity .2s;
}
.fab-item i {
  font-size: 26px;
  color: #b84c1a;
}
.fab-item:active { opacity: .65; }

/* Centre bubble */
.fab-center {
  flex: 0 0 108px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 7px;
  gap: 4px;
  text-decoration: none;
  margin-top: -19px;
  font-size: 13px; font-weight: 700;
  color: #b84c1a;
}
.fab-bubble {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  box-shadow: 0 4px 18px rgba(242,101,34,.45);
  margin-bottom: 3px;
}
.fab-center:active .fab-bubble { transform: scale(.95); }

/* Mobile Drawer */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 600;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
body.drawer-open .drawer-overlay { opacity: 1; pointer-events: auto; }
.mobile-drawer {
  position: fixed; top: 0; right: -100%;
  width: min(280px, 88vw); height: 100%;
  background: #fff; z-index: 700; display: flex; flex-direction: column;
  transition: right .28s cubic-bezier(.4,0,.2,1); overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0,0,0,.14);
}
body.drawer-open .mobile-drawer { right: 0; }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.drawer-header .sk-real-logo { height: 36px; }
.drawer-close {
  font-size: 18px; color: #555; width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; border: none; background: none; cursor: pointer;
}
.drawer-close:hover { background: var(--orange-lt); color: var(--orange); }
.drawer-menu { flex: 1; overflow-y: auto; }
.drawer-menu a {
  display: flex; align-items: center;
  padding: 15px 20px; font-size: 14px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid #f2f2f2; transition: background .15s;
  min-height: 52px;
}
.drawer-menu a:hover, .drawer-menu a:active { background: var(--orange-lt); color: var(--orange); }
.drawer-footer-ctas {
  display: flex; gap: 8px; padding: 14px 16px;
  border-top: 1px solid var(--border);
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0));
}
.drawer-cta {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px 8px; border-radius: 10px; font-size: 13px; font-weight: 700;
  background: var(--orange-lt); color: var(--orange);
  border: 1.5px solid var(--orange); transition: all .2s;
}
.drawer-cta:hover, .drawer-cta:active { background: var(--orange); color: #fff; }

/* ═══════════════════════════════════════════════════════
   WOOCOMMERCE
═══════════════════════════════════════════════════════ */
.woocommerce ul.products li.product { border: 1px solid transparent; border-radius: 10px; transition: border-color .22s, box-shadow .22s, transform .22s; }
.woocommerce ul.products li.product:hover { border-color: var(--orange); box-shadow: 0 6px 20px rgba(242,101,34,.14); transform: translateY(-3px); }
.woocommerce ul.products li.product .price { color: var(--orange); font-weight: 700; }
.woocommerce ul.products li.product .button,
.woocommerce #respond input#submit,
.woocommerce a.button, .woocommerce button.button { background: var(--orange); color: #fff; border-radius: 8px; font-weight: 700; transition: background .2s; }
.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--orange-dk); }

/* Generic page */
.site-main { max-width: 1280px; margin: 36px auto; padding: 0 20px; }
.entry-content h1, .entry-content h2, .entry-content h3 { color: #111; margin: 1em 0 .5em; }
.entry-content p { margin-bottom: 1em; }
.entry-content a { color: var(--orange); }
.entry-content ul, .entry-content ol { padding-left: 1.4em; margin-bottom: 1em; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .product-grid   { grid-template-columns: repeat(6, 1fr); }
  .product-grid-6 { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 1000px) {
  .product-grid   { grid-template-columns: repeat(4, 1fr); }
  .product-grid-6 { grid-template-columns: repeat(4, 1fr); }
  .hero { grid-template-columns: 1fr 340px; }
}
@media (max-width: 960px) {
  .topbar, .sticky-header { display: none !important; }
  .mobile-header  { display: block; }
  .mob-fab        { display: flex; }
  body            { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0)); }
  #scrollTop      { bottom: 84px; }

  .hero           { grid-template-columns: 1fr; margin-top: 0; }

  /* Hero slider — height auto so full image is visible, no cropping */
  .hero-slider    { height: auto !important; min-height: 0 !important; background: #f5f5f5 !important; position: relative; }
  .hero-photo     { position: relative !important; top: auto !important; left: auto !important;
                    right: auto !important; bottom: auto !important;
                    width: 100% !important; height: auto !important; opacity: 1; }
  .hero-photo:not(.active) { display: none; }
  .hero-photo.active { display: block; opacity: 1; }
  .hero-photo img { width: 100% !important; height: auto !important;
                    object-fit: contain !important; display: block; }
  .slider-dots    { position: absolute; bottom: 10px; left: 14px; z-index: 10; }
  .slider-arrows  { position: absolute; bottom: 6px; right: 10px; z-index: 10; }

  .hero-panels    { flex-direction: row; }
  .hero-panel     { min-height: 120px; }

  /* Products */
  .product-grid   { grid-template-columns: repeat(3, 1fr); }
  .product-grid-6 { grid-template-columns: repeat(3, 1fr); }

  /* Footer tablet: 2 cols */
  .footer-grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px 20px; }
  .footer-svc-row { gap: 16px; }
  .footer-top     { padding: 28px 20px 20px; }

  /* Misc */
  .faq-row        { grid-template-columns: 1fr; }
  .faq-a          { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 10px; }
  .features-row   { grid-template-columns: 1fr; gap: 24px; }
  .brand-tile     { flex: 0 0 100px; }
  .acc-card .acc-name { font-size: 12px; }
}

@media (max-width: 640px) {
  /* Products */
  .product-grid   { grid-template-columns: repeat(2, 1fr); }
  .product-grid-6 { grid-template-columns: repeat(2, 1fr); }

  .hero-panels    { flex-direction: column; }

  /* Footer mobile: 1 col, compact */
  .footer-grid    { grid-template-columns: 1fr; gap: 20px; padding: 20px 16px; }
  .footer-top     { padding: 24px 16px 18px; }
  .footer-logo .sk-real-logo { height: 64px; }
  .footer-svc-row { gap: 12px; flex-wrap: wrap; }
  .footer-svc-row a { font-size: 13px; }
  .footer-svc-label { font-size: 10px; margin-bottom: 14px; }
  .fcol-title     { font-size: 10px; margin-bottom: 12px; }
  .fcol-list li   { font-size: 12px; }
  .cat-list a     { font-size: 12px; }
  .social-list a  { font-size: 12px; }
  .pay-item       { height: 28px; }
  .pay-logos img  { max-height: 28px; }
  .pay-label      { font-size: 11px; margin-bottom: 12px; }
  .footer-copy    { font-size: 11px; padding: 10px 16px; }

  /* FAB bar */
  .mob-fab-inner  { height: 70px; }
  .fab-item       { font-size: 12px; }
  .fab-item i     { font-size: 24px; }
  .fab-bubble     { width: 56px; height: 56px; font-size: 24px; }

  /* Misc */
  .brands-grid    { gap: 3px; }
  .footer-sk, .sk-fire-sk { font-size: 42px; }
  .section-title  { font-size: 24px; }
  .faq-title      { font-size: 20px; }
  .brand-tile     { flex: 0 0 85px; }
  .announce-text  { font-size: 13px; white-space: normal; }
  .acc-card .acc-name  { font-size: 11px; line-height: 1.3; }
  .acc-card .acc-price { font-size: 12px; }
  .acc-img        { padding: 12px; }
}

@media (max-width: 400px) {
  /* Very small phones */
  .mh-ticker-text { font-size: 10px; }
  .mh-logo .sk-real-logo { height: 36px; }
  .product-grid   { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .footer-svc-row { gap: 10px; }
  .footer-svc-row a { font-size: 12px; }
}


/* ═══════════════════════════════════════════════════════
   SHOP ARCHIVE — Sidebar + Price Filter + Sort
═══════════════════════════════════════════════════════ */

/* ── Breadcrumb bar (outside grid) ── */
.sk-breadcrumb-bar  { background:#fff; border-bottom:1px solid var(--border); }
.sk-breadcrumb-inner {
  max-width:1280px; margin:0 auto; padding:10px 20px;
  font-size:12px; color:var(--muted);
}
.sk-breadcrumb-inner a { color:var(--muted); }
.sk-breadcrumb-inner a:hover { color:var(--orange); }

/* ── Main grid wrapper ── */
.sk-shop-main  { background:var(--bg); min-height:60vh; }
.sk-shop-wrap  {
  max-width:1280px; margin:0 auto; padding:24px 20px 52px;
  display:grid;
  grid-template-columns:240px 1fr;
  gap:24px;
  align-items:start;
}

/* ══ SIDEBAR ══════════════════════════════════════════ */
.sk-shop-sidebar { display:flex; flex-direction:column; gap:12px; position:sticky; top:80px; }

.sk-filter-card {
  background:#fff; border-radius:10px;
  border:1px solid var(--border);
  overflow:hidden;
}

.sk-filter-toggle {
  width:100%; background:none; border:none; cursor:pointer;
  padding:13px 16px; text-align:left;
  font-size:13px; font-weight:700; color:#111;
  display:flex; align-items:center; justify-content:space-between;
  transition:background .15s;
}
.sk-filter-toggle:hover { background:var(--orange-lt); color:var(--orange); }

.sk-filter-arrow {
  font-size:20px; color:var(--orange); font-weight:300;
  transition:transform .2s; display:inline-block;
  line-height:1;
}

.sk-filter-body { padding:6px 16px 16px; }

/* ── Dual range slider ── */
.sk-range-wrap  { padding:20px 6px 10px; }
.sk-range-track {
  position:relative; height:4px;
  background:#e5e7eb; border-radius:2px; margin:0;
}
.sk-range-fill {
  position:absolute; height:100%;
  background:#111; border-radius:2px; pointer-events:none;
}
.sk-thumb {
  position:absolute; top:50%; transform:translate(-50%,-50%);
  width:18px; height:18px; border-radius:50%;
  background:#111; border:3px solid #fff;
  box-shadow:0 1px 5px rgba(0,0,0,.35);
  cursor:grab; z-index:3; transition:box-shadow .15s;
}
.sk-thumb:active { cursor:grabbing; }
.sk-thumb:hover  { box-shadow:0 0 0 6px rgba(0,0,0,.1); }

.sk-range-labels {
  display:flex; justify-content:space-between;
  font-size:13px; font-weight:700; color:#111;
  padding:4px 0 14px;
}

.sk-filter-apply {
  width:100%; padding:10px; border-radius:7px;
  background:var(--orange); color:#fff; border:none;
  font-size:13px; font-weight:700; cursor:pointer;
  transition:background .15s;
}
.sk-filter-apply:hover { background:var(--orange-dk); }

/* ── Sort options ── */
.sk-sort-option {
  display:flex; align-items:center; gap:8px;
  padding:9px 10px; border-radius:7px;
  font-size:13px; font-weight:500; color:#444;
  text-decoration:none; transition:background .15s, color .15s;
  margin-bottom:2px;
}
.sk-sort-option:hover  { background:var(--orange-lt); color:var(--orange); }
.sk-sort-option.active { background:var(--orange-lt); color:var(--orange); font-weight:700; }
.sk-sort-check { color:var(--orange); font-weight:900; font-size:14px; margin-right:2px; }
.sk-sort-badge {
  margin-left:auto; font-size:12px; font-weight:800;
  width:22px; height:22px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.sk-sort-badge.up   { background:#dcfce7; color:#16a34a; }
.sk-sort-badge.down { background:#fee2e2; color:#dc2626; }

/* ══ CONTENT AREA ═════════════════════════════════════ */
.sk-shop-content { min-width:0; }   /* prevents grid overflow */

.sk-shop-header {
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:20px; gap:12px;
}
.sk-shop-meta   { font-size:13px; color:var(--muted); white-space:nowrap; padding-top:4px; }
.sk-pagination  { margin-top:32px; text-align:center; }

/* ── 4-col product grid (shop page only) ── */
.product-grid-4 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

/* ── Responsive ── */
@media (max-width:1024px) {
  .product-grid-4 { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:860px) {
  .sk-shop-wrap  { grid-template-columns:1fr; gap:16px; }
  .sk-shop-sidebar { flex-direction:row; flex-wrap:wrap; position:static; }
  .sk-filter-card  { flex:1; min-width:220px; }
  .product-grid-4  { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:600px) {
  .sk-shop-sidebar { flex-direction:column; }
  .product-grid-4  { grid-template-columns:repeat(2,1fr); }
}

/* ═══════════════════════════════════════════════════════
   SEARCH RESULTS PAGE
═══════════════════════════════════════════════════════ */
.sk-search-main  { background: var(--bg); min-height: 60vh; }
.sk-search-wrap  { max-width: 1280px; margin: 0 auto; padding: 28px 20px 52px; }

/* Header row */
.sk-search-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 12px; margin-bottom: 20px; flex-wrap: wrap;
}
.sk-search-head .section-title em {
  font-style: normal; color: var(--orange);
}
.sk-search-count {
  font-size: 13px; color: var(--muted);
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 14px; font-weight: 600;
  white-space: nowrap;
}

/* Re-search bar */
.sk-search-bar {
  display: flex; align-items: center; gap: 0;
  border: 2px solid var(--border); border-radius: 12px;
  overflow: hidden; background: #fff; margin-bottom: 28px;
  transition: border-color .2s;
}
.sk-search-bar:focus-within { border-color: var(--orange); }
.sk-search-bar i {
  padding: 0 14px; font-size: 16px; color: var(--muted); flex-shrink: 0;
}
.sk-search-bar input {
  flex: 1; padding: 13px 0; border: none; outline: none;
  font-size: 15px; font-family: inherit; background: transparent;
  min-width: 0;
}
.sk-search-bar button {
  background: var(--orange); color: #fff; border: none;
  padding: 0 24px; font-size: 13px; font-weight: 700;
  cursor: pointer; height: 100%; transition: background .15s;
  white-space: nowrap;
}
.sk-search-bar button:hover { background: var(--orange-dk); }

/* Product grid for search */
.sk-search-grid { margin-bottom: 32px; }

/* Pagination */
.sk-search-pagination {
  display: flex; justify-content: center; gap: 6px;
  margin-top: 32px;
}
.sk-search-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  border: 1.5px solid var(--border); font-size: 13px; font-weight: 600;
  color: #444; text-decoration: none; transition: all .2s;
}
.sk-search-pagination .page-numbers:hover { border-color: var(--orange); color: var(--orange); }
.sk-search-pagination .page-numbers.current {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* No results state */
.sk-no-results {
  text-align: center; padding: 60px 20px;
}
.sk-no-results-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--orange-lt); margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--orange);
}
.sk-no-results h2 {
  font-size: 22px; font-weight: 700; color: #111; margin-bottom: 10px;
}
.sk-no-results p {
  font-size: 14px; color: var(--muted); max-width: 420px; margin: 0 auto 24px;
  line-height: 1.6;
}
.sk-no-results-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Mobile */
@media (max-width: 600px) {
  .sk-search-bar input { font-size: 14px; }
  .sk-search-bar button { padding: 0 16px; font-size: 12px; }
}

/* ── Brand + panel responsive overrides ── */
@media (max-width: 960px) {
  .brands-inner { padding: 0; }
  .panel-real-img img { width: 100%; height: 80%; }
}
/* ── New sidebar filters ─────────────────────────── */
.sk-search-input-wrap {
  display: flex; gap: 0; border: 1.5px solid var(--border);
  border-radius: 8px; overflow: hidden;
}
.sk-name-input {
  flex: 1; padding: 9px 12px; border: none; outline: none;
  font-size: 13px; font-family: inherit; background: #fff;
}
.sk-name-btn {
  padding: 0 14px; background: var(--orange); color: #fff;
  border: none; cursor: pointer; font-size: 13px;
  transition: background .2s;
}
.sk-name-btn:hover { background: #d44e15; }

.sk-sort-count {
  margin-left: auto; font-size: 11px; color: #9ca3af;
  background: #f3f4f6; border-radius: 20px;
  padding: 1px 7px; flex-shrink: 0;
}

.sk-brand-option { align-items: center; gap: 8px; }
.sk-brand-logo {
  width: 28px; height: 20px; object-fit: contain;
  flex-shrink: 0; border-radius: 2px;
}

/* ══ HORIZONTAL FILTER BAR ══════════════════════════════ */
.sk-hfilter-wrap {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky; top: 0; z-index: 120;
}
.sk-hfilter-bar {
  max-width: 1280px; margin: 0 auto;
  padding: 10px 20px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}

/* Active filter pills */
.sk-active-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange); color: #fff;
  padding: 5px 12px; border-radius: 20px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  white-space: nowrap;
}
.sk-active-pill span { font-size: 16px; line-height: 1; opacity: .85; }
.sk-active-pill:hover { background: #d44e15; }

/* Dropdown group */
.sk-hfilter-dropdowns {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}

/* Drop button */
.sk-drop-wrap { position: relative; }
.sk-drop-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 8px;
  border: 1.5px solid #e5e7eb; background: #fff;
  font-size: 13px; font-weight: 600; color: #374151;
  cursor: pointer; white-space: nowrap; transition: border-color .15s;
}
.sk-drop-btn:hover { border-color: var(--orange); }
.sk-drop-btn.sk-drop-active { border-color: var(--orange); color: var(--orange); background: #fff5f0; }
.sk-drop-icon { font-size: 10px; transition: transform .2s; }

/* Dropdown panel */
.sk-dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 180px; background: #fff;
  border: 1.5px solid #e5e7eb; border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  z-index: 300; padding: 6px; max-height: 320px; overflow-y: auto;
}
.sk-dropdown.open { display: block; }
.sk-dropdown-2col { min-width: 280px; display: none; grid-template-columns: 1fr 1fr; gap: 2px; }
.sk-dropdown-2col.open { display: grid; }
.sk-dropdown-right { left: auto; right: 0; }
.sk-dropdown-price { min-width: 240px; padding: 16px; }

.sk-drop-item {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 7px 10px; border-radius: 6px;
  font-size: 13px; color: #374151; text-decoration: none;
  transition: background .12s;
}
.sk-drop-item:hover { background: #f9fafb; }
.sk-drop-item.active { background: #fff5f0; color: var(--orange); font-weight: 700; }
.sk-drop-count { font-size: 11px; color: #9ca3af; background: #f3f4f6; border-radius: 20px; padding: 1px 6px; }

/* Search input in bar */
.sk-hfilter-search { display: flex; }
.sk-hfilter-input {
  padding: 7px 12px; border: 1.5px solid #e5e7eb;
  border-right: none; border-radius: 8px 0 0 8px;
  font-size: 13px; width: 160px; outline: none;
  font-family: inherit;
}
.sk-hfilter-input:focus { border-color: var(--orange); }
.sk-hfilter-search button {
  padding: 0 12px; background: var(--orange); color: #fff;
  border: none; border-radius: 0 8px 8px 0; cursor: pointer; font-size: 13px;
}

/* Sort — right side */
.sk-hfilter-sort { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.sk-sort-label { font-size: 13px; color: #6b7280; white-space: nowrap; }

/* Brand horizontal scroll strip */
.sk-hbrand-scroll {
  max-width: 1280px; margin: 0 auto; padding: 8px 20px;
  display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none;
  border-top: 1px solid #f3f4f6;
}
.sk-hbrand-scroll::-webkit-scrollbar { display: none; }
.sk-hbrand-pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 20px;
  border: 1.5px solid #e5e7eb; background: #fff;
  font-size: 12px; font-weight: 600; color: #374151;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: border-color .15s, background .15s;
}
.sk-hbrand-pill:hover { border-color: var(--orange); color: var(--orange); }
.sk-hbrand-pill.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.sk-hbrand-pill img { width: 20px; height: 14px; object-fit: contain; }

/* Full width product grid (no sidebar) */
.sk-shop-full { max-width: 1280px; margin: 0 auto; padding: 24px 20px 48px; }
.sk-shop-full .sk-shop-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; flex-wrap: wrap; gap: 8px;
}

/* ── Override old sidebar layout ── */
.sk-shop-wrap { display: block; }
.sk-shop-sidebar { display: none; }
.sk-shop-content { width: 100%; }

@media (max-width: 768px) {
  .sk-hfilter-bar { padding: 8px 12px; gap: 6px; }
  .sk-hbrand-scroll { padding: 6px 12px; }
  .sk-hfilter-input { width: 100px; }
  .sk-hfilter-sort .sk-sort-label { display: none; }
  .sk-shop-full { padding: 16px 12px 40px; }
}
