/* =============================================
   ZOOM-IN KITCHEN SUPPLIES — Main Stylesheet
   Clean, minimal, RTL-first
============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Poppins', sans-serif;
  font-size: 15px;
  color: #222;
  background: #f5f6f8;
  direction: rtl;
  overflow-x: hidden;
}
body.lang-en { direction: ltr; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- CSS Variables --- */
:root {
  --primary: #1B3A6B;
  --primary-dark: #122a50;
  --primary-light: #2d5a9e;
  --accent: #e8a020;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da852;
  --danger: #e53e3e;
  --text: #222;
  --text-light: #666;
  --text-muted: #999;
  --bg: #f5f6f8;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --transition: all .2s ease;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 48px 0; }
.section-sm { padding: 28px 0; }

/* =============================================
   TOP BAR
============================================= */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: 12px;
  padding: 6px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: rgba(255,255,255,.85); transition: var(--transition); }
.top-bar a:hover { color: #fff; }
.top-bar-contact { display: flex; gap: 16px; align-items: center; }
.top-bar-contact a { display: flex; align-items: center; gap: 4px; }
.top-bar-right { display: flex; align-items: center; gap: 12px; }
.top-badge {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.12);
  padding: 2px 8px; border-radius: 20px;
  font-size: 11px;
}
.top-badge.green { background: var(--whatsapp); color: #fff; }
.lang-btn {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.lang-btn:hover { background: rgba(255,255,255,.25); }

/* =============================================
   HEADER
============================================= */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

/* Logo */
.site-logo a { display: flex; align-items: center; gap: 10px; }
.site-logo img {
  height: 52px; width: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-name {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.2;
}
.logo-name small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  opacity: .7;
  letter-spacing: 0;
}

/* Search */
.header-search {
  flex: 1;
  min-width: 0;
}
.search-box {
  display: flex;
  background: rgba(255,255,255,.15);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.search-box:focus-within {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
}
.search-box input {
  flex: 1;
  background: none;
  border: none;
  padding: 9px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.search-box input::placeholder { color: rgba(255,255,255,.55); }
.search-box button {
  background: var(--accent);
  border: none;
  padding: 0 16px;
  color: #fff;
  font-size: 15px;
  transition: var(--transition);
  flex-shrink: 0;
}
.search-box button:hover { background: #d08c10; }
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: #fff;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  display: none;
  overflow: hidden;
}
.search-suggestions.show { display: block; }
.search-suggestion-item {
  padding: 10px 16px;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.search-suggestion-item:hover { background: var(--bg); }
.header-search { position: relative; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.btn-wa-header {
  display: flex; align-items: center; gap: 5px;
  background: var(--whatsapp);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  border: none;
}
.btn-wa-header:hover { background: var(--whatsapp-dark); }
.btn-wa-header i { font-size: 16px; }

.btn-cart-header {
  position: relative;
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.15);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}
.btn-cart-header:hover { background: rgba(255,255,255,.25); color: #fff; }
.btn-cart-header i { font-size: 16px; }
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
[dir="ltr"] .cart-badge { right: auto; left: -5px; }
.cart-count { /* keep for JS */ }

/* Hamburger */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.btn-hamburger:hover { background: rgba(255,255,255,.22); }
.btn-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.btn-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   DESKTOP NAVIGATION
============================================= */
.site-nav {
  background: var(--primary-light);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-inner > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.88);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-inner > li > a:hover,
.nav-inner > li > a.active {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.nav-inner > li.offers > a { color: var(--accent); }

/* Dropdown */
.nav-inner > li.has-drop { position: relative; }
.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 210px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-md);
  z-index: 600;
  border-top: 3px solid var(--accent);
  padding: 6px 0;
}
[dir="ltr"] .drop-menu { left: 0; right: auto; }
.nav-inner > li.has-drop:hover .drop-menu { display: block; }
.drop-menu li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.drop-menu li:last-child a { border-bottom: none; }
.drop-menu li a:hover { background: var(--bg); color: var(--primary); }
.drop-count { font-size: 11px; color: var(--text-muted); }
.drop-arrow { font-size: 10px; margin-right: 4px; }
[dir="ltr"] .drop-arrow { margin-left: 4px; margin-right: 0; }

/* =============================================
   MOBILE DRAWER
============================================= */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 290px;
  height: 100%;
  background: var(--primary);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
[dir="ltr"] .mobile-drawer { left: 0; right: auto; transform: translateX(-100%); }
.mobile-drawer.open { transform: translateX(0); }
[dir="ltr"] .mobile-drawer.open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.drawer-head img {
  height: 42px; width: 42px;
  border-radius: 50%; object-fit: cover;
}
.drawer-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 8px;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}

.drawer-nav { padding: 8px 0; flex: 1; }
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.88);
  padding: 13px 20px;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .15s;
}
.drawer-nav a:hover,
.drawer-nav a.active { background: rgba(255,255,255,.1); color: #fff; }
.drawer-nav a i { width: 20px; text-align: center; opacity: .7; }
.drawer-nav a.offers { color: var(--accent); }
.drawer-nav .sub-link {
  padding-right: 52px;
  font-size: 13px;
  opacity: .85;
}
[dir="ltr"] .drawer-nav .sub-link { padding-left: 52px; padding-right: 20px; }
.drawer-cat-toggle { cursor: pointer; }
.drawer-cat-toggle .chevron { margin-right: auto; transition: transform .2s; }
[dir="ltr"] .drawer-cat-toggle .chevron { margin-left: auto; margin-right: 0; }
.drawer-cat-toggle.open .chevron { transform: rotate(180deg); }
.drawer-sub { display: none; }
.drawer-sub.open { display: block; }

.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.drawer-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1999;
  display: none;
}
.overlay.open { display: block; }

/* =============================================
   HERO SECTION
============================================= */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2d5a9e 100%);
  padding: 60px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.hero-text { flex: 1; }

.hero-visual {
  flex: 0 0 auto;
  width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-banner-img {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.45), 0 0 0 2px rgba(255,255,255,.12);
  position: relative;
  z-index: 1;
}
.hero-banner-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 14px;
}
.hero p {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.hero-slogan {
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: .3px;
  margin-bottom: 8px !important;
  opacity: .95;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #d08c10; transform: translateY(-1px); }
.btn-outline-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-1px); }
.btn-lg { padding: 14px 28px; font-size: 16px; }

/* =============================================
   SECTION HEADERS
============================================= */
.sec-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.sec-head h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
}
.sec-head p {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}
.see-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border: 1.5px solid var(--primary);
  border-radius: 20px;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}
.see-all:hover { background: var(--primary); color: #fff; }

/* =============================================
   CATEGORY CARDS
============================================= */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 12px 16px;
  text-align: center;
  transition: var(--transition);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cat-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.cat-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #1a3faa, #0d2b8a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  overflow: hidden;
  flex-shrink: 0;
}
.cat-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.cat-count-badge {
  font-size: 11px;
  color: var(--text-muted);
}

/* =============================================
   CATEGORIES PAGE CARDS
============================================= */
.cat-card-full {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}
.cat-card-full:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cat-card-full-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a3faa, #0d2b8a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cat-card-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-card-full-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cat-card-full-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}
.cat-card-full-count {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

/* =============================================
   PRODUCT CARDS
============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.product-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #f0f2f5;
  overflow: hidden;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-img .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a3faa 0%, #0d2b8a 100%);
  flex-direction: column;
  gap: 6px;
}
.no-img-logo {
  width: 65%; height: 65%;
  object-fit: cover;
  border-radius: 50%;
  opacity: .92;
}
.badge-discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
[dir="ltr"] .badge-discount { left: 10px; right: auto; }
.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
[dir="ltr"] .badge-new { right: 10px; left: auto; }

.product-card-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-cat-label {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.product-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.price-current {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary);
}
.price-original {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-card-actions {
  padding: 0 14px 14px;
  display: flex;
  gap: 8px;
}
.btn-add-cart {
  flex: 1;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: var(--transition);
}
.btn-add-cart:hover { background: var(--primary-dark); }
.btn-add-cart.added { background: #28a745; }
.btn-wa-product {
  width: 40px; height: 40px;
  background: #e8fdf0;
  color: var(--whatsapp);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  text-decoration: none;
}
.btn-wa-product:hover { background: var(--whatsapp); color: #fff; }

/* =============================================
   TRUST STRIP
============================================= */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-left: 1px solid var(--border);
}
.trust-item:first-child { border-left: none; }
[dir="ltr"] .trust-item { border-right: 1px solid var(--border); border-left: none; }
[dir="ltr"] .trust-item:first-child { border-right: none; }
.trust-item i {
  font-size: 26px;
  color: var(--primary);
  flex-shrink: 0;
}
.trust-item h4 { font-size: 13px; font-weight: 700; color: var(--text); }
.trust-item p { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* =============================================
   PRODUCT CAROUSEL / MARQUEE
============================================= */
.products-marquee {
  overflow: hidden;
  background: #f4f6fb;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  cursor: default;
  position: relative;
}
.marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  direction: ltr;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 130px;
  flex-shrink: 0;
  text-decoration: none;
  color: var(--text);
  transition: transform .2s ease;
}
.marquee-item:hover {
  transform: translateY(-4px);
}
.marquee-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,.12);
  border: 3px solid #fff;
  display: block;
}
.marquee-item span {
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 128px;
  color: var(--text-muted);
  font-weight: 600;
}

/* =============================================
   WHATSAPP CTA STRIP
============================================= */
.wa-strip {
  background: var(--whatsapp);
  padding: 28px 0;
  text-align: center;
}
.wa-strip h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}
.wa-strip p {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  margin-bottom: 18px;
}
.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--whatsapp);
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  transition: var(--transition);
}
.btn-wa-big:hover { transform: scale(1.03); }
.btn-wa-big i { font-size: 22px; }

/* =============================================
   FLOATING WHATSAPP BUTTON
============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px; height: 58px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 900;
  transition: var(--transition);
  border: 3px solid #fff;
}
[dir="ltr"] .wa-float { left: auto; right: 28px; }
.wa-float:hover { transform: scale(1.1); background: var(--whatsapp-dark); }
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float { animation: wa-pulse 2.5s infinite; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.75);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo-wrap img {
  height: 50px; width: 50px;
  border-radius: 50%; object-fit: cover;
}
.footer-brand-name {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.footer-tagline {
  font-size: 12px;
  opacity: .6;
  margin-top: 2px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-info a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}
.footer-contact-info a:hover { color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-links a:hover { color: #fff; padding-right: 4px; }
[dir="ltr"] .footer-links a:hover { padding-left: 4px; padding-right: 0; }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.6); }
.footer-bottom a:hover { color: #fff; }

/* =============================================
   PRODUCT LISTING PAGE
============================================= */
.page-hero {
  background: var(--primary);
  padding: 28px 0;
  color: #fff;
}
.page-hero h1 { font-size: 24px; font-weight: 800; }
.page-hero p { font-size: 14px; opacity: .8; margin-top: 4px; }
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  margin-bottom: 14px;
}
.btn-back-light {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-back-light:hover { background: rgba(255,255,255,.3); color: #fff; }
.btn-back-dark {
  background: #e8f0fe;
  color: var(--primary);
}
.btn-back-dark:hover { background: #d0e2ff; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; }

.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 32px 0;
}
[dir="ltr"] .products-layout { /* already correct */ }

.sidebar { /* sidebar for filters */ }
.filter-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.filter-box h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}
.filter-list { display: flex; flex-direction: column; gap: 4px; }
.filter-link {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  color: var(--text);
  padding: 7px 10px;
  border-radius: 7px;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.filter-link:hover { background: var(--bg); color: var(--primary); }
.filter-link.active { background: var(--primary); color: #fff; font-weight: 700; }
.filter-link.active .filter-count { color: rgba(255,255,255,.7); }
.filter-count { font-size: 11px; color: #999; }

/* Mobile / Tablet category chips bar */
.cat-chips-bar {
  display: none;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.cat-chips-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.cat-chips-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s, border-color .15s;
}
.cat-chip:hover { border-color: var(--primary); color: var(--primary); }
.cat-chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* Sort Bar */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.sort-bar select {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  outline: none;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
  flex-wrap: wrap;
}
.pagination a, .pagination span {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* =============================================
   PRODUCT DETAIL
============================================= */
.product-detail { padding: 32px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.product-gallery { position: sticky; top: 80px; }
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  aspect-ratio: 1/1;
  background: #f0f2f5;
}
.product-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-info { display: flex; flex-direction: column; gap: 18px; }
.product-title { font-size: 22px; font-weight: 800; color: var(--text); line-height: 1.3; }
.product-price-block { display: flex; align-items: baseline; gap: 10px; }
.product-price-block .price-current { font-size: 26px; }
.product-price-block .price-original { font-size: 15px; }
.product-price-block .badge-discount { position: static; }
.product-desc { font-size: 14px; line-height: 1.8; color: var(--text-light); }
.product-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-buy { background: var(--accent); color: #fff; }
.btn-buy:hover { background: #d08c10; }

/* =============================================
   CART & CHECKOUT
============================================= */
.cart-layout, .checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  padding: 32px 0;
  align-items: start;
}
.cart-table { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.cart-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-row:last-child { border-bottom: none; }
.cart-img {
  width: 72px; height: 72px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--bg);
  flex-shrink: 0;
}
.cart-info { flex: 1; min-width: 0; }
.cart-name { font-size: 14px; font-weight: 700; }
.cart-price { font-size: 14px; color: var(--primary); font-weight: 700; }
.qty-ctrl { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 30px; height: 30px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-weight: 700;
}
.qty-input {
  width: 44px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px;
  font-size: 14px;
  font-family: inherit;
}
.cart-remove { color: var(--danger); background: none; border: none; font-size: 18px; cursor: pointer; padding: 4px; }

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  position: sticky;
  top: 80px;
}
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; font-weight: 800; font-size: 16px; }

/* Form */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.form-control {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
}
.form-control:focus { border-color: var(--primary); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* =============================================
   FAQ PAGE
============================================= */
.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: right;
  background: none;
  border: none;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: inherit;
  transition: background .15s;
}
[dir="ltr"] .faq-q { text-align: left; }
.faq-q:hover { background: var(--bg); }
.faq-q.active { color: var(--primary); background: #f0f5ff; }
.faq-q i { font-size: 12px; transition: transform .2s; flex-shrink: 0; }
.faq-q.active i { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
}
.faq-a.open { display: block; }

/* =============================================
   ORDER SUCCESS
============================================= */
.success-wrap { text-align: center; padding: 60px 20px; }
.success-icon {
  width: 80px; height: 80px;
  background: #e8fdf0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: var(--whatsapp);
  margin: 0 auto 20px;
}

/* =============================================
   MISC / UTILITIES
============================================= */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state i { font-size: 48px; display: block; margin-bottom: 16px; }
.empty-state h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }

.gov-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.gov-tag {
  display: inline-flex;
  padding: 5px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  color: var(--text);
  transition: var(--transition);
}
.gov-tag:hover { border-color: var(--primary); color: var(--primary); }

.alert {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-bottom: 16px;
}
.alert-success { background: #e8fdf0; color: #1a6b3a; border: 1px solid #b3e6c9; }
.alert-error { background: #fef0f0; color: #8b1a1a; border: 1px solid #f5c0c0; }

/* Search highlight */
.search-results-header { margin-bottom: 24px; }
.search-term { color: var(--primary); font-weight: 800; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  /* Hide sidebar, show horizontal chips instead */
  .products-layout { grid-template-columns: 1fr; padding-top: 20px; }
  .sidebar { display: none; }
  .cat-chips-bar { display: block; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  /* Header */
  .btn-hamburger { display: flex; }
  .site-nav { display: none; }
  .header-search { display: none; }
  .btn-wa-header span { display: none; }
  .btn-cart-header span { display: none; }
  .btn-wa-header { padding: 8px 10px; }
  .btn-cart-header { padding: 8px 10px; }
  /* Layout */
  .top-bar-right { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cats-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero { padding: 36px 0 28px; }
  .hero-content { flex-direction: column; gap: 24px; }
  .hero h1 { font-size: 24px; }
  .hero-btns .btn { padding: 11px 18px; font-size: 14px; }
  .hero-visual { order: -1; width: 100%; }
  .hero-banner-img img { height: 190px; }
  .marquee-item img { width: 90px; height: 90px; }
  .marquee-item { width: 100px; }
  .marquee-item span { width: 98px; }
  /* Product detail mobile */
  .product-gallery { position: static !important; }
  #mediaMain { aspect-ratio: 4/3 !important; max-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .sec-head h2 { font-size: 18px; }
  .wa-strip h3 { font-size: 16px; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .top-bar { display: none; }
  .product-card-body { padding: 10px; }
  .product-name { font-size: 13px; }
  .price-current { font-size: 15px; }
  .btn-add-cart { font-size: 12px; padding: 8px; }
}
@media print { .site-header, .site-footer, .wa-float { display: none; } }

/* =============================================
   EXTRA SHARED STYLES — inner pages
============================================= */

/* Page header block */
.page-header { margin-bottom: 28px; }
.page-header h1 { font-size: 24px; font-weight: 800; color: var(--primary); }
.page-header p { color: var(--text-light); margin-top: 6px; font-size: 14px; }
.page-title { font-size: 24px; font-weight: 800; color: var(--primary); margin-bottom: 24px; }

/* Buttons extra */
.btn-outline {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; justify-content: center; margin-bottom: 10px; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  color: var(--text); transition: var(--transition);
}
.contact-card:hover { border-color: var(--primary); box-shadow: var(--shadow); color: var(--text); }
.contact-card i { font-size: 28px; flex-shrink: 0; }
.contact-card.whatsapp i { color: var(--whatsapp); }
.contact-card.phone i { color: var(--primary); }
.contact-card.facebook i { color: #1877f2; }
.contact-card.instagram i { color: #e1306c; }
.contact-card.tiktok i { color: #000; }
.contact-card.maps i { color: #ea4335; }
.contact-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.contact-card span { font-size: 13px; color: var(--text-light); display: block; }
.contact-card small { font-size: 11px; color: var(--text-muted); display: block; margin-top: 2px; }
.contact-info-box { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; }
.contact-info-box h2 { font-size: 17px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.hours-list { display: flex; flex-direction: column; gap: 10px; list-style: none; margin-bottom: 20px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 14px; border-bottom: 1px solid var(--border); padding-bottom: 8px; }
.coverage-note { display: flex; align-items: flex-start; gap: 10px; background: #f0f5ff; border-radius: 10px; padding: 14px; font-size: 13px; color: var(--primary); }
.coverage-note i { margin-top: 2px; flex-shrink: 0; }

/* About page */
.about-page { display: flex; flex-direction: column; gap: 40px; }
.about-hero { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: var(--radius-lg); padding: 40px; color: #fff; }
.about-hero h1 { font-size: 26px; font-weight: 900; margin-bottom: 10px; }
.about-tagline { font-size: 16px; opacity: .8; margin-bottom: 16px; }
.about-hero p { font-size: 14px; line-height: 1.8; opacity: .85; }
.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; }
.value-card i { font-size: 32px; color: var(--primary); margin-bottom: 12px; display: block; }
.value-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.about-social h2 { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.social-links-large { display: flex; flex-wrap: wrap; gap: 12px; }
.social-card {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px; font-weight: 700; font-size: 14px;
  color: #fff; transition: var(--transition);
}
.social-card.facebook { background: #1877f2; }
.social-card.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-card.tiktok { background: #000; }
.social-card.whatsapp { background: var(--whatsapp); }
.social-card.maps { background: #ea4335; }
.social-card:hover { opacity: .88; transform: translateY(-2px); }

/* Order Success */
.success-page { text-align: center; max-width: 600px; margin: 0 auto; padding: 40px 20px; }
.success-page .success-icon {
  width: 80px; height: 80px; background: #e8fdf0;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 36px; color: var(--whatsapp); margin: 0 auto 20px;
}
.success-page h1 { font-size: 24px; font-weight: 900; color: var(--primary); margin-bottom: 16px; }
.order-number-box {
  display: inline-flex; align-items: center; gap: 10px;
  background: #f0f5ff; border: 1.5px solid #c7d8ff; border-radius: 10px;
  padding: 12px 20px; margin-bottom: 24px; font-size: 15px;
}
.order-number-box strong { color: var(--primary); font-size: 18px; }
.success-main { font-size: 15px; line-height: 1.7; color: var(--text-light); margin-bottom: 20px; }
.success-steps { display: flex; justify-content: center; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 12px; color: var(--text-muted); flex: 1; min-width: 80px; max-width: 120px; }
.step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--bg); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.step.active .step-num { background: var(--whatsapp); color: #fff; border-color: var(--whatsapp); }
.success-contact { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 20px; }
.success-contact p { font-size: 14px; color: var(--text-light); }

/* Misc */
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .faq-accordion + div { display: none; }
  .success-steps { gap: 4px; }
}
@media (max-width: 480px) {
  .about-values { grid-template-columns: 1fr; }
  .social-links-large { gap: 8px; }
}


/* ===================== POLICY PAGES ===================== */
.policy-page { max-width: 860px; margin: 0 auto; padding-bottom: 48px; }
.policy-page h1 { font-size: clamp(22px, 4vw, 32px); color: var(--primary); margin-bottom: 4px; }
.policy-date { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; }
.policy-intro { background: var(--bg); border-radius: 14px; padding: 20px 24px; margin-bottom: 32px; border-right: 4px solid var(--primary); }
.policy-intro p { margin: 0; color: var(--text); line-height: 1.8; }
.policy-guarantee { display: flex; align-items: center; gap: 16px; background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%); border: 1px solid #a5d6a7; border-radius: 14px; padding: 20px 24px; margin-bottom: 32px; }
.policy-guarantee i { font-size: 32px; color: #2e7d32; flex-shrink: 0; }
.policy-guarantee strong { display: block; font-size: 17px; color: #1b5e20; margin-bottom: 4px; }
.policy-guarantee span { color: #33691e; font-size: 14px; }
.policy-section { margin-bottom: 32px; }
.policy-section h2 { font-size: 18px; color: var(--dark); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--border); }
.policy-section p { line-height: 1.9; color: var(--text); margin-bottom: 12px; }
.policy-section ul { padding-right: 0; margin: 0 0 12px; list-style: none; }
.policy-section ul li { padding: 6px 0; color: var(--text); line-height: 1.7; border-bottom: 1px dashed var(--border); display: flex; align-items: flex-start; gap: 10px; }
.policy-list-check li i { color: #2e7d32; margin-top: 3px; flex-shrink: 0; }
.policy-list-x li i { color: var(--danger, #e53935); margin-top: 3px; flex-shrink: 0; }
.policy-note { background: #e3f2fd; border-radius: 8px; padding: 12px 16px; font-size: 13px; color: #1565c0; border-right: 3px solid #1565c0; }
.policy-note i { margin-left: 6px; }
.policy-steps { display: flex; flex-direction: column; gap: 16px; }
.policy-step { display: flex; gap: 16px; align-items: flex-start; background: var(--bg); border-radius: 12px; padding: 16px; border: 1px solid var(--border); }
.policy-step .step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.policy-step strong { display: block; margin-bottom: 4px; color: var(--dark); }
.policy-step p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.policy-contact { background: linear-gradient(135deg, #fff8e1 0%, #fffde7 100%); border: 1px solid #ffe082; border-radius: 14px; padding: 24px; text-align: center; margin-top: 40px; }
.policy-contact h3 { font-size: 20px; color: var(--dark); margin-bottom: 8px; }
.policy-contact p { color: var(--text-muted); margin-bottom: 20px; }
.policy-contact-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) {
  .policy-page { padding-bottom: 24px; }
  .policy-guarantee { flex-direction: column; text-align: center; }
  .policy-intro { padding: 16px; }
  .policy-section h2 { font-size: 16px; }
}
