/* ==========================================================================
   OEOOK Theme — main.css v1.3.0 (Refactored)
   Structure:
     1. Variables & Reset
     2. Layout Utilities
     3. Buttons
     4. Header
     5. Hero Carousel
     6. Section Titles
     7. Product Cards & Grids
     8. Category Bento Grid
     9. Feature Banner
    10. Promo Banner
    11. Why-Us Section
    12. Testimonials
    13. Newsletter
    14. Footer
    15. About Page
    16. Contact Page
    17. FAQ Page
    18. Shipping & Warranty Pages
    19. WooCommerce Overrides (Archive, Single, Cart, Checkout)
    20. Responsive (tablet ≤1024, mobile ≤768)
   ========================================================================== */

/* ------------------------------------------------------------------
   1. Variables & Reset
   ------------------------------------------------------------------ */
:root {
  --green-dark: #166534;
  --green-mid: #15803d;
  --green-light: #16a34a;
  --green-pale: #dcfce7;
  --black: #0a0a0a;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #fff;
  --orange: #f97316;
  --red: #ef4444;
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --header-h: 72px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
  --shadow-md: 0 4px 16px rgba(0,0,0,.18);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.28);
  --transition: all .25s ease;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  letter-spacing: .05em;
  text-transform: uppercase;
  text-wrap: balance;
}

img { display: block; max-width: 100%; height: auto; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ------------------------------------------------------------------
   2. Layout Utilities
   ------------------------------------------------------------------ */
.max-w-7xl { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.max-w-6xl { max-width: 1152px; margin: 0 auto; padding: 0 24px; }
.max-w-5xl { max-width: 1024px; margin: 0 auto; padding: 0 24px; }
.max-w-4xl { max-width: 896px; margin: 0 auto; padding: 0 24px; }
.max-w-3xl { max-width: 768px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.bg-white { background: var(--white); }
.mb-8 { margin-bottom: 32px; }
.oeook-main { padding-top: var(--header-h); }
.glass-card {
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ------------------------------------------------------------------
   3. Buttons (single source of truth)
   ------------------------------------------------------------------ */
.oeook-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 0;
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: .1em;
  font-weight: 600;
  text-transform: uppercase;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.oeook-btn-primary {
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 32px;
}
.oeook-btn-primary:hover { background: #ea580c; color: var(--white); }

.oeook-btn-dark { background: var(--black); color: var(--white); }
.oeook-btn-dark:hover { background: var(--gray-800); }

.oeook-btn-white {
  background: var(--white);
  color: var(--green-dark);
  border-radius: var(--radius);
}
.oeook-btn-white:hover { background: var(--gray-100); }

.oeook-btn-outline {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
}
.oeook-btn-outline:hover { background: var(--gray-100); border-color: var(--gray-400); }

.oeook-btn-outline-light {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 28px;
}
.oeook-btn-outline-light:hover { background: var(--white); color: var(--black); }

.oeook-btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
  border-radius: var(--radius);
}
.oeook-btn-outline-white:hover { background: rgba(255,255,255,.15); }

.oeook-btn-green-light { background: var(--green-light); color: var(--white); }
.oeook-btn-green-light:hover { background: var(--green-dark); color: var(--white); }

.oeook-btn-sm { padding: 8px 16px; font-size: 12px; }
.oeook-btn-xl { padding: 16px 32px; font-size: 16px; }
.oeook-btn-full { width: 100%; justify-content: center; }
.oeook-btn-disabled { background: var(--gray-400); color: var(--white); cursor: not-allowed; }
.oeook-btn svg { flex-shrink: 0; }

/* ------------------------------------------------------------------
   4. Header
   ------------------------------------------------------------------ */
.oeook-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: background .3s, box-shadow .3s;
}
.oeook-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.oeook-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.oeook-logo { display: flex; align-items: center; }
.oeook-logo-img { height: 40px; width: auto; }
.oeook-logo-text {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Desktop Nav */
.oeook-nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.oeook-nav-list li a {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: color .2s;
}
.oeook-nav-list li a:hover { color: var(--green-dark); }

/* Header Actions */
.oeook-header-actions { display: flex; align-items: center; gap: 8px; }
.oeook-icon-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--gray-700);
  transition: background .2s, color .2s;
}
.oeook-icon-btn:hover { background: var(--gray-100); color: var(--green-dark); }
.oeook-cart-btn { position: relative; }
.oeook-cart-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px; height: 18px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.oeook-cart-count.has-items { display: flex; }

/* Hamburger (mobile) */
.oeook-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
}
.oeook-hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--gray-900);
  transition: transform .3s, opacity .3s;
}
.oeook-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.oeook-hamburger.open span:nth-child(2) { opacity: 0; }
.oeook-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Search Bar */
.oeook-search-bar {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  z-index: 999;
}
.oeook-search-inner { display: flex; align-items: center; padding: 12px 0; }
.oeook-search-inner form { display: flex; width: 100%; gap: 8px; }
.oeook-search-input {
  flex: 1;
  padding: 10px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
}
.oeook-search-input:focus { outline: none; border-color: var(--green-dark); }
.oeook-search-submit {
  padding: 10px 16px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center;
}
.oeook-search-submit:hover { background: var(--green-mid); }

/* Mobile Menu */
.oeook-mobile-menu {
  position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 998;
  display: none;
  overflow-y: auto;
}
.oeook-mobile-menu.open { display: block; }
.oeook-mobile-menu-inner { padding: 24px; }
.oeook-mobile-nav-list { display: flex; flex-direction: column; gap: 0; }
.oeook-mobile-nav-list li a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-900);
  border-bottom: 1px solid var(--gray-200);
}

/* ------------------------------------------------------------------
   5. Hero Carousel
   ------------------------------------------------------------------ */
.oeook-hero,
.oeook-hero-carousel { position: relative; overflow: hidden; }
.oeook-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.oeook-hero-slide {
  position: relative;
  min-height: 600px;
  display: none;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.oeook-hero-slide.active { display: flex; }
.oeook-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65), rgba(0,0,0,.2));
}
.oeook-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 640px;
  padding: 0 24px;
}
.oeook-hero-kicker,
.oeook-hero-accent-label {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: .85;
}
.oeook-hero-title {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.oeook-hero-desc,
.oeook-hero-subtitle { font-size: 18px; line-height: 1.7; margin-bottom: 32px; opacity: .9; }
.oeook-hero-accent { color: var(--green-light); }
.oeook-hero-cta { display: inline-flex; }
.oeook-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Dots */
.oeook-hero-dots {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 5;
}
.oeook-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .3s;
}
.oeook-dot.active { background: var(--white); }

/* Carousel Arrows */
.oeook-carousel-prev,
.oeook-carousel-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: none; border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: background .2s;
}
.oeook-carousel-prev { left: 16px; }
.oeook-carousel-next { right: 16px; }
.oeook-carousel-prev:hover,
.oeook-carousel-next:hover { background: rgba(255,255,255,.3); }

/* ------------------------------------------------------------------
   6. Section Titles
   ------------------------------------------------------------------ */
.oeook-section { padding: 80px 0; }
.oeook-section-inner { /* max-w-7xl already handles width */ }
.oeook-section-center-header { text-align: center; margin-bottom: 48px; }
.oeook-section-label {
  display: flex; align-items: center; gap: 8px;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.oeook-section-divider {
  width: 48px; height: 3px;
  background: var(--green-dark);
  margin-bottom: 16px;
}
.oeook-section-divider.center { margin-left: auto; margin-right: auto; }
.oeook-section-divider.green { background: var(--green-light); }
.oeook-section-header { margin-bottom: 48px; display: flex; align-items: flex-start; justify-content: space-between; }
.oeook-section-kicker {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.oeook-section-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}
.oeook-section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}

/* ------------------------------------------------------------------
   7. Product Cards & Grids
   ------------------------------------------------------------------ */
.oeook-products-section { padding: 80px 0; }
.oeook-product-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.oeook-product-scroll-wrap {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}
.oeook-product-scroll-wrap::-webkit-scrollbar { height: 6px; }
.oeook-product-scroll-wrap::-webkit-scrollbar-track { background: var(--gray-100); border-radius: 3px; }
.oeook-product-scroll-wrap::-webkit-scrollbar-thumb { background: var(--gray-400); border-radius: 3px; }
.oeook-product-scroll-wrap .oeook-product-card {
  min-width: 280px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

/* Product Card */
.oeook-product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.oeook-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.oeook-product-card-link { display: block; color: inherit; text-decoration: none; }

/* Card Image */
.oeook-product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}
.oeook-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.oeook-product-card:hover .oeook-product-img { transform: scale(1.05); }

/* Badges */
.oeook-product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; gap: 6px;
  z-index: 2;
}
.oeook-badge-cat {
  background: var(--white);
  color: var(--gray-900);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.oeook-badge-sale {
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Card Info */
.oeook-product-info { padding: 16px; }
.oeook-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.oeook-product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-900);
}
.oeook-stock {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.oeook-stock.in-stock { color: var(--green-light); }
.oeook-stock.stock-low { color: var(--green-dark); }
.oeook-stock.out-stock { color: var(--red); }

.oeook-product-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
  letter-spacing: .03em;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.oeook-product-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.oeook-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oeook-product-price { font-size: 18px; font-weight: 700; color: var(--gray-900); }
.oeook-product-card .woocommerce-Price-amount { font-size: 18px; font-weight: 700; color: var(--gray-900); }
.oeook-product-card .woocommerce-Price-amount del { font-size: 14px; color: var(--gray-400); font-weight: 400; }
.oeook-product-card .woocommerce-Price-amount ins { text-decoration: none; color: var(--red); }

/* Add to Cart button */
.oeook-add-cart-btn {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  color: var(--white);
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: background .2s;
}
.oeook-add-cart-btn:hover { background: var(--green-dark); }

/* ------------------------------------------------------------------
   7b. New Arrivals / Scroll Track
   ------------------------------------------------------------------ */
.oeook-new-arrivals { padding: 80px 0; }
.oeook-scroll-track-wrapper { overflow: hidden; position: relative; }
.oeook-scroll-track {
  display: flex;
  gap: 24px;
  animation: oeook-scroll 30s linear infinite;
}
@keyframes oeook-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.oeook-arrival-card {
  min-width: 260px;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}
.oeook-arrival-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3/4;
  background: var(--gray-100);
  margin-bottom: 12px;
}
.oeook-arrival-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.oeook-arrival-card:hover .oeook-arrival-img-wrap img { transform: scale(1.05); }
.oeook-arrival-placeholder { width: 100%; height: 100%; background: var(--gray-200); }
.oeook-badge-new {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.oeook-arrival-cat {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.oeook-arrival-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.oeook-arrival-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

/* ------------------------------------------------------------------
   8. Category Bento Grid
   ------------------------------------------------------------------ */
.oeook-categories-section,
.oeook-categories { padding: 80px 0; background: var(--gray-100); }

.oeook-category-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.oeook-cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.oeook-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.oeook-cat-card:hover img { transform: scale(1.1); }

.oeook-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  transition: background .3s;
}
.oeook-cat-card:hover .oeook-cat-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,.2));
}

.oeook-cat-name {
  font-family: var(--font-head);
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Large card (Tents) — spans 1 col on mobile, 2 cols on desktop */
.oeook-cat-card.oeook-cat-large {
  aspect-ratio: 3/4;
}

/* Right sub-grid: 4 small cards in 2x2 */
.oeook-cat-grid-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.oeook-cat-card.oeook-cat-small { aspect-ratio: 1/1; }

/* ------------------------------------------------------------------
   9. Feature Banner
   ------------------------------------------------------------------ */
.oeook-feature-banner { background: var(--gray-900); padding: 80px 0; }
.oeook-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.oeook-feature-kicker {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
}
.oeook-feature-title {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.oeook-feature-desc,
.oeook-feature-text { color: var(--gray-400); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.oeook-feature-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.oeook-feature-image-col { position: relative; }
.oeook-feature-stat {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
}
.oeook-feature-stat-number {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 700;
  color: var(--white);
}
.oeook-feature-stat-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }
.oeook-feature-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.oeook-feature-img { width: 100%; height: 100%; object-fit: cover; }

/* ------------------------------------------------------------------
   10. Promo Banner
   ------------------------------------------------------------------ */
.oeook-promo-banner {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 64px 0;
}
.oeook-promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.oeook-promo-content { max-width: 600px; }
.oeook-promo-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.oeook-promo-text,
.oeook-promo-subtitle { color: rgba(255,255,255,.9); font-size: 16px; line-height: 1.6; }

/* ------------------------------------------------------------------
   11. Why-Us Section
   ------------------------------------------------------------------ */
.oeook-why-us { padding: 80px 0; }
.oeook-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.oeook-why-card { text-align: center; padding: 32px 16px; }
.oeook-why-icon {
  width: 64px; height: 64px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--green-dark);
}
.oeook-why-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.oeook-why-card p,
.oeook-why-desc { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.oeook-why-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ------------------------------------------------------------------
   12. Testimonials
   ------------------------------------------------------------------ */
.oeook-testimonials-section,
.oeook-testimonials { padding: 80px 0; background: var(--gray-900); }
.oeook-testimonials-section .oeook-section-title,
.oeook-testimonials .oeook-section-title,
.center-white { color: var(--white); }
.oeook-testimonials-section .oeook-section-kicker,
.oeook-testimonials .oeook-section-kicker { color: var(--green-light); }
.oeook-testimonials-section .oeook-section-subtitle,
.oeook-testimonials .oeook-section-subtitle,
.oeook-testimonials-intro { color: var(--gray-400); }

.oeook-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.oeook-testimonial-card {
  background: var(--gray-800);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.oeook-stars-row { display: flex; gap: 2px; margin-bottom: 12px; }
.star-orange { color: var(--orange); font-size: 16px; }
.oeook-testimonial-header { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.oeook-testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  border: 2px solid var(--green-light);
}
.oeook-testimonial-name { font-weight: 600; color: var(--white); font-size: 14px; }
.oeook-testimonial-role { font-size: 12px; color: var(--gray-400); }
.oeook-testimonial-text { color: var(--gray-400); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.oeook-testimonial-stars { color: var(--orange); font-size: 16px; display: flex; gap: 2px; }

/* ------------------------------------------------------------------
   13. Newsletter
   ------------------------------------------------------------------ */
.oeook-newsletter-section {
  padding: 80px 0;
  background: linear-gradient(to right, var(--green-dark), var(--green-mid));
}
.oeook-newsletter-inner { text-align: center; }
.oeook-newsletter-inner .oeook-section-title,
.oeook-newsletter-title { color: var(--white); font-family: var(--font-head); font-size: 36px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.oeook-newsletter-inner .oeook-section-subtitle,
.oeook-newsletter-subtitle { color: rgba(255,255,255,.85); font-size: 16px; max-width: 640px; margin: 0 auto; }
.oeook-newsletter-form-hp {
  display: flex;
  max-width: 480px;
  margin: 32px auto 0;
  gap: 0;
}
.oeook-newsletter-form-hp input[type="email"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
}
.oeook-newsletter-form-hp button {
  padding: 14px 28px;
  background: var(--gray-900);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  cursor: pointer;
  transition: background .2s;
}
.oeook-newsletter-form-hp button:hover { background: var(--black); }

/* ------------------------------------------------------------------
   14. Footer
   ------------------------------------------------------------------ */
.oeook-footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 0; }
.oeook-footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.oeook-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.oeook-footer-logo { display: inline-block; margin-bottom: 16px; }
.oeook-footer-logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.oeook-footer-logo-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.oeook-footer-tagline { font-size: 14px; line-height: 1.7; color: var(--gray-400); }
.oeook-footer-heading {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 20px;
}
.oeook-footer-links li { margin-bottom: 10px; }
.oeook-footer-links li a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color .2s;
}
.oeook-footer-links li a:hover { color: var(--white); }
.oeook-footer-newsletter-text { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.oeook-newsletter-form {
  display: flex;
  gap: 0;
}
.oeook-newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.05);
  color: var(--white);
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 14px;
}
.oeook-newsletter-input::placeholder { color: var(--gray-500); }
.oeook-newsletter-btn {
  padding: 10px 16px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: center;
  transition: background .2s;
}
.oeook-newsletter-btn:hover { background: var(--green-light); }
.oeook-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.oeook-footer-copy { font-size: 13px; color: var(--gray-500); }
.oeook-footer-legal { display: flex; gap: 24px; }
.oeook-footer-legal a { font-size: 13px; color: var(--gray-500); transition: color .2s; }
.oeook-footer-legal a:hover { color: var(--white); }

/* ------------------------------------------------------------------
   15. About Page
   ------------------------------------------------------------------ */
.oeook-about-page { padding: 80px 0; }
.oeook-page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.oeook-page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.55);
}
.oeook-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}
.oeook-page-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}
.oeook-page-hero-content p { font-size: 18px; opacity: .9; line-height: 1.6; }

.oeook-about-section { padding: 80px 0; }
.oeook-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.oeook-about-img-wrap { border-radius: var(--radius-lg); overflow: hidden; }
.oeook-mission-section { background: var(--gray-100); }
.oeook-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.oeook-value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.oeook-value-icon {
  width: 56px; height: 56px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--green-dark);
}
.oeook-value-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.oeook-value-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.oeook-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.oeook-team-card { text-align: center; }
.oeook-team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
}
.oeook-team-card h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.oeook-team-card p { font-size: 13px; color: var(--gray-500); }

.oeook-about-cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}
.oeook-about-cta h2 { font-size: 36px; margin-bottom: 16px; }
.oeook-about-cta p { font-size: 16px; opacity: .9; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.oeook-about-cta-btns { display: flex; gap: 12px; justify-content: center; align-items: center; }

/* ------------------------------------------------------------------
   16. Contact Page
   ------------------------------------------------------------------ */
.oeook-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.oeook-form-desc { color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }
.oeook-contact-form { display: flex; flex-direction: column; gap: 20px; }
.oeook-form-group { display: flex; flex-direction: column; }
.oeook-form-group label { font-size: 14px; font-weight: 500; color: var(--gray-700); margin-bottom: 6px; }
.oeook-input {
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  transition: border-color .2s;
  width: 100%;
}
.oeook-input:focus {
  border-color: var(--green-dark);
  outline: none;
  box-shadow: 0 0 0 3px rgba(22,101,52,.1);
}
.oeook-textarea { min-height: 140px; resize: vertical; }
.oeook-contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 12px;
}
.oeook-contact-info-card.green-tint { background: #f0fdf4; border: 1px solid var(--green-pale); }
.oeook-cinfo-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oeook-contact-info-card h3 { font-size: 15px; font-weight: 600; color: var(--gray-900); margin: 0 0 4px; }
.oeook-contact-info-card p { font-size: 14px; color: #4b5563; margin: 0; line-height: 1.5; }
.oeook-contact-info-card small,
.oeook-info-small { font-size: 12px; color: var(--gray-500); display: flex; align-items: center; gap: 6px; margin-top: 6px; }
.oeook-green-link { color: var(--green-mid); font-weight: 500; }
.oeook-green-link:hover { text-decoration: underline; }

/* ------------------------------------------------------------------
   17. FAQ Page
   ------------------------------------------------------------------ */
.oeook-faq-list { display: flex; flex-direction: column; gap: 16px; }
.oeook-faq-item { border: 1px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
.oeook-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-900);
  font-family: var(--font-body);
  transition: background .15s;
}
.oeook-faq-question:hover { background: #f9fafb; }
.oeook-faq-question span { flex: 1; padding-right: 16px; }
.oeook-faq-chevron { flex-shrink: 0; color: var(--gray-500); transition: transform .2s; }
.oeook-faq-item.open .oeook-faq-chevron { transform: rotate(180deg); }
.oeook-faq-answer { padding: 0 20px 20px; color: #4b5563; line-height: 1.7; font-size: 14px; }
.oeook-faq-answer p { margin: 0; }

.oeook-faq-cta-box {
  margin-top: 64px;
  background: #f0fdf4;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.oeook-faq-cta-box h3 { font-size: 18px; font-weight: 700; color: var(--gray-900); margin: 0 0 8px; }
.oeook-faq-cta-box p { color: #4b5563; font-size: 14px; margin: 0 0 16px; }

/* ------------------------------------------------------------------
   18. Shipping & Warranty Pages
   ------------------------------------------------------------------ */
.oeook-info-section { margin-bottom: 48px; }
.oeook-info-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.oeook-info-heading h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0;
}
.oeook-info-cards { display: flex; flex-direction: column; gap: 16px; }
.oeook-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f9fafb;
  border-radius: 12px;
  padding: 24px;
}
.oeook-info-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oeook-info-card h3 { font-size: 16px; font-weight: 700; color: var(--gray-900); margin: 0 0 4px; }
.oeook-info-highlight { color: #4b5563; font-size: 14px; margin: 0 0 4px; }
.oeook-info-detail { color: var(--gray-500); font-size: 13px; margin: 0; }
.oeook-check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.oeook-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #4b5563;
}
.oeook-check-list li::before {
  content: '\2022';
  color: var(--green-light);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
}

/* Warranty-specific */
.oeook-warranty-banner {
  background: linear-gradient(to right, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}
.oeook-warranty-banner h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.oeook-warranty-banner p { color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.7; margin: 0; }
.oeook-covered-item { align-items: flex-start; gap: 16px; }
.oeook-covered-item svg { flex-shrink: 0; margin-top: 2px; }
.oeook-covered-item h3 { font-size: 15px; font-weight: 600; margin: 0 0 4px; }
.oeook-covered-item p { font-size: 13px; color: #4b5563; margin: 0; }
.oeook-not-covered-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.oeook-not-covered-list li {
  display: flex; align-items: flex-start; gap: 8px;
  color: #4b5563; font-size: 14px;
}
.oeook-not-covered-list li::before {
  content: '\2022'; color: var(--gray-400);
  font-weight: 700; font-size: 16px; line-height: 1.4;
}
.oeook-repair-banner {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}
.oeook-repair-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.oeook-repair-heading h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.oeook-repair-banner p { color: #d1d5db; font-size: 14px; line-height: 1.7; margin: 0 0 16px; }

/* ------------------------------------------------------------------
   19. WooCommerce Overrides
   ------------------------------------------------------------------ */
/* Archive page filters & sorting */
.oeook-shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.oeook-result-count { font-size: 14px; color: var(--gray-500); }
.oeook-sort-form select {
  padding: 8px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 14px;
  background: var(--white);
}

/* Single product */
.oeook-single-product { padding: 40px 0 80px; }
.oeook-single-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.oeook-single-gallery { border-radius: var(--radius-lg); overflow: hidden; }
.oeook-single-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.oeook-single-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.oeook-single-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.oeook-single-desc { color: var(--gray-700); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.oeook-qty-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.oeook-qty-wrap label { font-weight: 600; font-size: 14px; }
.oeook-qty-wrap input[type="number"] {
  width: 80px;
  padding: 8px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-align: center;
  font-size: 16px;
}

/* Cart */
.oeook-cart-page { padding: 40px 0 80px; }
.oeook-cart-table { width: 100%; border-collapse: collapse; }
.oeook-cart-table th {
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  border-bottom: 2px solid var(--gray-200);
}
.oeook-cart-table td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.oeook-cart-item-info { display: flex; align-items: center; gap: 16px; }
.oeook-cart-item-img { width: 80px; height: 80px; border-radius: var(--radius); object-fit: cover; }
.oeook-cart-item-name { font-weight: 600; font-size: 14px; color: var(--gray-900); }
.oeook-cart-remove {
  color: var(--gray-400);
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .2s;
}
.oeook-cart-remove:hover { color: var(--red); }
.oeook-cart-summary {
  max-width: 400px;
  margin-left: auto;
  margin-top: 32px;
  padding: 32px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
}
.oeook-cart-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 15px;
}
.oeook-cart-summary-row.total {
  font-weight: 700;
  font-size: 18px;
  border-top: 2px solid var(--gray-200);
  margin-top: 12px;
  padding-top: 16px;
}

/* Checkout */
.oeook-checkout-page { padding: 40px 0 80px; }

/* Thank You */
.oeook-thankyou { padding: 80px 0; text-align: center; }
.oeook-thankyou-icon {
  width: 80px; height: 80px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--green-dark);
}
.oeook-thankyou h1 { font-size: 36px; margin-bottom: 12px; }
.oeook-thankyou p { color: var(--gray-500); font-size: 16px; margin-bottom: 32px; }

/* Stars (shared) */
.oeook-stars { display: flex; gap: 2px; color: var(--orange); }
.oeook-stars .star { font-size: 16px; color: var(--gray-200); }
.oeook-stars .star.filled { color: var(--orange); }

/* ------------------------------------------------------------------
   20. Responsive
   ------------------------------------------------------------------ */

/* -- Tablet (≤1024px) -- */
@media (max-width: 1024px) {
  .oeook-hero-title { font-size: 40px; }
  .oeook-feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .oeook-why-grid { grid-template-columns: repeat(2, 1fr); }
  .oeook-testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
  .oeook-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .oeook-about-grid { grid-template-columns: 1fr; gap: 40px; }
  .oeook-values-grid { grid-template-columns: repeat(2, 1fr); }
  .oeook-team-grid { grid-template-columns: repeat(2, 1fr); }
  .oeook-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .oeook-single-grid { grid-template-columns: 1fr; gap: 32px; }
  .oeook-product-grid-4 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* -- Desktop category bento (≥769px) -- */
@media (min-width: 769px) {
  .oeook-category-bento {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .oeook-cat-card.oeook-cat-large {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }
  .oeook-cat-grid-right {
    grid-column: span 2;
    gap: 16px;
  }
  .oeook-cat-name { font-size: 18px; }
  .oeook-cat-card.oeook-cat-large .oeook-cat-name { font-size: 24px; }
}

/* -- Mobile (≤768px) -- */
@media (max-width: 768px) {
  /* Header */
  .oeook-nav { display: none; }
  .oeook-hamburger { display: flex; }

  /* Hero */
  .oeook-hero-slide { min-height: 480px; }
  .oeook-hero-title { font-size: 32px; }
  .oeook-hero-desc { font-size: 15px; }
  .oeook-hero-btns { flex-direction: column; }
  .oeook-hero-btns .oeook-btn { width: 100%; justify-content: center; }

  /* Sections */
  .oeook-products-section { padding: 48px 0; }
  .oeook-section-title { font-size: 28px; }
  .oeook-section-header { margin-bottom: 32px; }

  /* Product grid */
  .oeook-product-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .oeook-product-scroll-wrap .oeook-product-card { min-width: 240px; }
  .oeook-product-info { padding: 12px; }
  .oeook-product-name { font-size: 14px; }
  .oeook-product-desc { display: none; }
  .oeook-product-price { font-size: 15px; }
  .oeook-add-cart-btn { width: 36px; height: 36px; }

  /* Category bento */
  .oeook-cat-name { font-size: 10px; }
  .oeook-cat-card.oeook-cat-large .oeook-cat-name { font-size: 14px; }
  .oeook-category-bento { gap: 6px; }
  .oeook-cat-grid-right { gap: 6px; }

  /* Feature banner */
  .oeook-feature-banner { padding: 48px 0; }
  .oeook-feature-inner { grid-template-columns: 1fr; gap: 32px; }
  .oeook-feature-title { font-size: 28px; }

  /* Promo */
  .oeook-promo-inner { flex-direction: column; text-align: center; }
  .oeook-promo-title { font-size: 24px; }

  /* Why-Us */
  .oeook-why-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Testimonials */
  .oeook-testimonials-section,
.oeook-testimonials { padding: 48px 0; }

  /* Newsletter */
  .oeook-newsletter-section { padding: 48px 0; }
  .oeook-newsletter-form-hp { flex-direction: column; gap: 12px; }
  .oeook-newsletter-form-hp input[type="email"] { border-radius: var(--radius); }
  .oeook-newsletter-form-hp button { border-radius: var(--radius); justify-content: center; }

  /* Footer */
  .oeook-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .oeook-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* About */
  .oeook-page-hero { min-height: 300px; }
  .oeook-page-hero-content h1 { font-size: 32px; }
  .oeook-values-grid { grid-template-columns: 1fr; }
  .oeook-team-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .oeook-about-cta { padding: 40px 24px; }
  .oeook-about-cta h2 { font-size: 28px; }
  .oeook-about-cta-btns { flex-direction: column; }

  /* Cart */
  .oeook-cart-table thead { display: none; }
  .oeook-cart-table,
  .oeook-cart-table tbody,
  .oeook-cart-table tr,
  .oeook-cart-table td { display: block; width: 100%; }
  .oeook-cart-table tr { margin-bottom: 16px; padding: 16px; background: var(--gray-100); border-radius: var(--radius); }
  .oeook-cart-table td { padding: 8px 0; border-bottom: none; }
  .oeook-cart-summary { max-width: 100%; }

  /* Single product */
  .oeook-single-title { font-size: 24px; }
  .oeook-single-price { font-size: 22px; }
}

/* -- Small mobile (≤480px) -- */
@media (max-width: 480px) {
  .max-w-7xl,
  .max-w-6xl,
  .max-w-5xl,
  .max-w-4xl,
  .max-w-3xl { padding: 0 16px; }

  .oeook-hero-title { font-size: 26px; }
  .oeook-hero-slide { min-height: 400px; }
  .oeook-product-grid-4 { grid-template-columns: 1fr; }
  .oeook-team-grid { grid-template-columns: 1fr; }
}
