:root {
  --color-primary: #2C3E50;
  --color-accent: #FF6B35;
  --color-accent-dark: #E55A2B;
  --color-accent-light: #FFF0EA;
  --color-blue: #006EFF;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --color-bg-dark: #1A252F;
  --color-text: #1A1A2E;
  --color-text-light: #6B7280;
  --color-text-on-dark: #FFFFFF;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-success: #10B981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --section-gap: 60px;
  --card-gap: 24px;
  --max-width: 1200px;
  --header-height: 64px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-accent-dark); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

.section {
  padding: var(--section-gap) 0;
  position: relative;
}
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-bg-dark); color: var(--color-text-on-dark); }

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.section-dark .section-title { color: var(--color-text-on-dark); }
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  text-align: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255,107,53,0.45);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}
.btn-b2b {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-b2b:hover {
  background: #1A252F;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44,62,80,0.3);
}
.btn-b2c {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  width: 100%;
}
.btn-b2c:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,107,53,0.35);
}
.btn-shop {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-shop:hover {
  background: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.pattern-dots {
  background-image: radial-gradient(rgba(44,62,80,0.06) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-primary);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img { height: 36px; max-height: 36px; width: auto; background: #fff; border-radius: 6px; padding: 3px; }
.header-logo:hover { color: #fff; opacity: 0.9; }

.header-nav-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav-wrap .nav-item {
  position: relative;
}
.header-nav-wrap .nav-item > a {
  display: block;
  padding: 20px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.header-nav-wrap .nav-item > a:hover,
.header-nav-wrap .nav-item > a.active {
  color: #fff;
}
.header-nav-wrap .nav-item > a.highlight {
  color: var(--color-accent);
  font-weight: 700;
}

.header-nav-wrap .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 8px 0;
  display: none;
  z-index: 100;
}
.header-nav-wrap .nav-item:hover .dropdown { display: block; animation: fadeIn 0.2s ease; }
.header-nav-wrap .dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.header-nav-wrap .dropdown a:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-actions a {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s;
}
.header-actions a:hover { color: #fff; }
.header-actions .cart-icon { position: relative; }
.header-actions .cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 998;
  padding: 16px 24px 24px;
  overflow-y: auto;
  animation: fadeIn 0.25s ease;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--color-border-light); }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
}
.mobile-menu ul li a:hover { color: var(--color-accent); }
.mobile-menu ul li a.highlight {
  color: var(--color-accent);
  font-weight: 700;
}
.mobile-menu .sub-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 0 4px;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--header-height));
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A252F 0%, var(--color-primary) 50%, #1A252F 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,107,53,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(0,110,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeInUp 0.8s ease;
  padding: 80px 0 60px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero p {
  font-size: 1.15rem;
  opacity: 0.88;
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 560px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  padding: 32px 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border-light);
}
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  transition: background 0.3s, transform 0.3s;
}
.trust-badge:hover {
  background: var(--color-bg-alt);
  transform: translateY(-2px);
}
.trust-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badge-content h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}
.trust-badge-content p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

/* ===== CATEGORY CARDS ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.category-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border-light);
  height: 100%;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}
.category-card-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.category-card-icon svg {
  width: 64px;
  height: 64px;
  color: var(--color-accent);
  opacity: 0.8;
  transition: transform 0.5s, opacity 0.3s;
}
.category-card:hover .category-card-icon svg {
  transform: scale(1.15);
  opacity: 1;
}
.category-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.category-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.category-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.category-card-body .btn { align-self: flex-start; }

/* ===== CATEGORY HEADER (shop) ===== */
.category-header {
  padding: 40px 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
}
.category-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.category-header-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-md);
}
.category-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-header-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.category-header-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 12px 0;
  font-size: 0.82rem;
  color: var(--color-text-light);
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border-light);
}
.breadcrumb-inner { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb .sep { margin: 0 8px; color: var(--color-border); }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.product-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-accent);
}
.product-card-image {
  height: 180px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, #EDF2F7 100%);
  position: relative;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card-body h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.35;
}
.product-card-body p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 12px;
}
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.product-price .original {
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 8px;
}
.product-card .btn { margin-top: auto; }

/* ===== PRICE TABLE ===== */
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 28px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}
.price-table th,
.price-table td {
  padding: 12px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border-light);
  text-align: left;
}
.price-table th {
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-bg-alt);
}
.price-table tr:last-child td,
.price-table tr:last-child th { border-bottom: none; }
.price-table td:last-child {
  font-weight: 700;
  color: var(--color-accent);
}
.price-table tr:hover td {
  background: var(--color-accent-light);
}

/* ===== PROCESS SECTION ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}
.process-step {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: transform 0.35s, box-shadow 0.35s;
  position: relative;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-step .step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: var(--color-accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-accent);
  transition: transform 0.3s, background 0.3s;
}
.process-step:hover .step-num {
  transform: scale(1.1);
  background: var(--color-accent);
  color: #fff;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-accent);
  opacity: 0.4;
}
.process-step:last-child::after { display: none; }

/* ===== ABOUT HERO ===== */
.about-hero {
  padding-top: calc(var(--header-height));
  min-height: 400px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1A252F 0%, var(--color-primary) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-hero-content {
  max-width: 720px;
  padding: 60px 0;
  animation: fadeInUp 0.8s ease;
}
.about-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.about-hero p {
  font-size: 1.1rem;
  opacity: 0.88;
  line-height: 1.75;
}

/* ===== ABOUT CONTENT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text ul {
  list-style: none;
  margin: 16px 0;
}
.about-text ul li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  font-size: 0.92rem;
  color: var(--color-text);
}
.about-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SUPPLIER NETWORK ===== */
.supplier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}
.supplier-card {
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: transform 0.35s, box-shadow 0.35s;
}
.supplier-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.supplier-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.supplier-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 48px 0 24px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary), var(--color-accent));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col p { font-size: 0.85rem; line-height: 1.75; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--color-accent); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  text-decoration: none;
}
.footer-bottom-links a:hover { color: var(--color-accent); }

/* ===== CHAT / WHATSAPP FLOATING BUTTONS ===== */
.koca-wa{
  position:fixed;
  bottom:24px;
  right:24px;
  z-index:9999;
  width:56px;
  height:56px;
  background:#25D366;
  border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform 0.2s;
  text-decoration:none
}
.koca-wa:hover{transform:scale(1.1)}
.koca-im{
  position:fixed;
  bottom:96px;
  right:24px;
  z-index:9998;
  width:56px;
  height:56px;
  background:var(--color-blue);
  border-radius:50%;
  box-shadow:0 4px 12px rgba(0,0,0,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform 0.2s
}
.koca-im:hover{transform:scale(1.1)}
.koca-panel{
  position:fixed;
  bottom:20px;
  right:96px;
  z-index:9997;
  width:360px;
  height:500px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 8px 32px rgba(0,0,0,0.2);
  display:none;
  overflow:hidden
}
.koca-panel.open{display:flex;flex-direction:column}
.koca-panel-head{
  background:var(--color-blue);
  color:#fff;
  padding:14px 16px;
  font-size:15px;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  flex-shrink:0
}
.koca-panel-close{cursor:pointer;font-size:18px;line-height:1}
.koca-panel-body{flex:1;min-height:0}
.koca-panel-body iframe{width:100%;height:100%;border:none}
@media(max-width:600px){.koca-panel{width:100vw;height:65vh;right:0;bottom:0;border-radius:12px 12px 0 0}}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .supplier-grid { grid-template-columns: repeat(2, 1fr); }
  .category-header-inner { grid-template-columns: 1fr; }
  .category-header-image { height: 220px; }
}
@media (max-width: 768px) {
  :root { --header-height: 56px; --section-gap: 48px; }
  .hamburger { display: flex; }
  .header-nav-wrap { display: none; }
  .header-actions a span { display: none; }
  .hero { min-height: 440px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .trust-badges-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.5rem; }
  .category-card-icon { height: 130px; }
  .product-card-image { height: 150px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .supplier-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .category-header-content h1 { font-size: 1.5rem; }
  .about-hero h1 { font-size: 1.8rem; }
  .about-image { height: 260px; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* ===== KOCA VIDEO EMBED MODULE ===== */
/* Used for: P1 product gallery, P2 category pages, P3 homepage */

.koca-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.koca-video-wrapper video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.koca-video-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 2;
  transition: opacity 0.3s;
}

.koca-video-cover.playing {
  opacity: 0;
  pointer-events: none;
}

.koca-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(255, 107, 53, 0.9);
  border: 3px solid #fff;
  border-radius: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}

.koca-video-wrapper:hover .koca-video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-accent);
}

.koca-video-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.koca-video-wrapper.playing .koca-video-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* P1: Product gallery video thumbnail */
.product-detail-video-thumb {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
  background: #000;
}

.product-detail-video-thumb.active,
.product-detail-video-thumb:hover {
  border-color: var(--color-accent);
}

.product-detail-video-thumb img,
.product-detail-video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-video-thumb .play-icon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
}

.product-detail-video-thumb .play-icon-overlay::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}

/* Video in main gallery position */
.product-detail-video-main {
  display: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  height: 420px;
  position: relative;
}

.product-detail-video-main.active {
  display: block;
}

.product-detail-video-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* P2: Category showcase video block */
.category-showcase-video {
  margin: 0 auto;
  max-width: 60%;
  width: 100%;
}

.category-showcase-video .koca-video-wrapper {
  max-width: 100%;
}

/* P3: Homepage brand showcase */
.home-showcase-video {
  padding: 40px 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
}

.home-showcase-video .container {
  text-align: center;
}

.home-showcase-video .koca-video-wrapper {
  max-width: 60%;
  margin: 0 auto;
}

.home-showcase-video .showcase-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .koca-video-wrapper {
    max-width: 100%;
  }
  .product-detail-video-main {
    height: 280px;
  }
  .category-showcase-video {
    max-width: 100%;
  }
  .home-showcase-video .koca-video-wrapper {
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .product-detail-gallery .koca-video-wrapper,
  .product-detail-video-main {
    max-width: 600px;
  }
}
/* ============================================
   KOCA GLOBAL - Enhanced B2B WooCommerce Styles
   Appends to site-wide.css
   ============================================ */

/* ----- Button Consistency ----- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background: var(--color-accent) !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  padding: 10px 24px !important;
  font-size: 14px !important;
  transition: background 0.2s !important;
  border: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--color-accent-dark) !important;
}

/* Category & Shop Product Grid */
.woocommerce ul.products {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  margin: 0 !important;
}
.woocommerce ul.products li.product {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
  position: relative;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.woocommerce ul.products li.product a img {
  margin: 0 !important;
  border-radius: 0 !important;
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #f0f0f0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--color-primary);
  padding: 16px 16px 8px !important;
  min-height: 44px;
  line-height: 1.4;
}
.woocommerce ul.products li.product .price {
  display: none !important;  /* B2B - hide prices */
}
.woocommerce ul.products li.product .button {
  margin: 8px 16px 16px !important;
  display: inline-block !important;
  width: auto !important;
}
.woocommerce ul.products li.product .koca-get-quote-btn {
  background: var(--color-accent);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  margin: 8px 16px 16px;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s;
}
.woocommerce ul.products li.product .koca-get-quote-btn:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

/* ---- Breadcrumb ---- */
.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 16px !important;
  font-size: 13px;
  color: #888;
}
.woocommerce .woocommerce-breadcrumb a {
  color: var(--color-accent);
}

/* ---- Category Header ---- */
.woocommerce-products-header {
  margin-bottom: 32px;
  padding: 32px 0;
  border-bottom: 2px solid #f0f0f0;
}
.woocommerce-products-header__title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: var(--color-primary) !important;
  margin-bottom: 8px !important;
}
.term-description {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  max-width: 720px;
}

/* ---- Order / Sorting ---- */
.woocommerce-ordering {
  margin-bottom: 24px !important;
}
.woocommerce-ordering select {
  padding: 8px 32px 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
}

/* ============================================
   SINGLE PRODUCT PAGE
   ============================================ */
.single-product .product {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
}
.single-product .woocommerce-product-gallery {
  width: calc(48% - 20px) !important;
  float: none !important;
}
.single-product .summary {
  width: calc(52% - 20px) !important;
  float: none !important;
}
.single-product .summary h1.product_title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.single-product .summary .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 20px;
}
.single-product .summary .woocommerce-product-details__short-description {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.single-product .summary .product_meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 13px;
  color: #888;
}
.single-product .summary .product_meta a {
  color: var(--color-accent);
}
.single-product .summary .cart {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.single-product .summary .cart .quantity {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.single-product .summary .cart .quantity input {
  width: 60px;
  padding: 10px;
  border: none;
  text-align: center;
  font-size: 14px;
}
.single-product .summary .add-request-quote-button {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: 12px 28px !important;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.single-product .summary .add-request-quote-button:hover {
  background: var(--color-accent-dark) !important;
}

/* ---- Related Products ---- */
.single-product .related {
  clear: both;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.single-product .related h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

/* ---- WooCommerce Gallery Flex Fix ---- */
.single-product .woocommerce-product-gallery .flex-viewport {
  border-radius: 12px;
  border: 1px solid #eee;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs {
  margin-top: 8px;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs li {
  margin: 0 4px 0 0 !important;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs img {
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.single-product .woocommerce-product-gallery .flex-control-thumbs img.flex-active {
  border-color: var(--color-accent);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.page-id-about .entry-content,
.page-template-default .entry-content {
  max-width: 1000px;
  margin: 0 auto;
}
.page-id-about h2,
.page-template-default h2 {
  color: var(--color-primary);
  font-weight: 700;
  margin: 32px 0 16px;
}
.page-id-about h3 {
  color: var(--color-primary);
  font-weight: 600;
  margin: 24px 0 12px;
}
.page-id-about p,
.page-template-default p {
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-id-about ul,
.page-template-default ul {
  padding-left: 24px;
  margin-bottom: 20px;
}
.page-id-about ul li,
.page-template-default ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #444;
  position: relative;
  padding-left: 8px;
}
.page-id-about ul li::marker {
  color: var(--color-accent);
}

/* ---- Contact Page ---- */
.wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
}
.wpcf7-form label {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 14px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  color: #333;
  transition: border-color 0.2s;
  box-sizing: border-box;
  margin-bottom: 16px;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
.wpcf7-form textarea {
  height: 140px;
  resize: vertical;
}
.wpcf7-form input[type="submit"] {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover {
  background: var(--color-accent-dark);
}

/* ============================================
   KOCA PANEL (Floating panel)
   ============================================ */
.koca-panel {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  max-width: 900px;
  height: 80vh;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: none;
}
.koca-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.koca-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}
.koca-panel-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

/* ---- Request a Quote Page ---- */
.yith-ywraq-mail-form-wrapper {
  max-width: 640px;
  margin: 40px auto;
}
.yith-ywraq-mail-form-wrapper h2 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 24px;
}
#yith-ywraq-mail-form label {
  display: block;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 14px;
}
#yith-ywraq-mail-form input,
#yith-ywraq-mail-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  box-sizing: border-box;
}
#yith-ywraq-mail-form input:focus,
#yith-ywraq-mail-form textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}
#yith-ywraq-mail-form textarea {
  height: 120px;
}
#yith-ywraq-mail-form .button {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
#yith-ywraq-mail-form .button:hover {
  background: var(--color-accent-dark);
}

/* ============================================
   NOTICES
   ============================================ */
.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--color-accent) !important;
  background: #fef8f5 !important;
  color: #444 !important;
  border-radius: 8px;
  padding: 14px 20px !important;
}
.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--color-accent) !important;
}

/* ============================================
   RESPONSIVE: WooCommerce Overrides
   ============================================ */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .single-product .woocommerce-product-gallery,
  .single-product .summary {
    width: 100% !important;
  }
  .koca-panel { width: 90vw; height: 70vh; }
}

@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .woocommerce ul.products li.product a img {
    height: 160px;
  }
  .single-product .product {
    flex-direction: column;
    gap: 24px;
    padding: 20px 0;
  }
  .woocommerce-products-header {
    padding: 20px 0;
  }
  .woocommerce-products-header__title {
    font-size: 1.4rem !important;
  }
  .yith-ywraq-mail-form-wrapper {
    padding: 0 16px;
  }
  .wpcf7-form {
    padding: 0 16px;
  }
  .koca-panel {
    width: 95vw;
    height: 65vh;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
  .single-product .summary h1.product_title {
    font-size: 1.3rem;
  }
}
/* ============================================
   KOCA GLOBAL - Category Page & Homepage Polish
   ============================================ */

/* Hero section - ensure background image works */
.hero {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
}

/* Category cards on homepage */
.category-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.category-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.1);
}
.category-card-icon {
  height: 180px;
  background-size: cover !important;
  background-position: center !important;
}
.category-card-title {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Deal cards on homepage */
.deal-card {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.deal-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.1);
}
.deal-card-image {
  height: 180px;
  background-size: cover !important;
  background-position: center !important;
}

/* Buttons consistency */
.koca-get-quote-btn,
.koca-btn-primary,
.btn-primary {
  background: var(--color-accent) !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.koca-get-quote-btn:hover,
.koca-btn-primary:hover,
.btn-primary:hover {
  background: var(--color-accent-dark) !important;
  color: #fff !important;
  text-decoration: none;
}

.koca-btn-outline,
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  background: transparent;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.koca-btn-outline:hover,
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  text-decoration: none;
}

.koca-btn-b2b,
.btn-b2b {
  background: var(--color-primary) !important;
  color: #fff !important;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.koca-btn-b2b:hover,
.btn-b2b:hover {
  background: #1a2635 !important;
  color: #fff !important;
  text-decoration: none;
}

.koca-btn-b2c,
.btn-b2c {
  background: #fff !important;
  color: var(--color-primary) !important;
  border: 2px solid var(--color-primary);
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.koca-btn-b2c:hover,
.btn-b2c:hover {
  background: var(--color-primary) !important;
  color: #fff !important;
  text-decoration: none;
}

/* Koca contact CTA sections */
.koca-contact-cta {
  background: linear-gradient(135deg, #1a1a2e, #2C3E50);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 40px 0;
}
.koca-contact-cta h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.koca-contact-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  margin-bottom: 24px;
}
.koca-contact-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   MOBILE REFINEMENT
   ============================================ */
@media (max-width: 768px) {
  .category-card-icon { height: 130px; }
  .deal-card-image { height: 130px; }
  .koca-contact-cta { padding: 40px 16px; }
  .koca-contact-cta h2 { font-size: 1.3rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { text-align: center; }
}
