/* ============================================
   ILERA CARE - PREMIUM REDESIGN
   Floating Header, UI Hero, 3D Effects
   ============================================ */

:root {
  --brand-dark: #1a3320;
  --brand-green: #2d5a3d;
  --brand-light-green: #4a7c59;
  --brand-sand: #f5f0e8;
  --brand-cream: #faf8f4;
  --brand-gold: #c9a96e;
  --brand-gold-light: #e8d5a3;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-400: #a0a0a0;
  --gray-600: #666666;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--brand-cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Prevent any accidental horizontal overflow on very small viewports */
html, body {
  max-width: 100vw;
  overscroll-behavior-x: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */
.section-label {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.section-label.light {
  color: var(--brand-gold-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.0625rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

/* ============================================
   FLOATING HEADER
   ============================================ */
.header {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  transform: none;
  width: auto;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
  top: 0.75rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  height: 56px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

/* Shop button in header */
.header-shop-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

.header-shop-btn:hover {
  background: var(--brand-sand);
  color: var(--brand-dark);
}

/* Nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--brand-dark);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--gray-600);
  transition: all 0.3s ease;
}

.header-icon:hover {
  background: var(--brand-sand);
  color: var(--brand-dark);
}

.header-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  width: 36px;
  height: 36px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-inner a {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brand-dark);
  transition: color 0.3s ease;
}

.mobile-menu-inner a:hover {
  color: var(--brand-green);
}

/* ============================================
   HERO SECTION - UI DESIGN MATCH
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-sand) 50%, #e8e0d4 100%);
  padding: 6rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

/* Hero Left */
.hero-left {
  order: 2;
}

.hero-content-box {
  max-width: 500px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-title .line {
  display: block;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--brand-dark);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(26, 51, 32, 0.3);
}

.hero-btn:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 51, 32, 0.4);
}

.hero-btn svg {
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: translateX(3px);
}

/* Hero Center */
.hero-center {
  order: 1;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 380px;
}

.hero-main-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
}

/* Decorative Leaves */
.hero-leaf {
  position: absolute;
  border-radius: 50% 0 50% 50%;
  z-index: 1;
}

.leaf-1 {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-light-green), var(--brand-green));
  top: 10%;
  left: -10%;
  transform: rotate(-30deg);
  opacity: 0.8;
}

.leaf-2 {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6b9b7a, var(--brand-light-green));
  bottom: 20%;
  right: -5%;
  transform: rotate(45deg);
  opacity: 0.7;
}

.leaf-3 {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-light));
  top: 50%;
  right: -8%;
  transform: rotate(15deg);
  opacity: 0.6;
}

/* Hero Right */
.hero-right {
  order: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Review Card */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--brand-gold);
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--brand-dark);
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--brand-gold);
}

.rating {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-gold);
  background: rgba(201, 169, 110, 0.15);
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
}

.review-text {
  font-size: 0.8125rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Sale Card */
.sale-card {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-green));
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sale-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}

.sale-badge {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--brand-dark);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.sale-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.sale-desc {
  font-size: 0.8125rem;
  opacity: 0.8;
  line-height: 1.5;
}

.sale-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sale-card:hover .sale-arrow {
  background: rgba(255,255,255,0.25);
  transform: rotate(45deg);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy {
  padding: 5rem 0;
  background: var(--white);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.philosophy-text {
  max-width: 500px;
}

.philosophy-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.philosophy-desc.secondary {
  font-size: 0.9375rem;
  color: var(--gray-400);
}

.philosophy-visual {
  position: relative;
}

.philosophy-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.philosophy-img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-green);
}

.badge-text {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-600);
}

/* ============================================
   ABOUT / WHO WE ARE - SINGLE SCREEN
   ============================================ */
.about {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
}

.about-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.about-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-xl);
}

.about-img-side {
  position: relative;
  min-height: 300px;
  overflow: hidden;
}

.about-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-dark), transparent);
}

.about-text-side {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-item {
  text-align: center;
}

.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--brand-gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-top: 0.5rem;
}

/* ============================================
   VISION & MISSION - 3D CARDS
   ============================================ */
.vision-mission {
  padding: 5rem 0;
  background: var(--brand-cream);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  perspective: 1200px;
}

.vm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
  box-shadow: 
    0 1px 1px rgba(0,0,0,0.04),
    0 4px 8px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.06);
  border-top: 4px solid var(--brand-green);
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.04),
    0 12px 24px rgba(0,0,0,0.06),
    0 24px 64px rgba(0,0,0,0.08);
}

.vm-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-sand), var(--brand-cream));
  color: var(--brand-green);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.vm-label {
  display: block;
  text-transform: uppercase;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.vm-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

.vm-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   PRODUCTS SHOWCASE - FULL SCREEN EACH
   ============================================ */
.products-section {
  background: var(--white);
}

.product-showcase {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem;
}

.product-showcase.alt {
  background: var(--brand-cream);
}

.product-showcase-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.product-showcase-inner.reverse {
  direction: ltr;
}

/* Product Image */
.product-showcase-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.product-img-frame img {
  width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.product-showcase:hover .product-img-frame img {
  transform: scale(1.03);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.2));
}

.product-img-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, rgba(45, 90, 61, 0.08) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Product Text */
.product-showcase-text {
  max-width: 480px;
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--brand-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-short {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(45, 90, 61, 0.4);
}

/* Buttons */
.btn-add-to-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
  color: var(--white);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 14px 38px rgba(26, 51, 32, 0.22);
  border: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
}

.btn-add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 55px rgba(26, 51, 32, 0.30);
  background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-dark) 100%);
}

.btn-add-to-cart:active {
  transform: translateY(-1px);
}

.shop-product-actions {
  display: flex;
  justify-content: center;
  padding-top: 0.25rem;
}


/* Shop UI */
.shop-hero {
  padding: 7rem 0 3rem;
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-sand) 55%, #e8e0d4 100%);
}

.shop-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

.shop-hero-text {
  max-width: 640px;
}

.shop-hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-hero-art-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(45, 90, 61, 0.18) 0%, rgba(45, 90, 61, 0) 68%);
  border: 1px solid rgba(45, 90, 61, 0.12);
  filter: blur(0.2px);
}

.shop-hero-art img {
  width: 360px;
  max-width: 80vw;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.35);
}

.shop-grid-section {
  padding: 2rem 0 5rem;
  background: var(--white);
}

.shop-grid-header {
  margin-bottom: 1.5rem;
}

.shop-grid-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--brand-dark);
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  margin-top: 0.25rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.shop-product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brand-green);
  font-weight: 600;
  margin: 0 0 1rem;
}


.shop-product-card {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(45, 90, 61, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(45, 90, 61, 0.18);
}

.shop-product-media {
  padding: 1.25rem 1.25rem 0.25rem;
  background: linear-gradient(135deg, rgba(45, 90, 61, 0.06) 0%, rgba(201, 169, 110, 0.10) 100%);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-product-media img {
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.12));
}

.shop-product-content {
  padding: 1.25rem;
  text-align: center;
}

.shop-product-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brand-dark);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.shop-product-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.shop-product-actions {
  display: flex;
  justify-content: center;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 1200;
}

.cart-drawer {
  position: fixed;
  top: 1rem;
  right: 1rem;
  height: calc(100vh - 2rem);
  width: min(440px, calc(100vw - 2rem));
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(45, 90, 61, 0.18);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-xl);
  z-index: 1300;
  overflow: hidden;
}

.cart-drawer-header {
  padding: 1.25rem 1.25rem 0.75rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(45, 90, 61, 0.10);
}

.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.2;
}

.cart-subtitle {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-top: 0.25rem;
}

.cart-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  background: rgba(245, 240, 232, 0.6);
  border: 1px solid rgba(45, 90, 61, 0.12);
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: var(--brand-sand);
  transform: translateY(-1px);
}

.cart-drawer-body {
  padding: 1rem;
  height: calc(100% - 170px);
  overflow: auto;
}

.cart-empty {
  padding: 2rem 0;
  text-align: center;
  color: var(--gray-600);
}

.cart-empty-title {
  font-family: 'Playfair Display', serif;
  color: var(--brand-dark);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.9rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(45, 90, 61, 0.10);
  background: rgba(250, 248, 244, 0.8);
  margin-bottom: 0.9rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cart-line:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 90, 61, 0.20);
}

.cart-line-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

.cart-line-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-line-top {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cart-line-name {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--brand-dark);
  line-height: 1.25;
}

.cart-line-qty {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.cart-line-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.75rem;
  justify-content: flex-end;
}

.cart-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(45, 90, 61, 0.15);
  color: var(--brand-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.cart-qty-btn:hover {
  background: var(--brand-sand);
  transform: translateY(-1px);
}

.cart-remove-btn {
  background: transparent;
  color: #7a2b2b;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.25s ease;
}

.cart-remove-btn:hover {
  opacity: 0.85;
}

.cart-drawer-footer {
  padding: 0.9rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(45, 90, 61, 0.10);
  background: linear-gradient(180deg, rgba(250, 248, 244, 0.3) 0%, rgba(250, 248, 244, 0.85) 100%);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-total-label {
  color: var(--gray-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.cart-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brand-dark);
  font-weight: 500;
}

.cart-checkout-btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-full);
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0.75rem;
}

.cart-checkout-btn:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
}

.cart-disclaimer {
  color: var(--gray-600);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* Fix drawer hidden state transition */
.cart-drawer.hidden {
  display: none !important;
}

.cart-backdrop.hidden {
  display: none !important;
}

/* Cart badge on header */
.header-actions .cart-count {
  position: absolute;
  transform: translate(10px, -10px);
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: var(--radius-full);
  background: var(--brand-green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(45, 90, 61, 0.25);
}

.header-shop-btn {
  position: relative;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand-dark);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(26, 51, 32, 0.3);
}

.btn-primary:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 51, 32, 0.4);
}

.btn-secondary-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255,255,255,0.5);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}

.btn-secondary-white:hover {
  background: var(--white);
  color: var(--brand-dark);
  border-color: var(--white);
}

/* ============================================
   CATEGORIES GRID
   ============================================ */
.categories {
  padding: 5rem 0;
  background: var(--white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--brand-cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.category-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img img {
  transform: scale(1.08);
}

.category-info {
  padding: 1.25rem;
  text-align: center;
}

.category-info h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.category-count {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--brand-cream) 0%, var(--brand-sand) 100%);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.team-img {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--brand-sand), var(--brand-cream));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.team-img-placeholder {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-green);
  box-shadow: var(--shadow-md);
}

.team-social {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.team-social a {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.team-social a:hover {
  background: var(--brand-green);
  color: var(--white);
}

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-green);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-green) 100%);
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-xl);
}

.contact-content {
  padding: 2.5rem;
}

.contact-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--white);
  font-size: 0.9375rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold);
  flex-shrink: 0;
}

.contact-visual {
  display: none;
}

.contact-img-wrapper {
  height: 100%;
  overflow: hidden;
}

.contact-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--brand-dark);
  padding: 4rem 0 2rem;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-gold);
  margin-bottom: 1.25rem;
}

.footer-links-col ul,
.footer-contact-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-col a,
.footer-contact-col li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.scroll-reveal,
.scroll-reveal-item,
.scroll-reveal-left,
.scroll-reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed,
.scroll-reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scroll-reveal-left {
  transform: translateX(-40px);
}

.scroll-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.scroll-reveal-right {
  transform: translateX(40px);
}

.scroll-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger */
.scroll-reveal-item:nth-child(1) { transition-delay: 0.08s; }
.scroll-reveal-item:nth-child(2) { transition-delay: 0.16s; }
.scroll-reveal-item:nth-child(3) { transition-delay: 0.24s; }
.scroll-reveal-item:nth-child(4) { transition-delay: 0.32s; }
.scroll-reveal-item:nth-child(5) { transition-delay: 0.40s; }

/* ============================================
   RESPONSIVE - TABLET (640px+)
   ============================================ */
@media (min-width: 640px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-left {
    order: 1;
  }

  .hero-center {
    order: 2;
  }

  .hero-right {
    order: 3;
    grid-column: 1 / -1;
    flex-direction: row;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   RESPONSIVE - DESKTOP (768px+)
   ============================================ */
@media (min-width: 768px) {
  .desktop-only {
    display: flex;
  }

  .mobile-only {
    display: none !important;
  }

  .header-inner {
    padding: 0.75rem 2rem;
  }

  /* Hero 3-column */
  .hero-container {
    grid-template-columns: 1fr 1.2fr 0.9fr;
    gap: 2rem;
  }

  .hero-right {
    grid-column: auto;
    flex-direction: column;
  }

  .hero-image-wrapper {
    max-width: 420px;
  }

  /* Philosophy */
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  /* About */
  .about-card {
    grid-template-columns: 1fr 1fr;
  }

  .about-text-side {
    padding: 3rem;
  }

  /* Products */
  .product-showcase-inner {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .product-showcase-inner.reverse .product-showcase-img {
    order: 2;
  }

  .product-showcase-inner.reverse .product-showcase-text {
    order: 1;
  }

  /* Vision Mission */
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Categories */
  .categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Contact */
  .contact-card {
    grid-template-columns: 1fr 1fr;
  }

  .contact-visual {
    display: block;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1.2fr 1fr 1.1fr;
  }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 3rem;
  }

  .hero {
    padding: 7rem 3rem 4rem;
  }

  .hero-container {
    gap: 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .product-showcase {
    padding: 5rem 3rem;
  }

  .vm-card {
    padding: 3rem;
  }
}

/* ============================================
   3D TILT EFFECT (Desktop only)
   ============================================ */
@media (min-width: 768px) {
  [data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
  }
}

/* Smooth section transitions */
section {
  position: relative;
}

/* Focus states */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
}

/* Small-screen adjustments to avoid accidental horizontal scroll */
@media (max-width: 639px) {
  .hero {
    padding: 4rem 1rem 2rem;
  }

  .header {
    top: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
  }

  .header-inner {
    padding: 0.5rem 1rem;
    height: 52px;
  }

  .container {
    padding: 0 1rem;
  }
}

/* WordPress + WooCommerce integration */
.header-nav li, .mobile-menu-inner li { list-style:none; display:inline-flex; }
.header-nav ul, .mobile-menu-inner ul { margin:0; padding:0; display:contents; }
.bkc-cart-link{position:relative;}
.bkc-cart-count{position:absolute;top:-7px;right:-7px;min-width:17px;height:17px;padding:0 4px;border-radius:999px;background:#c69c45;color:#fff;font-size:10px;line-height:17px;text-align:center;font-weight:700;}
.added_to_cart.wc-forward{display:none!important;}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button{border-radius:999px;background:#1a3320;color:#fff;}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover{background:#254a2f;color:#fff;}

/* BKC v5 WooCommerce/Elementor compatibility fixes */
.header-logo img,
.logo-img,
.custom-logo,
.custom-logo-link img,
.woocommerce .header-logo img,
.woocommerce-page .header-logo img {
  max-height: 42px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain !important;
}
.custom-logo-link { display: inline-flex; align-items: center; }
.bkc-cart-link { position: relative; display: inline-flex; align-items: center; gap: 6px; }
.bkc-cart-count { min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 11px; line-height: 1; }
.elementor-editor-active .bkc-cart-count { pointer-events: none; }
.add_to_cart_button.loading,
.ajax_add_to_cart.loading { opacity: .75; pointer-events: none; }
.add_to_cart_button.added,
.ajax_add_to_cart.added { pointer-events: auto; }


/* BKC v6 global WooCommerce/header/footer corrections */
.header-logo img,
.header-logo .custom-logo,
.custom-logo-link img,
.logo-img {
  max-height: 42px !important;
  height: auto !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain !important;
}
.woocommerce-page .header,
.woocommerce .header { z-index: 9999; }
.bkc-woo-page { padding: 8rem 0 4rem; background: var(--cream, #fbf7ef); min-height: 65vh; }
.bkc-woo-container { max-width: 1180px; margin: 0 auto; }
.woocommerce div.product { display: grid; grid-template-columns: minmax(280px, 1fr) minmax(300px, 1fr); gap: 3rem; align-items: start; }
.woocommerce div.product .product_title { font-family: var(--font-serif, serif); color: var(--brand-green, #1a3320); }
.woocommerce-tabs, .related.products, .upsells.products { grid-column: 1 / -1; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product { width: auto !important; float: none !important; margin: 0 !important; background:#fff; border-radius: 22px; padding: 1rem !important; box-shadow: 0 14px 40px rgba(0,0,0,.07); }
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals { width: 100%; float: none; }
@media (max-width: 900px) {
  .woocommerce div.product { grid-template-columns: 1fr; gap: 2rem; }
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: .85rem !important; }
  .woocommerce ul.products li.product { padding: .7rem !important; border-radius: 16px; }
  .woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: .82rem; line-height: 1.25; }
  .woocommerce ul.products li.product .price { font-size: .82rem; }
  .woocommerce ul.products li.product .button { width: 100%; text-align: center; font-size: .72rem; padding: .65rem .45rem; }
  .bkc-woo-page { padding-top: 6rem; }
}


/* v6.3 header/menu refinements: keep cart/account/register on the right */
.header-logo { order: 1; }
.header-nav { order: 2; margin-left: auto; }
.header-actions-left { order: 3; margin-left: 1rem; }
.header-menu-toggle { order: 4; }
.header-register-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: var(--brand-green);
  color: #fff !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-register-link:hover { background: var(--brand-dark); color: #fff !important; }
.header-nav .current-menu-item > a,
.header-nav .current_page_item > a,
.header-nav a.active { color: var(--brand-dark); }
.header-nav .current-menu-item > a::after,
.header-nav .current_page_item > a::after,
.header-nav a.active::after { width: 100%; }
.mobile-menu-inner a.active,
.mobile-menu-inner .current-menu-item > a,
.mobile-menu-inner .current_page_item > a { color: var(--brand-green); }
.bkc-contact-form-wrap { margin-top: 2rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 24px; padding: 1.25rem; backdrop-filter: blur(10px); }
.bkc-contact-form { display: grid; gap: .85rem; }
.bkc-contact-form input, .bkc-contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.95); color: var(--brand-dark); border-radius: 14px; padding: .9rem 1rem; font: inherit; outline: none; }
.bkc-contact-form textarea { min-height: 130px; resize: vertical; }
.bkc-contact-form button { border: 0; cursor: pointer; }
.bkc-form-notice { padding: .85rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-weight: 600; }
.bkc-form-success { background: #e9f8ef; color: #14532d; }
.bkc-form-error { background: #fff0f0; color: #8a1f1f; }
.category-card-link { display:block; color: inherit; text-decoration:none; height:100%; }
.category-card-link:hover { color: inherit; }
@media (max-width: 767px) {
  .header-inner { gap: .45rem; }
  .header-logo { order: 1; }
  .header-actions-left { order: 2; margin-left: auto; gap: .25rem; }
  .header-menu-toggle { order: 3; margin-left: .25rem; }
  .header-register-link { padding: 0 .55rem; min-height: 31px; font-size: .65rem; }
  .header-shop-btn, .header-icon { width: 32px; height: 32px; }
}


/* v6.5 header cleanup */
.header-actions-right { order: 3; margin-left: auto; }
.header-register-link { display: none !important; }
@media (max-width: 768px) { .header-actions-right { order: 2; margin-left: auto; gap: .25rem; } }


/* v6.6 precision fixes */
.categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}
.categories .category-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.categories .category-card {
  height: 100%;
}
.about-img-side img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .categories .categories-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .categories .categories-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
}

/* v6.7 precision layout fixes */
.hero-title,
.hero-title .line {
  line-height: 1.08 !important;
}
.hero-title .line {
  margin: 0 !important;
  padding: 0 !important;
}
.hero-title .line + .line {
  margin-top: .14em !important;
}
@media (min-width: 1025px) {
  .hero-title {
    max-width: 720px;
    margin-bottom: 1.05rem !important;
  }
}

/* Restore clean 5-card Collections alignment on desktop */
@media (min-width: 1025px) {
  .categories .categories-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    gap: 1.25rem !important;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }
  .categories .category-card-link {
    flex: 0 1 220px !important;
    max-width: 220px !important;
    min-width: 0 !important;
  }
  .categories .category-card {
    width: 100% !important;
    min-height: 100% !important;
  }
}
@media (min-width: 641px) and (max-width: 1024px) {
  .categories .categories-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }
}
@media (max-width: 640px) {
  .categories .categories-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .9rem !important;
  }
}

/* Ensure About image always fills the image panel */
.about-img-side {
  background: rgba(14, 47, 28, .35) !important;
}
.about-img-side img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 420px !important;
  object-fit: cover !important;
  object-position: center !important;
}
@media (max-width: 767px) {
  .about-img-side img { min-height: 320px !important; }
}


/* v7 Elementor-content stability fixes */
.categories-grid{
  display:grid !important;
  grid-template-columns:repeat(3,minmax(220px,1fr)) !important;
  gap:32px !important;
  align-items:start !important;
  justify-items:center !important;
}
.categories-grid .category-card-link{display:block;width:100%;max-width:300px;text-decoration:none;}
.categories-grid .category-card{width:100%;}
@media (max-width:900px){.categories-grid{grid-template-columns:repeat(2,minmax(140px,1fr)) !important;gap:18px !important;}.categories-grid .category-card-link{max-width:260px;}}
@media (max-width:480px){.categories-grid{grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:14px !important;}.categories-grid .category-card-link{max-width:none;}.category-info h3{font-size:0.9rem;}.category-count{font-size:0.72rem;}}
.about-img-side img{width:100%;height:100%;object-fit:cover;display:block;}
.hero-title{line-height:1.06 !important;}
.hero-title .line{display:block;margin:0 !important;}
@media (max-width:768px){
  .woocommerce ul.products{display:grid !important;grid-template-columns:repeat(2,minmax(0,1fr)) !important;gap:14px !important;}
  .woocommerce ul.products li.product{width:auto !important;margin:0 !important;float:none !important;}
  .woocommerce ul.products li.product .woocommerce-loop-product__title{font-size:0.86rem !important;line-height:1.25 !important;}
  .woocommerce ul.products li.product .button{font-size:0.75rem !important;padding:.65rem .7rem !important;}
}


/* v7.1 shop categories, single product gallery preview and exact layout repairs */
.bkc-shop-categories{margin:0 auto 2.5rem;padding:1rem 0 1.5rem;}
.bkc-shop-categories-head{text-align:center;margin-bottom:1.35rem;}
.bkc-shop-categories-head h2{font-family:var(--font-display,'Playfair Display',serif);font-size:clamp(1.8rem,3vw,3rem);color:var(--primary-green,#173f29);margin:.25rem 0 0;}
.bkc-shop-category-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:1rem;align-items:stretch;}
.bkc-shop-category-card{display:flex;flex-direction:column;align-items:center;text-align:center;text-decoration:none;background:#fff;border:1px solid rgba(25,63,42,.09);border-radius:22px;padding:1rem .85rem;box-shadow:0 10px 24px rgba(16,48,31,.06);transition:transform .25s ease,box-shadow .25s ease;}
.bkc-shop-category-card:hover{transform:translateY(-4px);box-shadow:0 16px 34px rgba(16,48,31,.11);}
.bkc-shop-category-img{width:92px;height:92px;border-radius:18px;overflow:hidden;background:#f6f0e6;display:flex;align-items:center;justify-content:center;margin-bottom:.75rem;}
.bkc-shop-category-img img{width:100%;height:100%;object-fit:cover;display:block;}
.bkc-shop-category-name{font-weight:700;color:var(--primary-green,#173f29);font-size:.95rem;line-height:1.2;}
.bkc-shop-category-count{font-size:.75rem;letter-spacing:.08em;text-transform:uppercase;color:#9c9489;margin-top:.35rem;}
.single-product .flex-control-thumbs{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin:14px 0 0!important;padding:0!important;list-style:none!important;clear:both;}
.single-product .flex-control-thumbs li{width:auto!important;float:none!important;margin:0!important;list-style:none!important;}
.single-product .flex-control-thumbs img{width:100%!important;height:88px!important;object-fit:cover!important;border-radius:12px;border:1px solid rgba(25,63,42,.12);opacity:.7;cursor:pointer;}
.single-product .flex-control-thumbs img.flex-active,.single-product .flex-control-thumbs img:hover{opacity:1;border-color:var(--primary-green,#173f29);}
.single-product div.product{display:grid;grid-template-columns:minmax(0,1fr) minmax(320px,.9fr);gap:44px;align-items:start;}
.single-product div.product .summary{float:none!important;width:auto!important;margin:0!important;padding-top:0!important;}
.about .about-img-side img[src*="ilera-300x257.webp"]{object-fit:cover;object-position:center;}
.vision-mission{display:none!important;}
@media(max-width:900px){.bkc-shop-category-grid{grid-template-columns:repeat(3,minmax(0,1fr));}.single-product div.product{grid-template-columns:1fr;gap:24px;}.single-product .flex-control-thumbs img{height:72px;}}
@media(max-width:600px){.bkc-shop-category-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem;}.bkc-shop-category-card{padding:.85rem .5rem;border-radius:16px;}.bkc-shop-category-img{width:74px;height:74px;border-radius:14px;}.single-product .flex-control-thumbs{grid-template-columns:repeat(4,minmax(0,1fr));gap:7px}.single-product .flex-control-thumbs img{height:58px;}.single-product div.product{display:block;}.single-product .summary{margin-top:22px!important;}}


/* v7.2 exact requested visual fixes */
.philosophy-img-box img[src*="philosophy-brown-skin-women.png"]{
  width:100% !important;
  height:100% !important;
  min-height:520px !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
}
.about-img-side img[src*="about-cee-natural-fairness.png"]{
  width:100% !important;
  height:100% !important;
  min-height:420px !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
}
.bkc-shop-categories-text-only{padding-top:.5rem;margin-bottom:2rem;}
.bkc-shop-categories-text-only .bkc-shop-category-grid,
.bkc-shop-category-grid-text{
  display:flex !important;
  flex-wrap:wrap !important;
  justify-content:center !important;
  align-items:center !important;
  gap:.75rem !important;
}
.bkc-shop-categories-text-only .bkc-shop-category-card,
.bkc-shop-category-text-card{
  flex:0 0 auto !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:44px !important;
  padding:.75rem 1.15rem !important;
  border-radius:999px !important;
  background:#fff !important;
  border:1px solid rgba(23,63,41,.15) !important;
  box-shadow:0 8px 22px rgba(16,48,31,.06) !important;
  text-decoration:none !important;
}
.bkc-shop-categories-text-only .bkc-shop-category-card:hover,
.bkc-shop-category-text-card:hover{
  transform:translateY(-2px) !important;
  background:#173f29 !important;
  color:#fff !important;
}
.bkc-shop-categories-text-only .bkc-shop-category-name,
.bkc-shop-category-text-card .bkc-shop-category-name{
  font-size:.9rem !important;
  font-weight:700 !important;
  line-height:1 !important;
  color:inherit !important;
}
.bkc-shop-categories-text-only .bkc-shop-category-img,
.bkc-shop-categories-text-only .bkc-shop-category-count{display:none !important;}
@media(max-width:640px){
  .philosophy-img-box img[src*="philosophy-brown-skin-women.png"]{min-height:360px !important;}
  .about-img-side img[src*="about-cee-natural-fairness.png"]{min-height:330px !important;}
  .bkc-shop-categories-text-only .bkc-shop-category-grid{gap:.55rem !important;}
  .bkc-shop-categories-text-only .bkc-shop-category-card{min-height:40px !important;padding:.65rem .85rem !important;}
  .bkc-shop-categories-text-only .bkc-shop-category-name{font-size:.78rem !important;}
}


/* v8.0 removed old v7.4/v7.5 homepage collection grid overrides to prevent blank/broken sections. */

/* v7.6 Premium Horizontal Collection Slider - isolated replacement for old collection grid */
.bkc-premium-collection-slider-v76{
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:64px 18px 72px !important;
  background:linear-gradient(180deg,#fff 0%,#fffaf2 100%) !important;
  overflow:hidden !important;
  clear:both !important;
  box-sizing:border-box !important;
}
.bkc-premium-collection-slider-v76 *,
.bkc-premium-collection-slider-v76 *::before,
.bkc-premium-collection-slider-v76 *::after{box-sizing:border-box !important;}
.bkc-pcs-v76-shell{
  width:100% !important;
  max-width:1180px !important;
  margin:0 auto !important;
  padding:0 !important;
}
.bkc-pcs-v76-head{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  text-align:center !important;
  gap:8px !important;
  margin:0 0 28px !important;
  padding:0 !important;
}
.bkc-pcs-v76-eyebrow{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid rgba(23,63,41,.16) !important;
  border-radius:999px !important;
  background:#fff !important;
  color:#c08b2d !important;
  font-size:12px !important;
  font-weight:900 !important;
  letter-spacing:.16em !important;
  line-height:1 !important;
  padding:10px 14px !important;
  text-transform:uppercase !important;
}
.bkc-pcs-v76-title{
  margin:0 !important;
  color:#173f29 !important;
  font-family:var(--font-display,'Playfair Display',serif) !important;
  font-size:clamp(32px,4.2vw,56px) !important;
  font-weight:800 !important;
  line-height:1.02 !important;
  letter-spacing:-.03em !important;
}
.bkc-pcs-v76-subtitle{
  max-width:620px !important;
  margin:0 !important;
  color:rgba(23,63,41,.68) !important;
  font-size:16px !important;
  font-weight:500 !important;
  line-height:1.55 !important;
}
.bkc-pcs-v76-rail{
  display:flex !important;
  flex-wrap:nowrap !important;
  gap:18px !important;
  width:100% !important;
  max-width:1120px !important;
  margin:0 auto !important;
  padding:8px 4px 18px !important;
  overflow-x:auto !important;
  overflow-y:hidden !important;
  scroll-snap-type:x mandatory !important;
  scroll-padding-inline:4px !important;
  -webkit-overflow-scrolling:touch !important;
  scrollbar-width:thin !important;
}
.bkc-pcs-v76-rail::-webkit-scrollbar{height:8px !important;}
.bkc-pcs-v76-rail::-webkit-scrollbar-track{background:#f3eadc !important;border-radius:999px !important;}
.bkc-pcs-v76-rail::-webkit-scrollbar-thumb{background:rgba(23,63,41,.32) !important;border-radius:999px !important;}
.bkc-pcs-v76-card{
  position:relative !important;
  display:flex !important;
  flex-direction:column !important;
  flex:0 0 208px !important;
  width:208px !important;
  min-width:208px !important;
  margin:0 !important;
  padding:10px !important;
  background:rgba(255,255,255,.92) !important;
  border:1px solid rgba(23,63,41,.09) !important;
  border-radius:26px !important;
  box-shadow:0 18px 45px rgba(23,63,41,.08) !important;
  text-decoration:none !important;
  color:#173f29 !important;
  scroll-snap-align:start !important;
  transform:translateZ(0) !important;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease !important;
}
.bkc-pcs-v76-card:hover{
  transform:translateY(-5px) !important;
  box-shadow:0 24px 60px rgba(23,63,41,.13) !important;
  border-color:rgba(192,139,45,.28) !important;
}
.bkc-pcs-v76-image{
  display:block !important;
  width:100% !important;
  aspect-ratio:1/1 !important;
  border-radius:20px !important;
  overflow:hidden !important;
  background:#f6efe5 !important;
  margin:0 !important;
  padding:0 !important;
}
.bkc-pcs-v76-image img{
  display:block !important;
  width:100% !important;
  height:100% !important;
  min-width:100% !important;
  max-width:none !important;
  object-fit:cover !important;
  object-position:center !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
}
.bkc-pcs-v76-copy{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  justify-content:flex-start !important;
  gap:5px !important;
  min-height:104px !important;
  padding:16px 8px 8px !important;
  background:transparent !important;
  text-align:left !important;
}
.bkc-pcs-v76-copy strong{
  display:block !important;
  margin:0 !important;
  color:#173f29 !important;
  font-size:16px !important;
  font-weight:900 !important;
  line-height:1.18 !important;
  letter-spacing:-.01em !important;
}
.bkc-pcs-v76-copy em{
  display:block !important;
  margin:0 !important;
  color:#9b9387 !important;
  font-size:10px !important;
  font-style:normal !important;
  font-weight:900 !important;
  letter-spacing:.16em !important;
  line-height:1.2 !important;
  text-transform:uppercase !important;
}
.bkc-pcs-v76-copy span{
  display:inline-flex !important;
  align-items:center !important;
  margin-top:auto !important;
  color:#c08b2d !important;
  font-size:13px !important;
  font-weight:900 !important;
  line-height:1.2 !important;
}
body.home .bkc-collection-v73,
body.home .bkc-collection-v74,
body.home .bkc-collection-v75,
body.front-page .bkc-collection-v73,
body.front-page .bkc-collection-v74,
body.front-page .bkc-collection-v75{display:none !important;}
@media (min-width: 1000px){
  .bkc-pcs-v76-rail{justify-content:center !important;overflow-x:auto !important;}
}
@media (max-width: 760px){
  .bkc-premium-collection-slider-v76{padding:42px 0 48px !important;}
  .bkc-pcs-v76-shell{max-width:100% !important;}
  .bkc-pcs-v76-head{padding:0 18px !important;margin-bottom:20px !important;}
  .bkc-pcs-v76-title{font-size:32px !important;}
  .bkc-pcs-v76-subtitle{font-size:14px !important;line-height:1.5 !important;}
  .bkc-pcs-v76-rail{
    max-width:100% !important;
    gap:14px !important;
    padding:6px 18px 18px !important;
    scroll-padding-inline:18px !important;
    scrollbar-width:none !important;
  }
  .bkc-pcs-v76-rail::-webkit-scrollbar{display:none !important;}
  .bkc-pcs-v76-card{
    flex-basis:74vw !important;
    width:74vw !important;
    min-width:74vw !important;
    max-width:285px !important;
    border-radius:24px !important;
    padding:9px !important;
  }
  .bkc-pcs-v76-image{border-radius:18px !important;}
  .bkc-pcs-v76-copy{min-height:96px !important;padding:14px 7px 7px !important;}
  .bkc-pcs-v76-copy strong{font-size:15px !important;}
}
@media (max-width: 390px){
  .bkc-pcs-v76-card{flex-basis:78vw !important;width:78vw !important;min-width:78vw !important;}
}

/* v7.7 auto slider behavior support */
.bkc-pcs-v76-rail{
  justify-content:flex-start !important;
  scroll-behavior:smooth !important;
  overscroll-behavior-x:contain !important;
}
.bkc-pcs-v76-clone[aria-hidden="true"]{
  pointer-events:none !important;
}
@media (min-width: 1000px){
  .bkc-pcs-v76-rail{justify-content:flex-start !important;}
}


/* ============================================
   v8.3 PREMIUM 3-SLIDE FADE HERO
   Replaces the old homepage hero without touching other sections.
   ============================================ */

.bkc-hero-slider {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 169, 110, 0.16), transparent 24rem),
    radial-gradient(circle at 94% 15%, rgba(45, 90, 61, 0.14), transparent 26rem),
    linear-gradient(135deg, #fffdf8 0%, #f7f0e7 48%, #eef5ea 100%);
  padding: clamp(5.75rem, 7vw, 7.75rem) clamp(1rem, 3vw, 2rem) clamp(2rem, 4vw, 3.5rem);
}

.bkc-hero-slider::before,
.bkc-hero-slider::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
  opacity: 0.75;
  filter: blur(0.5px);
}

.bkc-hero-slider::before {
  width: 36rem;
  height: 36rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(45, 90, 61, 0.12), rgba(45, 90, 61, 0));
  left: -15rem;
  bottom: -18rem;
}

.bkc-hero-slider::after {
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.20), rgba(201, 169, 110, 0));
  right: -13rem;
  top: 6rem;
}

.bkc-hero-viewport {
  display: grid;
  width: min(100%, 1370px);
  margin: 0 auto;
  border-radius: clamp(1.4rem, 3vw, 2.2rem);
}

.bkc-hero-slide {
  grid-area: 1 / 1;
  display: grid;
  align-items: stretch;
  min-height: clamp(590px, 72vh, 740px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 900ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 900ms;
}

.bkc-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.bkc-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 4rem);
  overflow: hidden;
  width: 100%;
  padding: clamp(1.35rem, 3.7vw, 4.2rem);
  border: 1px solid rgba(26, 51, 32, 0.08);
  border-radius: clamp(1.4rem, 3vw, 2.2rem);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 241, 0.74)),
    radial-gradient(circle at 82% 16%, rgba(45, 90, 61, 0.13), transparent 30rem);
  box-shadow: 0 28px 90px rgba(26, 51, 32, 0.11);
}

.bkc-hero-slide-two .bkc-hero-inner {
  background:
    radial-gradient(circle at 52% 42%, rgba(45, 90, 61, 0.16), transparent 24rem),
    linear-gradient(110deg, rgba(255, 255, 255, 0.86), rgba(246, 251, 242, 0.78));
}

.bkc-hero-slide-three .bkc-hero-inner {
  background:
    linear-gradient(105deg, rgba(246, 231, 211, 0.76), rgba(255, 253, 247, 0.86) 43%, rgba(244, 238, 226, 0.80)),
    radial-gradient(circle at 4% 50%, rgba(45, 90, 61, 0.14), transparent 18rem);
}

.bkc-hero-inner-three {
  grid-template-columns: minmax(230px, 0.84fr) minmax(250px, 0.82fr) minmax(280px, 0.88fr);
}

.bkc-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 610px;
}

.bkc-hero-slide.is-active .bkc-hero-copy {
  animation: bkcHeroCopyIn 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bkc-hero-pill,
.bkc-offer-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  padding: 0.46rem 0.85rem;
  border-radius: 999px;
  background: rgba(45, 90, 61, 0.10);
  color: var(--brand-dark);
  font-size: clamp(0.66rem, 1vw, 0.78rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bkc-hero-pill::before,
.bkc-offer-pill::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--brand-green);
  box-shadow: 0 0 0 0.22rem rgba(45, 90, 61, 0.11);
}

.bkc-hero-title {
  max-width: 13ch;
  margin: 0 0 1rem;
  color: #12351f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.35rem, 5.65vw, 5.65rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.bkc-hero-title em {
  font-style: italic;
  font-weight: 400;
}

.bkc-hero-title strong {
  display: inline;
  color: #a64d24;
  font-weight: 600;
}

.bkc-hero-text {
  max-width: 36rem;
  margin: 0 0 1.55rem;
  color: rgba(26, 51, 32, 0.78);
  font-size: clamp(0.98rem, 1.3vw, 1.15rem);
  line-height: 1.65;
}

.bkc-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  gap: 0.65rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  background: #12351f;
  color: #fff;
  box-shadow: 0 16px 38px rgba(18, 53, 31, 0.25);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.bkc-hero-cta:hover {
  color: #fff;
  background: #2d5a3d;
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(18, 53, 31, 0.33);
}

.bkc-hero-cta svg {
  transition: transform 260ms ease;
}

.bkc-hero-cta:hover svg {
  transform: translateX(4px);
}

.bkc-hero-cta-small {
  min-height: 2.75rem;
  width: 100%;
  padding: 0.8rem 1.15rem;
}

.bkc-hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: clamp(1.6rem, 2.2vw, 2.2rem);
  max-width: 650px;
}

.bkc-hero-benefits span {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.55rem;
  color: rgba(26, 51, 32, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.18;
}

.bkc-hero-benefits i {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(45, 90, 61, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-green);
  font-style: normal;
  box-shadow: 0 10px 30px rgba(45, 90, 61, 0.12);
}

.bkc-hero-visual {
  position: relative;
  z-index: 2;
}

.bkc-hero-slide.is-active .bkc-hero-visual,
.bkc-hero-slide.is-active .bkc-hero-offer-card,
.bkc-hero-slide.is-active .bkc-hero-product-cards,
.bkc-hero-slide.is-active .bkc-hero-model-card {
  animation: bkcHeroVisualIn 1000ms cubic-bezier(0.16, 1, 0.3, 1) 110ms both;
}

.bkc-hero-stage {
  min-height: 430px;
}

.bkc-stage-card {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: clamp(350px, 42vw, 540px);
  overflow: hidden;
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 78% 14%, rgba(45, 90, 61, 0.16), transparent 12rem),
    linear-gradient(145deg, rgba(230, 219, 203, 0.78), rgba(255, 255, 255, 0.84));
}

.bkc-stage-card::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 8%;
  bottom: 7%;
  height: 30%;
  border-radius: 999px 999px 4rem 4rem;
  background: linear-gradient(180deg, #e4c79f, #b98b54);
  box-shadow: 0 30px 60px rgba(72, 45, 18, 0.15);
}

.bkc-stage-card::after {
  content: "";
  position: absolute;
  inset: auto 7% 6% 7%;
  height: 20%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.10);
  filter: blur(18px);
}

.bkc-stage-product {
  position: absolute;
  z-index: 3;
  bottom: 18%;
  width: clamp(11rem, 19vw, 18rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 26px rgba(22, 39, 25, 0.22));
}

.bkc-stage-product-main {
  left: 21%;
  transform: rotate(-3deg);
}

.bkc-stage-product-secondary {
  right: 14%;
  transform: rotate(4deg);
}

.bkc-hero-seal {
  position: absolute;
  z-index: 4;
  right: 6%;
  top: 35%;
  display: grid;
  place-items: center;
  width: clamp(4.9rem, 8vw, 6.8rem);
  height: clamp(4.9rem, 8vw, 6.8rem);
  padding: 0.6rem;
  border: 2px dashed rgba(26, 51, 32, 0.44);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #12351f;
  font-size: clamp(0.58rem, 0.9vw, 0.76rem);
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.bkc-hero-product-focus {
  display: grid;
  place-items: center;
  min-height: 500px;
}

.bkc-hero-product-focus img {
  position: relative;
  z-index: 3;
  width: min(72%, 310px);
  height: auto;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 34px 38px rgba(24, 50, 30, 0.24));
}

.bkc-hero-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(45, 90, 61, 0.12);
}

.bkc-hero-orbit-one {
  width: min(76vw, 28rem);
  height: min(76vw, 28rem);
}

.bkc-hero-orbit-two {
  width: min(56vw, 20rem);
  height: min(56vw, 20rem);
  background: rgba(45, 90, 61, 0.10);
}

.bkc-hero-checks {
  display: grid;
  gap: 0.4rem;
  margin: -0.5rem 0 1.45rem;
  color: rgba(26, 51, 32, 0.82);
  font-size: 1rem;
  font-weight: 600;
}

.bkc-hero-checks li {
  position: relative;
  padding-left: 1.7rem;
}

.bkc-hero-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: rgba(45, 90, 61, 0.12);
  color: var(--brand-green);
  font-size: 0.75rem;
  font-weight: 900;
}

.bkc-hero-offer-card {
  align-self: center;
  justify-self: end;
  width: min(100%, 310px);
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(45, 90, 61, 0.14);
  border-radius: 1.35rem;
  background: rgba(237, 245, 227, 0.76);
  box-shadow: 0 24px 60px rgba(26, 51, 32, 0.11);
  backdrop-filter: blur(14px);
}

.bkc-hero-offer-card h3 {
  margin: 0 0 0.55rem;
  color: #18331f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.42rem, 2.3vw, 2rem);
  line-height: 1.05;
  font-weight: 600;
}

.bkc-hero-offer-card p {
  margin: 0 0 1rem;
  color: rgba(26, 51, 32, 0.72);
  font-weight: 600;
  line-height: 1.45;
}

.bkc-offer-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.bkc-offer-timer span {
  display: grid;
  place-items: center;
  min-height: 3.3rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 0 0 1px rgba(26, 51, 32, 0.06);
}

.bkc-offer-timer strong {
  color: #18331f;
  font-size: 1.25rem;
  line-height: 1;
}

.bkc-offer-timer small {
  color: rgba(26, 51, 32, 0.65);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bkc-hero-model-card {
  align-self: stretch;
  overflow: hidden;
  min-height: 440px;
  margin: calc(clamp(1.35rem, 3.7vw, 4.2rem) * -1) 0 calc(clamp(1.35rem, 3.7vw, 4.2rem) * -1) calc(clamp(1.35rem, 3.7vw, 4.2rem) * -1);
  border-radius: clamp(1.4rem, 3vw, 2.2rem) 0 0 clamp(1.4rem, 3vw, 2.2rem);
}

.bkc-hero-model-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
}

.bkc-hero-copy-center .bkc-hero-title {
  max-width: 10ch;
}

.bkc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.bkc-hero-story {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #18331f;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.bkc-hero-story span {
  display: inline-grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border: 1px solid rgba(45, 90, 61, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand-green);
  box-shadow: 0 12px 32px rgba(45, 90, 61, 0.12);
}

.bkc-hero-product-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.2vw, 1rem);
  align-self: center;
}

.bkc-hero-mini-card {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 1rem 0.8rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.60);
  color: #18331f;
  box-shadow: 0 20px 56px rgba(26, 51, 32, 0.12);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.bkc-hero-mini-card:hover {
  color: #18331f;
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(26, 51, 32, 0.18);
}

.bkc-hero-mini-card img {
  width: min(100%, 8.5rem);
  height: 11rem;
  object-fit: contain;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 16px 16px rgba(26, 51, 32, 0.14));
}

.bkc-hero-mini-card strong,
.bkc-hero-mini-card small,
.bkc-hero-mini-card em {
  display: block;
}

.bkc-hero-mini-card strong {
  margin-bottom: 0.12rem;
  font-size: 0.82rem;
  line-height: 1.15;
}

.bkc-hero-mini-card small {
  margin-bottom: 0.72rem;
  color: rgba(26, 51, 32, 0.68);
  font-size: 0.66rem;
  font-weight: 700;
}

.bkc-hero-mini-card em {
  color: #18331f;
  font-size: 0.64rem;
  font-style: normal;
  font-weight: 900;
  text-decoration: underline;
  text-transform: uppercase;
}

.bkc-hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  width: min(100%, 1370px);
  margin: 1.05rem auto 0;
}

.bkc-hero-dots button {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: rgba(18, 53, 31, 0.22);
  transition: width 260ms ease, background 260ms ease, transform 260ms ease;
}

.bkc-hero-dots button.is-active {
  width: 2.25rem;
  background: #12351f;
}

.bkc-hero-dots button:hover {
  transform: translateY(-1px);
  background: rgba(18, 53, 31, 0.52);
}

@keyframes bkcHeroCopyIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bkcHeroVisualIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1180px) {
  .bkc-hero-inner-three {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  }

  .bkc-hero-slide-two .bkc-hero-offer-card {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 1rem 1.25rem;
  }

  .bkc-hero-slide-two .bkc-offer-pill,
  .bkc-hero-slide-two .bkc-hero-offer-card p,
  .bkc-hero-slide-two .bkc-offer-timer {
    grid-column: 1;
  }

  .bkc-hero-slide-two .bkc-hero-offer-card h3 {
    grid-column: 1;
  }

  .bkc-hero-slide-two .bkc-hero-cta-small {
    grid-column: 2;
    grid-row: 1 / span 4;
    align-self: center;
    white-space: nowrap;
  }

  .bkc-hero-slide-three .bkc-hero-product-cards {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .bkc-hero-slider {
    padding-top: 5.6rem;
  }

  .bkc-hero-slide {
    min-height: auto;
  }

  .bkc-hero-inner,
  .bkc-hero-inner-three {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .bkc-hero-copy {
    text-align: center;
    justify-self: center;
  }

  .bkc-hero-pill,
  .bkc-offer-pill {
    margin-left: auto;
    margin-right: auto;
  }

  .bkc-hero-title {
    max-width: 12ch;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.15rem, 9vw, 3.75rem);
  }

  .bkc-hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .bkc-hero-stage {
    min-height: 330px;
  }

  .bkc-stage-card {
    min-height: 340px;
  }

  .bkc-stage-product {
    width: clamp(9.5rem, 31vw, 13.75rem);
  }

  .bkc-hero-benefits {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin-left: auto;
    margin-right: auto;
  }

  .bkc-hero-benefits span {
    justify-content: center;
    text-align: left;
  }

  .bkc-hero-product-focus {
    min-height: 330px;
  }

  .bkc-hero-product-focus img {
    width: min(72%, 235px);
  }

  .bkc-hero-offer-card {
    justify-self: stretch;
    width: 100%;
  }

  .bkc-hero-slide-two .bkc-hero-offer-card {
    display: block;
  }

  .bkc-hero-slide-two .bkc-hero-cta-small {
    width: 100%;
  }

  .bkc-hero-model-card {
    min-height: 280px;
    margin: 0;
    border-radius: 1.3rem;
  }

  .bkc-hero-product-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bkc-hero-mini-card {
    min-height: 235px;
  }

  .bkc-hero-mini-card img {
    height: 8.5rem;
  }

  .bkc-hero-actions {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .bkc-hero-slider {
    padding: 5.15rem 0.9rem 1.75rem;
  }

  .bkc-hero-inner {
    padding: 1.1rem;
    border-radius: 1.35rem;
  }

  .bkc-hero-title {
    font-size: clamp(2rem, 10vw, 2.95rem);
    letter-spacing: -0.045em;
  }

  .bkc-hero-text {
    font-size: 0.96rem;
  }

  .bkc-hero-cta {
    width: 100%;
    min-height: 3rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .bkc-hero-actions {
    width: 100%;
  }

  .bkc-hero-story {
    justify-content: center;
    width: 100%;
  }

  .bkc-stage-card {
    min-height: 290px;
    border-radius: 1.2rem;
  }

  .bkc-stage-product {
    bottom: 18%;
  }

  .bkc-stage-product-main {
    left: 11%;
  }

  .bkc-stage-product-secondary {
    right: 7%;
  }

  .bkc-hero-seal {
    top: 12%;
    right: 5%;
  }

  .bkc-hero-product-focus {
    min-height: 280px;
  }

  .bkc-hero-orbit-one {
    width: 18rem;
    height: 18rem;
  }

  .bkc-hero-orbit-two {
    width: 13rem;
    height: 13rem;
  }

  .bkc-offer-timer {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
  }

  .bkc-offer-timer span {
    min-height: 3rem;
  }

  .bkc-hero-product-cards {
    grid-template-columns: 1fr;
  }

  .bkc-hero-mini-card {
    min-height: unset;
    grid-template-columns: 5.25rem 1fr;
    justify-items: start;
    column-gap: 0.85rem;
    padding: 0.8rem;
    text-align: left;
  }

  .bkc-hero-mini-card img {
    grid-row: 1 / span 3;
    width: 5rem;
    height: 5.25rem;
    margin: 0;
  }

  .bkc-hero-mini-card strong {
    font-size: 0.92rem;
  }

  .bkc-hero-mini-card small {
    margin-bottom: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bkc-hero-slide,
  .bkc-hero-slide.is-active,
  .bkc-hero-slide.is-active .bkc-hero-copy,
  .bkc-hero-slide.is-active .bkc-hero-visual,
  .bkc-hero-slide.is-active .bkc-hero-offer-card,
  .bkc-hero-slide.is-active .bkc-hero-product-cards,
  .bkc-hero-slide.is-active .bkc-hero-model-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* v8.4 Exact Premium Mockup Hero Slider */
.bkc-hero-slider-v84,
.bkc-hero-slider-v84 * {
  box-sizing: border-box;
}
.bkc-hero-slider-v84 {
  position: relative;
  width: 100%;
  padding: clamp(8px, 1vw, 16px) 16px 28px;
  margin: 0 auto;
  background: transparent;
  overflow: visible;
  isolation: isolate;
}
.bkc-hero-slider-v84::before,
.bkc-hero-slider-v84::after {
  display: none !important;
  content: none !important;
}
.bkc-hero-slider-v84 .bkc-hero-viewport {
  position: relative;
  width: min(100%, 1440px);
  margin: 0 auto;
  height: min(56.25vw, calc(100vh - 150px));
  max-height: 760px;
  min-height: 340px;
}
.bkc-hero-slider-v84 .bkc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity .9s ease, visibility .9s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bkc-hero-slider-v84 .bkc-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.bkc-hero-slider-v84 .bkc-hero-frame {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fdf8f1 0%, #f5eadc 100%);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(19, 58, 38, .12);
  text-decoration: none;
}
.bkc-hero-slider-v84 .bkc-hero-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.bkc-hero-slider-v84 .bkc-hero-dots {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 18px auto 0;
}
.bkc-hero-slider-v84 .bkc-hero-dots button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 70, 45, .22);
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, width .25s ease;
}
.bkc-hero-slider-v84 .bkc-hero-dots button:hover,
.bkc-hero-slider-v84 .bkc-hero-dots button.is-active {
  background: #134628;
}
.bkc-hero-slider-v84 .bkc-hero-dots button.is-active {
  width: 34px;
}
@media (max-width: 1199px) {
  .bkc-hero-slider-v84 {
    padding-left: 14px;
    padding-right: 14px;
  }
  .bkc-hero-slider-v84 .bkc-hero-viewport {
    height: min(58vw, calc(100vh - 145px));
    min-height: 320px;
  }
}
@media (max-width: 991px) {
  .bkc-hero-slider-v84 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .bkc-hero-slider-v84 .bkc-hero-viewport {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .bkc-hero-slider-v84 .bkc-hero-frame {
    border-radius: 24px;
  }
}
@media (max-width: 767px) {
  .bkc-hero-slider-v84 {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 22px;
  }
  .bkc-hero-slider-v84 .bkc-hero-viewport {
    aspect-ratio: 16 / 9;
  }
  .bkc-hero-slider-v84 .bkc-hero-frame {
    border-radius: 18px;
    box-shadow: 0 18px 44px rgba(19, 58, 38, .10);
  }
  .bkc-hero-slider-v84 .bkc-hero-dots {
    margin-top: 14px;
    gap: 8px;
  }
  .bkc-hero-slider-v84 .bkc-hero-dots button {
    width: 10px;
    height: 10px;
  }
  .bkc-hero-slider-v84 .bkc-hero-dots button.is-active {
    width: 28px;
  }
}


/* v8.5 Exact Wide Premium Hero Slider
   Uses the generated hero banner artworks only. No existing theme/product photos are used in this hero. */
.bkc-hero-slider-v85,
.bkc-hero-slider-v85 * {
  box-sizing: border-box;
}
.bkc-hero-slider-v85 {
  position: relative;
  width: 100%;
  padding: clamp(8px, .8vw, 14px) 14px 24px;
  margin: 0 auto;
  background: transparent;
  overflow: visible;
  isolation: isolate;
  clear: both;
}
.bkc-hero-slider-v85::before,
.bkc-hero-slider-v85::after {
  display: none !important;
  content: none !important;
}
.bkc-hero-slider-v85 .bkc-hero-viewport {
  position: relative;
  width: min(100%, 1510px);
  margin: 0 auto;
  aspect-ratio: 2172 / 724;
  height: auto;
  max-height: calc(100vh - 170px);
  min-height: 300px;
}
.bkc-hero-slider-v85 .bkc-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.012);
  transition: opacity .95s ease, visibility .95s ease, transform 1.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bkc-hero-slider-v85 .bkc-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}
.bkc-hero-slider-v85 .bkc-hero-frame {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff8ee 0%, #f3e4d1 100%);
  border-radius: clamp(18px, 2vw, 34px);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(19, 58, 38, .12);
  text-decoration: none;
  transform: translateZ(0);
}
.bkc-hero-slider-v85 .bkc-hero-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #fff6ea;
}
.bkc-hero-slider-v85 .bkc-hero-dots {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 14px auto 0;
  line-height: 1;
}
.bkc-hero-slider-v85 .bkc-hero-dots button {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(20, 70, 45, .22);
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, width .25s ease;
}
.bkc-hero-slider-v85 .bkc-hero-dots button:hover,
.bkc-hero-slider-v85 .bkc-hero-dots button.is-active {
  background: #134628;
}
.bkc-hero-slider-v85 .bkc-hero-dots button.is-active {
  width: 32px;
}
@media (min-width: 1200px) {
  .bkc-hero-slider-v85 .bkc-hero-viewport {
    min-height: 430px;
  }
}
@media (max-width: 1199px) {
  .bkc-hero-slider-v85 {
    padding-left: 12px;
    padding-right: 12px;
  }
  .bkc-hero-slider-v85 .bkc-hero-viewport {
    min-height: 310px;
  }
}
@media (max-width: 991px) {
  .bkc-hero-slider-v85 {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 22px;
  }
  .bkc-hero-slider-v85 .bkc-hero-viewport {
    min-height: 0;
    aspect-ratio: 2172 / 724;
    max-height: none;
  }
  .bkc-hero-slider-v85 .bkc-hero-frame {
    border-radius: 22px;
  }
}
@media (max-width: 767px) {
  .bkc-hero-slider-v85 {
    padding-left: 8px;
    padding-right: 8px;
    padding-bottom: 20px;
  }
  .bkc-hero-slider-v85 .bkc-hero-viewport {
    aspect-ratio: 16 / 9;
    min-height: 235px;
  }
  .bkc-hero-slider-v85 .bkc-hero-frame img {
    object-fit: cover;
    object-position: center center;
  }
  .bkc-hero-slider-v85 .bkc-hero-dots {
    margin-top: 12px;
    gap: 8px;
  }
  .bkc-hero-slider-v85 .bkc-hero-dots button {
    width: 10px;
    height: 10px;
  }
  .bkc-hero-slider-v85 .bkc-hero-dots button.is-active {
    width: 28px;
  }
}
@media (max-width: 420px) {
  .bkc-hero-slider-v85 .bkc-hero-viewport {
    min-height: 220px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bkc-hero-slider-v85 .bkc-hero-slide {
    transition: none !important;
    transform: none !important;
  }
}


/* =========================================================
   v8.6 REAL FULL-SCREEN PREMIUM HERO SLIDER
   Built as real HTML/CSS hero slides, not flattened mockup frames.
   Removes all slider gaps and keeps the hero inside one viewport.
   ========================================================= */
html {
  scroll-padding-top: 92px;
}

body.home main,
body.front-page main {
  overflow-x: clip;
}

.bkc-hero-screen-v86,
.bkc-hero-screen-v86 * {
  box-sizing: border-box;
}

.bkc-hero-screen-v86 {
  --bkc-hero-green: #12351f;
  --bkc-hero-green-2: #1d5736;
  --bkc-hero-rust: #a64d24;
  --bkc-hero-cream: #f5f0e8;
  --bkc-hero-cream-2: #e8e0d0;
  position: relative;
  isolation: isolate;
  display: block;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  line-height: 1;
  background: linear-gradient(135deg, var(--bkc-hero-cream) 0%, var(--bkc-hero-cream-2) 100%);
  clear: both;
}

@supports (height: 100svh) {
  .bkc-hero-screen-v86 {
    height: 100svh;
  }
}

.admin-bar .bkc-hero-screen-v86 {
  height: calc(100vh - 32px);
}

.bkc-hero-screen-v86 + *,
.bkc-hero-screen-v86 + section,
.bkc-hero-screen-v86 + .elementor-section,
.bkc-hero-screen-v86 + .wp-block-group {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.bkc-hero-v86-viewport {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bkc-hero-v86-slide {
  grid-area: 1 / 1;
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding: clamp(92px, 10vh, 118px) clamp(18px, 4vw, 72px) clamp(64px, 8vh, 94px);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 950ms ease,
    visibility 0s linear 950ms;
}

.bkc-hero-v86-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.bkc-hero-v86-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.10;
  transform: scale(1.04);
  filter: blur(10px) saturate(0.96);
}

.bkc-hero-v86-slide::before,
.bkc-hero-v86-slide::after {
  content: "";
  position: absolute;
  z-index: -2;
  pointer-events: none;
}

.bkc-hero-v86-slide::before {
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(45, 90, 61, 0.18), transparent 22rem),
    radial-gradient(circle at 11% 80%, rgba(166, 77, 36, 0.11), transparent 24rem),
    linear-gradient(135deg, rgba(245, 240, 232, 0.96) 0%, rgba(232, 224, 208, 0.96) 100%);
}

.bkc-hero-v86-slide::after {
  right: -7rem;
  top: 11%;
  width: min(45vw, 34rem);
  height: min(45vw, 34rem);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(18, 53, 31, 0.10), transparent 68%),
    repeating-conic-gradient(from 30deg, rgba(18, 53, 31, 0.06) 0deg 10deg, transparent 10deg 23deg);
  mask-image: radial-gradient(circle, #000 0 62%, transparent 63%);
  -webkit-mask-image: radial-gradient(circle, #000 0 62%, transparent 63%);
}

.bkc-hero-v86-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 86px);
  width: min(100%, 1280px);
  height: min(100%, 720px);
  margin: 0 auto;
}

.bkc-hero-v86-copy {
  max-width: 675px;
  transform: translateY(26px);
  opacity: 0;
}

.bkc-hero-v86-slide.is-active .bkc-hero-v86-copy {
  animation: bkcHeroV86CopyIn 850ms cubic-bezier(.16,1,.3,1) 80ms both;
}

.bkc-hero-v86-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 clamp(14px, 2vh, 24px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(18, 53, 31, 0.10);
  color: var(--bkc-hero-green);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(11px, 1.05vw, 14px);
  font-weight: 900;
  letter-spacing: .085em;
  line-height: 1;
  text-transform: uppercase;
}

.bkc-hero-v86-tag span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(18, 53, 31, .12);
  color: var(--bkc-hero-green-2);
  font-size: 14px;
}

.bkc-hero-v86-title {
  max-width: 11.5ch;
  margin: 0 0 clamp(16px, 2.2vh, 25px) !important;
  color: var(--bkc-hero-green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: .96;
}

.bkc-hero-v86-title em {
  color: var(--bkc-hero-rust);
  font-style: italic;
  font-weight: 500;
}

.bkc-hero-v86-subtitle {
  max-width: 560px;
  margin: 0 0 clamp(24px, 3vh, 38px) !important;
  color: rgba(18, 53, 31, 0.78);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 500;
  line-height: 1.55;
}

.bkc-hero-v86-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.bkc-hero-v86-primary,
.bkc-hero-v86-story {
  text-decoration: none !important;
  font-family: "DM Sans", Arial, sans-serif;
}

.bkc-hero-v86-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--bkc-hero-green);
  color: #ffffff !important;
  box-shadow: 0 18px 38px rgba(18, 53, 31, .24);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .075em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.bkc-hero-v86-primary:hover {
  background: var(--bkc-hero-green-2);
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(18, 53, 31, .30);
}

.bkc-hero-v86-story {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bkc-hero-green) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.bkc-hero-v86-story span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 53, 31, .25);
  border-radius: 999px;
  background: rgba(255, 255, 255, .64);
  color: var(--bkc-hero-green);
  box-shadow: 0 12px 30px rgba(18, 53, 31, .11);
}

.bkc-hero-v86-card {
  position: relative;
  justify-self: end;
  display: grid;
  justify-items: center;
  width: min(100%, 360px);
  padding: clamp(18px, 2.2vw, 26px) clamp(18px, 2.2vw, 26px) 24px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,250,243,.65));
  box-shadow:
    0 28px 80px rgba(18, 53, 31, .18),
    inset 0 0 0 1px rgba(255,255,255,.48);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
  transform: translateY(32px) scale(.96);
  opacity: 0;
}

.bkc-hero-v86-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -62px -72px auto auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: rgba(18, 53, 31, 0.08);
}

.bkc-hero-v86-card-media {
  display: grid;
  place-items: center;
  width: min(100%, 268px);
  aspect-ratio: 1 / 1;
  margin: 0 auto 12px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 250, 242, .80);
}

.bkc-hero-v86-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 18px rgba(18, 53, 31, .12));
}

.bkc-hero-v86-card strong {
  display: block;
  margin: 0 0 6px;
  color: #111;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 900;
  line-height: 1.1;
}

.bkc-hero-v86-card small {
  display: block;
  margin: 0 0 20px;
  color: rgba(17, 17, 17, .76);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
}

.bkc-hero-v86-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bkc-hero-green) !important;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline !important;
  text-underline-offset: 5px;
}

.bkc-hero-v86-slide.is-active .bkc-hero-v86-card {
  animation: bkcHeroV86CardIn 900ms cubic-bezier(.16,1,.3,1) 180ms both;
}

.bkc-hero-v86-dots {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: clamp(18px, 3vh, 34px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0;
  transform: translateX(-50%);
}

.bkc-hero-v86-dots button {
  display: block;
  width: 11px;
  height: 11px;
  min-width: 0;
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  background: rgba(18, 53, 31, .24);
  cursor: pointer;
  transition: width .28s ease, background-color .28s ease, transform .28s ease;
}

.bkc-hero-v86-dots button.is-active {
  width: 36px;
  background: var(--bkc-hero-green);
}

.bkc-hero-v86-dots button:hover {
  transform: translateY(-1px);
  background: rgba(18, 53, 31, .55);
}

/* hard gap reset for Elementor wrappers that may surround/push the hero */
.elementor-widget-html:has(.bkc-hero-screen-v86),
.elementor-widget-html:has(.bkc-hero-screen-v86) > .elementor-widget-container,
.elementor-section:has(.bkc-hero-screen-v86),
.elementor-container:has(.bkc-hero-screen-v86),
.elementor-column:has(.bkc-hero-screen-v86),
.elementor-widget-wrap:has(.bkc-hero-screen-v86) {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 0 !important;
}

.elementor-widget-html:has(.bkc-hero-screen-v86) .bkc-hero-screen-v86,
.elementor-section:has(.bkc-hero-screen-v86) .bkc-hero-screen-v86 {
  line-height: 1 !important;
}

@keyframes bkcHeroV86CopyIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bkcHeroV86CardIn {
  from { opacity: 0; transform: translateY(32px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 1280px) and (max-height: 760px) {
  .bkc-hero-v86-slide {
    padding-top: 82px;
    padding-bottom: 52px;
  }

  .bkc-hero-v86-title {
    font-size: clamp(44px, 5.4vw, 78px);
  }

  .bkc-hero-v86-card {
    width: min(100%, 318px);
    padding: 18px 18px 20px;
  }

  .bkc-hero-v86-card-media {
    width: min(100%, 218px);
  }
}

@media (max-width: 1024px) {
  .bkc-hero-v86-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    gap: 34px;
  }

  .bkc-hero-v86-title {
    font-size: clamp(42px, 6.5vw, 72px);
  }

  .bkc-hero-v86-card {
    width: min(100%, 320px);
  }
}

@media (max-width: 767px) {
  .bkc-hero-screen-v86,
  .admin-bar .bkc-hero-screen-v86 {
    height: 100vh;
    min-height: 600px;
  }

  @supports (height: 100svh) {
    .bkc-hero-screen-v86,
    .admin-bar .bkc-hero-screen-v86 {
      height: 100svh;
    }
  }

  .bkc-hero-v86-slide {
    min-height: 600px;
    padding: 104px 22px 78px;
    text-align: center;
  }

  .bkc-hero-v86-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
  }

  .bkc-hero-v86-copy {
    max-width: 560px;
    margin: 0 auto;
  }

  .bkc-hero-v86-tag {
    margin-left: auto;
    margin-right: auto;
  }

  .bkc-hero-v86-title {
    max-width: 11ch;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(40px, 12vw, 62px);
  }

  .bkc-hero-v86-subtitle {
    max-width: 38ch;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(15px, 4vw, 18px);
  }

  .bkc-hero-v86-actions {
    justify-content: center;
  }

  .bkc-hero-v86-primary {
    min-height: 52px;
    padding-inline: 24px;
  }

  .bkc-hero-v86-story {
    justify-content: center;
    width: 100%;
  }

  .bkc-hero-v86-card {
    display: none !important;
  }

  .bkc-hero-v86-bg {
    opacity: .08;
    object-position: center;
  }

  .bkc-hero-v86-slide::after {
    right: -10rem;
    top: 24%;
    width: 28rem;
    height: 28rem;
  }
}

@media (max-width: 430px) {
  .bkc-hero-v86-slide {
    padding-left: 18px;
    padding-right: 18px;
  }

  .bkc-hero-v86-title {
    font-size: clamp(36px, 12vw, 50px);
  }

  .bkc-hero-v86-primary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bkc-hero-v86-slide,
  .bkc-hero-v86-copy,
  .bkc-hero-v86-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}


/* =========================================================
   v8.7 EXACT FULL-SCREEN IMAGE HERO SLIDER
   Uses only the three approved premium banner designs.
   Zero-gap, full-viewport, fading hero slider.
   ========================================================= */
html,
body {
  overflow-x: hidden;
}

body.home main,
body.front-page main,
body.home .site-main,
body.front-page .site-main {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: clip;
}

.bkc-hero-screen-v87,
.bkc-hero-screen-v87 * {
  box-sizing: border-box;
}

.bkc-hero-screen-v87 {
  --bkc-v87-green: #12351f;
  --bkc-v87-cream: #f5f0e8;
  position: relative;
  z-index: 1;
  display: block;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  min-height: 600px;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  line-height: 0 !important;
  background: var(--bkc-v87-cream);
  clear: both;
}

@supports (height: 100svh) {
  .bkc-hero-screen-v87 { height: 100svh; }
}

.admin-bar .bkc-hero-screen-v87 {
  height: calc(100vh - 32px);
}

@supports (height: 100svh) {
  .admin-bar .bkc-hero-screen-v87 { height: calc(100svh - 32px); }
}

.bkc-hero-screen-v87 + *,
.bkc-hero-screen-v87 + section,
.bkc-hero-screen-v87 + .elementor-section,
.bkc-hero-screen-v87 + .wp-block-group,
.bkc-hero-screen-v87 + .products-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.bkc-hero-v87-viewport {
  position: absolute;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  line-height: 0 !important;
}

.bkc-hero-v87-slide {
  grid-area: 1 / 1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 600px;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1000ms ease-in-out, visibility 0s linear 1000ms;
  background: var(--bkc-v87-cream);
}

.bkc-hero-v87-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.bkc-hero-v87-image {
  position: absolute;
  inset: 0;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  object-fit: cover;
  object-position: center center;
  line-height: 0 !important;
  vertical-align: top !important;
  transform: scale(1.002);
  backface-visibility: hidden;
}

/* Preserve the left model and right card better on the first banner. */
.bkc-hero-v87-slide:nth-child(1) .bkc-hero-v87-image {
  object-position: center center;
}

/* Keep the central bottle and right offer card visible. */
.bkc-hero-v87-slide:nth-child(2) .bkc-hero-v87-image {
  object-position: center center;
}

/* Keep the two shea-butter products cleanly visible. */
.bkc-hero-v87-slide:nth-child(3) .bkc-hero-v87-image {
  object-position: center center;
}

.bkc-hero-v87-dots {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: clamp(18px, 3vh, 34px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  transform: translateX(-50%);
}

.bkc-hero-v87-dots button {
  display: block !important;
  width: 11px;
  height: 11px;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  background: rgba(18, 53, 31, .24);
  box-shadow: none !important;
  outline: none;
  cursor: pointer;
  transition: width .28s ease, background-color .28s ease, transform .28s ease;
}

.bkc-hero-v87-dots button.is-active {
  width: 36px;
  background: var(--bkc-v87-green);
}

.bkc-hero-v87-dots button:hover,
.bkc-hero-v87-dots button:focus-visible {
  transform: translateY(-1px);
  background: rgba(18, 53, 31, .62);
}

/* Force Elementor wrappers around the hero to stop adding dead space. */
.elementor-widget-html:has(.bkc-hero-screen-v87),
.elementor-widget-html:has(.bkc-hero-screen-v87) > .elementor-widget-container,
.elementor-section:has(.bkc-hero-screen-v87),
.elementor-container:has(.bkc-hero-screen-v87),
.elementor-column:has(.bkc-hero-screen-v87),
.elementor-widget-wrap:has(.bkc-hero-screen-v87) {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  line-height: 0 !important;
  overflow: hidden !important;
}

.elementor-widget-html:has(.bkc-hero-screen-v87) .bkc-hero-screen-v87,
.elementor-section:has(.bkc-hero-screen-v87) .bkc-hero-screen-v87 {
  line-height: 0 !important;
}

@media (max-width: 1024px) {
  .bkc-hero-v87-image {
    object-position: center center;
  }
}

@media (max-width: 767px) {
  .bkc-hero-screen-v87,
  .admin-bar .bkc-hero-screen-v87 {
    height: 100vh;
    min-height: 600px;
  }
  @supports (height: 100svh) {
    .bkc-hero-screen-v87,
    .admin-bar .bkc-hero-screen-v87 { height: 100svh; }
  }
  .bkc-hero-v87-slide { min-height: 600px; }
  .bkc-hero-v87-image {
    object-fit: cover;
    object-position: center center;
  }
  .bkc-hero-v87-slide:nth-child(1) .bkc-hero-v87-image { object-position: 38% center; }
  .bkc-hero-v87-slide:nth-child(2) .bkc-hero-v87-image { object-position: 34% center; }
  .bkc-hero-v87-slide:nth-child(3) .bkc-hero-v87-image { object-position: 35% center; }
}

@media (max-width: 480px) {
  .bkc-hero-v87-slide:nth-child(1) .bkc-hero-v87-image { object-position: 34% center; }
  .bkc-hero-v87-slide:nth-child(2) .bkc-hero-v87-image { object-position: 28% center; }
  .bkc-hero-v87-slide:nth-child(3) .bkc-hero-v87-image { object-position: 28% center; }
}

@media (prefers-reduced-motion: reduce) {
  .bkc-hero-v87-slide {
    transition: none !important;
  }
  .bkc-hero-v87-image {
    transform: none !important;
  }
}


/* =========================================================
   v8.8 CODED FULL-SCREEN PREMIUM HERO SLIDER
   Replicates the approved three hero designs as real HTML/CSS,
   not full-banner pictures.
   ========================================================= */
.bkc-hero-screen-v88,
.bkc-hero-screen-v88 * { box-sizing: border-box; }

.bkc-hero-screen-v88 {
  --hero-top-space: clamp(88px, 9vh, 116px);
  position: relative;
  width: 100%;
  min-height: 600px;
  height: 100vh;
  overflow: hidden;
  isolation: isolate;
  margin: 0 !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #f5f0e8 0%, #ebe2d6 50%, #e7ddcf 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.35;
}
@supports (height: 100svh) {
  .bkc-hero-screen-v88 { height: 100svh; }
}
.admin-bar .bkc-hero-screen-v88 { height: calc(100vh - 32px); }
@supports (height: 100svh) {
  .admin-bar .bkc-hero-screen-v88 { height: calc(100svh - 32px); }
}
.bkc-hero-screen-v88 + *,
.bkc-hero-screen-v88 + section,
.bkc-hero-screen-v88 + .elementor-section,
.bkc-hero-screen-v88 + .wp-block-group,
.bkc-hero-screen-v88 + .products-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.bkc-hero-v88-viewport { position: relative; width: 100%; height: 100%; }
.bkc-hero-v88-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .72s ease, visibility .72s ease;
}
.bkc-hero-v88-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.bkc-hero-v88-slide--one {
  background: linear-gradient(135deg, #f5ede2 0%, #efe5d7 52%, #e7dccd 100%);
}
.bkc-hero-v88-slide--one::after {
  content: "";
  position: absolute;
  right: -3%;
  top: 8%;
  width: clamp(280px, 26vw, 430px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: rgba(215, 201, 181, .52);
}
.bkc-hero-v88-slide--one::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 46%;
  height: 13%;
  border-radius: 34px 0 0 34px;
  background: rgba(222, 209, 190, .82);
}
.bkc-hero-v88-slide--two {
  background: linear-gradient(135deg, #f7f5ef 0%, #eef0e6 46%, #e8ece0 100%);
}
.bkc-hero-v88-slide--two::before,
.bkc-hero-v88-slide--three::before {
  content: "";
  position: absolute;
  left: -2%;
  top: 18%;
  width: 150px;
  height: 310px;
  background: radial-gradient(circle at 30% 50%, rgba(92,127,85,.16), rgba(92,127,85,0) 70%);
  filter: blur(4px);
  opacity: .8;
}
.bkc-hero-v88-slide--two::after {
  content: "";
  position: absolute;
  right: -1%;
  top: 14%;
  width: 150px;
  height: 310px;
  background: radial-gradient(circle at 70% 50%, rgba(92,127,85,.14), rgba(92,127,85,0) 72%);
  filter: blur(4px);
  opacity: .7;
}
.bkc-hero-v88-slide--three {
  background: linear-gradient(135deg, #f7f0e7 0%, #f1eadf 50%, #e9dfd1 100%);
}
.bkc-hero-v88-slide--three::after {
  content: "";
  position: absolute;
  right: -1%;
  top: 0;
  width: 290px;
  height: 160px;
  background: radial-gradient(circle at 90% 0%, rgba(57,92,48,.24), rgba(57,92,48,0) 66%);
}

.bkc-hero-v88-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1460px;
  margin: 0 auto;
  padding: var(--hero-top-space) clamp(18px, 3vw, 42px) 72px;
  display: grid;
  align-items: center;
  column-gap: clamp(18px, 2vw, 28px);
}
.bkc-hero-v88-inner--one { grid-template-columns: minmax(220px, .9fr) minmax(360px, .98fr) minmax(190px, .42fr); }
.bkc-hero-v88-inner--two { grid-template-columns: minmax(300px, .95fr) minmax(360px, .98fr) minmax(240px, .62fr); }
.bkc-hero-v88-inner--three { grid-template-columns: minmax(360px, .96fr) minmax(460px, 1.12fr); }

.bkc-hero-v88-copy { max-width: 520px; }
.bkc-hero-v88-tagline,
.bkc-hero-v88-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #214c35;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}
.bkc-hero-v88-tagline svg { width: 16px; height: 16px; fill: #2d6745; }
.bkc-hero-v88-pill {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(226, 233, 216, .9);
  letter-spacing: .12em;
}
.bkc-hero-v88-title {
  margin: 0 0 18px;
  color: #1f4c35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
.bkc-hero-v88-title em,
.bkc-hero-v88-title .accent {
  color: #bb6b34;
  font-style: normal;
}
.bkc-hero-v88-copy--nourish .bkc-hero-v88-title em { font-style: italic; color: #214c35; }
.bkc-hero-v88-text,
.bkc-hero-v88-kicker {
  margin: 0 0 24px;
  max-width: 420px;
  color: #4e534d;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  line-height: 1.52;
}
.bkc-hero-v88-kicker {
  font-size: clamp(1.15rem, 1.3vw, 1.45rem);
  margin-bottom: 24px;
}
.bkc-hero-v88-checks { list-style: none; margin: 0 0 28px; padding: 0; }
.bkc-hero-v88-checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #353935;
  font-size: clamp(1rem, 1vw, 1.2rem);
  margin-bottom: 16px;
}
.bkc-hero-v88-checks li span {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #dfe8d8; color: #2b603f; font-weight: 700; flex: 0 0 34px;
}
.bkc-hero-v88-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.bkc-hero-v88-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 14px 28px; border-radius: 999px;
  text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .06em;
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease;
}
.bkc-hero-v88-btn:hover { transform: translateY(-2px); }
.bkc-hero-v88-btn--primary {
  background: #184f34; color: #fff; box-shadow: 0 16px 28px rgba(24,79,52,.18);
}
.bkc-hero-v88-btn--primary:hover { background: #113d28; color: #fff; }
.bkc-hero-v88-btn--ghost {
  color: #2c4d39; background: transparent; padding-inline: 0;
}
.bkc-hero-v88-btn--ghost .play {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid #5c7c65; display: inline-flex; align-items: center; justify-content: center;
}
.bkc-hero-v88-btn--full { width: 100%; }

.bkc-hero-v88-media,
.bkc-hero-v88-visual,
.bkc-hero-v88-sidecard { margin: 0; }
.bkc-hero-v88-media img,
.bkc-hero-v88-visual img,
.bkc-hero-v88-sidecard img {
  display: block;
  width: 100%;
  height: auto;
}
.bkc-hero-v88-media--portrait {
  align-self: end;
  display: flex; align-items: end; justify-content: start;
}
.bkc-hero-v88-media--portrait img {
  max-height: min(68vh, 520px); width: auto;
  filter: drop-shadow(0 18px 34px rgba(90, 58, 29, .12));
}
.bkc-hero-v88-sidecard { justify-self: end; width: min(100%, 215px); }
.bkc-hero-v88-sidecard img {
  border-radius: 28px;
  box-shadow: 0 18px 36px rgba(74, 55, 31, .18);
}
.bkc-hero-v88-visual--center { justify-self: center; width: min(100%, 740px); }
.bkc-hero-v88-visual--center img { max-height: min(64vh, 540px); width: auto; }
.bkc-hero-v88-visual--duo { justify-self: end; width: min(100%, 710px); }
.bkc-hero-v88-visual--duo img { max-height: min(62vh, 500px); width: auto; }

.bkc-hero-v88-sale {
  justify-self: end;
  width: min(100%, 360px);
  padding: 30px 28px;
  border-radius: 28px;
  background: rgba(236, 239, 225, .94);
  border: 1px solid rgba(179, 191, 168, .52);
  box-shadow: 0 18px 42px rgba(79, 89, 58, .08);
}
.bkc-hero-v88-sale .eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px; border: 1px solid #d2dbc8;
  color: #214c35; font-size: 11px; font-weight: 700; letter-spacing: .08em;
  margin-bottom: 18px;
}
.bkc-hero-v88-sale .eyebrow::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%; background: #2d6846;
}
.bkc-hero-v88-sale h3 {
  margin: 0 0 12px; color: #234a35; font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 2.2vw, 2.8rem); font-weight: 400; line-height: 1.03;
}
.bkc-hero-v88-sale p {
  margin: 0 0 20px; color: #39503d; font-size: 1.02rem; line-height: 1.45;
}
.bkc-hero-v88-countdown {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; margin-bottom: 24px;
}
.bkc-hero-v88-countdown span {
  display: grid; gap: 4px; justify-items: center; padding: 14px 10px;
  border-radius: 16px; background: rgba(255,255,255,.85); box-shadow: 0 4px 14px rgba(0,0,0,.04);
}
.bkc-hero-v88-countdown strong { font-size: clamp(1.45rem, 1.8vw, 2rem); color: #234a35; line-height: 1; }
.bkc-hero-v88-countdown em { font-size: .68rem; font-style: normal; color: #657062; letter-spacing: .08em; }

.bkc-hero-v88-trust {
  display: flex; gap: clamp(12px, 1.6vw, 24px); margin-top: 28px; flex-wrap: wrap;
}
.bkc-hero-v88-trust span {
  display: grid; grid-template-columns: 44px 1fr; align-items: center; column-gap: 12px;
  color: #374139; font-size: .97rem; line-height: 1.35;
}
.bkc-hero-v88-trust span i {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid #a4b890;
  display: inline-flex; align-items: center; justify-content: center; font-style: normal; color: #2f6544;
  background: rgba(247,250,242,.7);
}

.bkc-hero-v88-dots {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 10px; z-index: 5;
}
.bkc-hero-v88-dots button {
  width: 12px; height: 12px; border: 0; border-radius: 999px; cursor: pointer;
  background: rgba(38, 78, 55, .22); transition: width .3s ease, background .3s ease;
}
.bkc-hero-v88-dots button.is-active { width: 34px; background: #184f34; }
.bkc-hero-v88-dots button:hover,
.bkc-hero-v88-dots button:focus-visible { background: rgba(24,79,52,.65); outline: none; }

.elementor-widget-html:has(.bkc-hero-screen-v88),
.elementor-widget-html:has(.bkc-hero-screen-v88) > .elementor-widget-container,
.elementor-section:has(.bkc-hero-screen-v88),
.elementor-container:has(.bkc-hero-screen-v88),
.elementor-column:has(.bkc-hero-screen-v88),
.elementor-widget-wrap:has(.bkc-hero-screen-v88) {
  margin: 0 !important; padding: 0 !important; min-height: 0 !important;
}

@media (max-width: 1280px) {
  .bkc-hero-v88-inner--one { grid-template-columns: minmax(200px, .75fr) minmax(330px, 1fr) minmax(170px, .38fr); }
  .bkc-hero-v88-inner--two { grid-template-columns: minmax(270px, .82fr) minmax(320px, .95fr) minmax(230px, .58fr); }
  .bkc-hero-v88-inner--three { grid-template-columns: minmax(340px, .92fr) minmax(370px, 1fr); }
}
@media (max-width: 1080px) {
  .bkc-hero-v88-title { font-size: clamp(2rem, 3.5vw, 3.25rem); }
  .bkc-hero-v88-inner { padding-top: clamp(94px, 11vh, 112px); }
  .bkc-hero-v88-media--portrait img { max-height: min(58vh, 460px); }
  .bkc-hero-v88-visual--center img { max-height: min(55vh, 470px); }
  .bkc-hero-v88-visual--duo img { max-height: min(50vh, 430px); }
  .bkc-hero-v88-sale { padding: 22px 20px; }
}
@media (max-width: 900px) {
  .bkc-hero-screen-v88 { min-height: 560px; }
  .bkc-hero-v88-inner--one,
  .bkc-hero-v88-inner--two,
  .bkc-hero-v88-inner--three { grid-template-columns: 1fr 1fr; }
  .bkc-hero-v88-sidecard,
  .bkc-hero-v88-sale { width: 100%; max-width: 280px; }
  .bkc-hero-v88-media--portrait { grid-row: 1 / span 2; }
}
@media (max-width: 767px) {
  .bkc-hero-screen-v88,
  .admin-bar .bkc-hero-screen-v88 {
    height: 100vh; min-height: 600px;
  }
  @supports (height: 100svh) {
    .bkc-hero-screen-v88,
    .admin-bar .bkc-hero-screen-v88 { height: 100svh; }
  }
  .bkc-hero-v88-inner,
  .bkc-hero-v88-inner--one,
  .bkc-hero-v88-inner--two,
  .bkc-hero-v88-inner--three {
    grid-template-columns: 1fr; text-align: center; justify-items: center;
    padding: 110px 20px 76px;
  }
  .bkc-hero-v88-media,
  .bkc-hero-v88-sidecard,
  .bkc-hero-v88-visual,
  .bkc-hero-v88-sale { display: none; }
  .bkc-hero-v88-copy,
  .bkc-hero-v88-text,
  .bkc-hero-v88-kicker { max-width: 100%; }
  .bkc-hero-v88-title { font-size: clamp(2rem, 10vw, 3rem); }
  .bkc-hero-v88-actions { justify-content: center; }
  .bkc-hero-v88-btn { width: 100%; max-width: 340px; }
  .bkc-hero-v88-btn--ghost { justify-content: center; padding-inline: 14px; }
  .bkc-hero-v88-trust { justify-content: center; }
  .bkc-hero-v88-trust span { max-width: 240px; grid-template-columns: 44px auto; text-align: left; }
  .bkc-hero-v88-checks { display: inline-grid; text-align: left; }
}
@media (max-width: 520px) {
  .bkc-hero-v88-title { font-size: clamp(1.85rem, 9.4vw, 2.5rem); }
  .bkc-hero-v88-tagline,
  .bkc-hero-v88-pill { font-size: 11px; }
}


/* =========================================================
   v8.9 HERO POLISH: BLENDED IMAGES + MOBILE VISUALS
   Fixes cropped-looking assets, reduces header-to-hero spacing,
   and keeps meaningful images visible on mobile.
   ========================================================= */
.bkc-hero-screen-v88 {
  --hero-top-space: clamp(58px, 6.4vh, 78px);
  min-height: 600px;
  background:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.45), transparent 36%),
    linear-gradient(135deg, #f7f1e8 0%, #efe5d8 52%, #e7dccd 100%);
}

/* reduce any theme/Elementor gap around the hero */
body .bkc-hero-screen-v88,
body .bkc-hero-screen-v88 .bkc-hero-v88-viewport,
body .bkc-hero-screen-v88 .bkc-hero-v88-slide {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.bkc-hero-v88-inner {
  padding-top: var(--hero-top-space);
  padding-bottom: clamp(42px, 5vh, 62px);
}

/* Softly merge visual assets into the art direction instead of showing hard crop edges. */
.bkc-hero-v88-media--portrait,
.bkc-hero-v88-visual,
.bkc-hero-v88-sidecard {
  position: relative;
  overflow: visible;
}
.bkc-hero-v88-media--portrait::after,
.bkc-hero-v88-visual::after {
  content: "";
  position: absolute;
  inset: auto -8% -3% -8%;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(245,240,232,0), rgba(245,240,232,.9) 72%, rgba(245,240,232,1));
  filter: blur(14px);
  z-index: 2;
}
.bkc-hero-v88-media--portrait img,
.bkc-hero-v88-visual img,
.bkc-hero-v88-sidecard img {
  object-fit: contain !important;
  border: 0 !important;
  background: transparent !important;
  outline: 0 !important;
}
.bkc-hero-v88-media--portrait img {
  max-height: min(64vh, 500px);
  filter: drop-shadow(0 24px 34px rgba(97, 64, 34, .11));
}
.bkc-hero-v88-sidecard {
  transform: translateX(-4px);
}
.bkc-hero-v88-sidecard img {
  box-shadow: 0 18px 38px rgba(78, 56, 32, .14);
}
.bkc-hero-v88-visual--center img {
  max-height: min(61vh, 510px);
  filter: drop-shadow(0 24px 38px rgba(77, 88, 62, .08));
}
.bkc-hero-v88-visual--duo img {
  max-height: min(58vh, 485px);
  filter: drop-shadow(0 22px 36px rgba(93, 60, 30, .09));
}

/* refine desktop layout so everything is visible within one viewport */
.bkc-hero-v88-title {
  font-size: clamp(2.2rem, 3.55vw, 3.75rem);
}
.bkc-hero-v88-text,
.bkc-hero-v88-kicker {
  margin-bottom: 20px;
}
.bkc-hero-v88-checks {
  margin-bottom: 22px;
}
.bkc-hero-v88-checks li {
  margin-bottom: 12px;
}
.bkc-hero-v88-trust {
  margin-top: 22px;
}
.bkc-hero-v88-sale {
  padding: clamp(20px, 2.1vw, 28px);
}
.bkc-hero-v88-countdown {
  gap: 8px;
  margin-bottom: 18px;
}
.bkc-hero-v88-countdown span {
  padding: 10px 8px;
}

/* Tablet: prevent visual overflow while preserving the full design language */
@media (max-width: 1080px) {
  .bkc-hero-screen-v88 {
    --hero-top-space: clamp(56px, 6vh, 72px);
  }
  .bkc-hero-v88-inner {
    padding-inline: 22px;
    padding-bottom: 50px;
  }
  .bkc-hero-v88-title {
    font-size: clamp(2rem, 3.1vw, 3rem);
  }
  .bkc-hero-v88-media--portrait img {
    max-height: min(56vh, 435px);
  }
  .bkc-hero-v88-visual--center img {
    max-height: min(52vh, 430px);
  }
  .bkc-hero-v88-visual--duo img {
    max-height: min(50vh, 420px);
  }
  .bkc-hero-v88-sidecard {
    width: min(100%, 190px);
  }
  .bkc-hero-v88-sale {
    max-width: 300px;
  }
}

/* Mobile: show images too, keep everything within the hero, and avoid large space under the header */
@media (max-width: 767px) {
  .bkc-hero-screen-v88,
  .admin-bar .bkc-hero-screen-v88 {
    height: 100svh;
    min-height: 640px;
    max-height: none;
  }

  .bkc-hero-v88-inner,
  .bkc-hero-v88-inner--one,
  .bkc-hero-v88-inner--two,
  .bkc-hero-v88-inner--three {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    gap: 12px;
    text-align: center;
    padding: clamp(72px, 9vh, 88px) 18px 54px;
  }

  .bkc-hero-v88-media,
  .bkc-hero-v88-visual,
  .bkc-hero-v88-sidecard {
    display: block !important;
  }

  .bkc-hero-v88-copy {
    order: 1;
    max-width: 360px;
  }

  .bkc-hero-v88-media--portrait,
  .bkc-hero-v88-visual--center,
  .bkc-hero-v88-visual--duo,
  .bkc-hero-v88-sidecard {
    order: 2;
    justify-self: center;
  }

  .bkc-hero-v88-media--portrait img {
    max-height: 28vh;
    max-width: 82vw;
    width: auto;
    margin-inline: auto;
  }

  .bkc-hero-v88-sidecard {
    width: min(46vw, 150px);
    margin-top: 2px;
  }

  .bkc-hero-v88-visual--center,
  .bkc-hero-v88-visual--duo {
    width: min(92vw, 370px);
  }

  .bkc-hero-v88-visual--center img,
  .bkc-hero-v88-visual--duo img {
    max-height: 26vh;
    max-width: 100%;
    width: auto;
    margin-inline: auto;
  }

  .bkc-hero-v88-sale {
    display: none !important;
  }

  .bkc-hero-v88-title {
    font-size: clamp(1.75rem, 8.2vw, 2.55rem);
    line-height: 1;
    margin-bottom: 10px;
  }

  .bkc-hero-v88-tagline,
  .bkc-hero-v88-pill {
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: .07em;
  }

  .bkc-hero-v88-pill {
    padding: 8px 13px;
  }

  .bkc-hero-v88-text,
  .bkc-hero-v88-kicker {
    font-size: .91rem;
    line-height: 1.42;
    margin: 0 auto 13px;
  }

  .bkc-hero-v88-actions {
    justify-content: center;
    gap: 8px;
  }

  .bkc-hero-v88-btn {
    min-height: 42px;
    width: auto;
    max-width: none;
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: .045em;
  }

  .bkc-hero-v88-btn--ghost {
    padding-inline: 8px;
  }

  .bkc-hero-v88-btn--ghost .play {
    width: 30px;
    height: 30px;
    font-size: 10px;
  }

  .bkc-hero-v88-checks {
    display: grid;
    gap: 7px;
    margin: 0 auto 14px;
    max-width: 340px;
    text-align: left;
  }

  .bkc-hero-v88-checks li {
    margin: 0;
    font-size: .88rem;
    gap: 9px;
  }

  .bkc-hero-v88-checks li span {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 12px;
  }

  .bkc-hero-v88-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 8px;
    margin-top: 14px;
    width: 100%;
  }

  .bkc-hero-v88-trust span {
    display: block;
    max-width: none;
    text-align: center;
    font-size: .68rem;
    line-height: 1.2;
  }

  .bkc-hero-v88-trust span i {
    width: 28px;
    height: 28px;
    margin: 0 auto 4px;
    font-size: 13px;
  }

  .bkc-hero-v88-dots {
    bottom: 16px;
  }
}

/* Small mobile: prioritize balanced visibility without cropping */
@media (max-width: 420px) {
  .bkc-hero-screen-v88,
  .admin-bar .bkc-hero-screen-v88 {
    min-height: 610px;
  }

  .bkc-hero-v88-inner,
  .bkc-hero-v88-inner--one,
  .bkc-hero-v88-inner--two,
  .bkc-hero-v88-inner--three {
    padding-top: clamp(64px, 8vh, 76px);
    padding-bottom: 48px;
    gap: 8px;
  }

  .bkc-hero-v88-title {
    font-size: clamp(1.55rem, 7.7vw, 2.08rem);
  }

  .bkc-hero-v88-text,
  .bkc-hero-v88-kicker {
    font-size: .82rem;
  }

  .bkc-hero-v88-media--portrait img,
  .bkc-hero-v88-visual--center img,
  .bkc-hero-v88-visual--duo img {
    max-height: 23vh;
  }

  .bkc-hero-v88-sidecard {
    width: min(43vw, 132px);
  }

  .bkc-hero-v88-actions {
    flex-direction: row;
  }

  .bkc-hero-v88-btn {
    padding: 9px 12px;
    min-height: 38px;
    font-size: 9px;
  }
}


/* =========================================================
   v9.0 HERO IMAGE REFINEMENT
   Fuller slide 1 portrait, exact slide 2 visual replacement,
   and tighter mobile header-to-hero spacing.
   ========================================================= */
.bkc-hero-screen-v88 { --hero-top-space: clamp(52px, 5.6vh, 70px); }
.bkc-hero-v88-inner { padding-top: var(--hero-top-space); }
.bkc-hero-v88-inner--one { grid-template-columns: minmax(255px,.98fr) minmax(350px,.92fr) minmax(190px,.42fr); }
.bkc-hero-v88-media--portrait { align-self: end; justify-self: start; }
.bkc-hero-v88-media--portrait img {
  max-height: min(72vh, 590px);
  max-width: min(36vw, 520px);
  width: auto;
  margin-left: -12px;
  object-position: center bottom;
}
.bkc-hero-v88-sidecard { margin-right: 10px; }
.bkc-hero-v88-visual--center {
  width: min(100%, 760px);
  align-self: center;
}
.bkc-hero-v88-visual--center img {
  max-height: min(66vh, 560px);
  max-width: min(53vw, 760px);
  width: auto;
  margin-inline: auto;
}

@media (max-width: 1280px) {
  .bkc-hero-v88-inner--one { grid-template-columns: minmax(220px,.82fr) minmax(330px,.95fr) minmax(175px,.4fr); }
  .bkc-hero-v88-media--portrait img { max-height: min(65vh, 520px); max-width: min(34vw, 460px); }
  .bkc-hero-v88-visual--center img { max-height: min(60vh, 500px); max-width: min(50vw, 650px); }
}

@media (max-width: 900px) {
  .bkc-hero-v88-inner { padding-top: clamp(50px, 6vh, 64px); }
}

@media (max-width: 767px) {
  .bkc-hero-screen-v88,
  .admin-bar .bkc-hero-screen-v88 {
    min-height: 620px;
  }
  .bkc-hero-v88-inner,
  .bkc-hero-v88-inner--one,
  .bkc-hero-v88-inner--two,
  .bkc-hero-v88-inner--three {
    padding-top: clamp(48px, 5.5vh, 60px);
    padding-bottom: 48px;
    gap: 8px;
  }
  .bkc-hero-v88-copy { max-width: 345px; }
  .bkc-hero-v88-media--portrait img {
    max-height: 31vh;
    max-width: 88vw;
    margin-left: 0;
  }
  .bkc-hero-v88-visual--center,
  .bkc-hero-v88-visual--duo {
    width: min(94vw, 390px);
  }
  .bkc-hero-v88-visual--center img,
  .bkc-hero-v88-visual--duo img {
    max-height: 27vh;
    max-width: 94vw;
  }
  .bkc-hero-v88-sidecard {
    width: min(42vw, 145px);
    margin-right: 0;
  }
  .bkc-hero-v88-title { margin-bottom: 8px; }
  .bkc-hero-v88-text,
  .bkc-hero-v88-kicker { margin-bottom: 10px; }
  .bkc-hero-v88-checks { margin-bottom: 12px; }
  .bkc-hero-v88-actions { gap: 6px; }
  .bkc-hero-v88-dots { bottom: 14px; }
}

@media (max-width: 420px) {
  .bkc-hero-screen-v88,
  .admin-bar .bkc-hero-screen-v88 { min-height: 600px; }
  .bkc-hero-v88-inner,
  .bkc-hero-v88-inner--one,
  .bkc-hero-v88-inner--two,
  .bkc-hero-v88-inner--three {
    padding-top: clamp(42px, 4.8vh, 54px);
    padding-bottom: 42px;
    gap: 6px;
  }
  .bkc-hero-v88-media--portrait img { max-height: 29vh; }
  .bkc-hero-v88-visual--center img,
  .bkc-hero-v88-visual--duo img { max-height: 24vh; }
}


/* =========================================================
   v9.0 HERO FINAL POLISH
   - fuller model image on slide 1 using approved upload
   - replace slide 2 image with approved full composition
   - reduce mobile header/hero gap, especially slide 2
   ========================================================= */

/* Fuller slide 1 portrait and gentler blending */
.bkc-hero-v88-media--portrait img {
  max-height: min(72vh, 560px);
  width: auto;
  max-width: min(100%, 430px);
  object-position: center bottom;
}

/* Slide 2 image should show complete composition */
.bkc-hero-v88-visual--center {
  width: min(100%, 820px);
}
.bkc-hero-v88-visual--center img {
  max-height: min(66vh, 560px);
  width: auto;
  max-width: 100%;
  object-position: center center;
}

/* Slightly reduce desktop top space too */
.bkc-hero-screen-v88 {
  --hero-top-space: clamp(48px, 5.4vh, 68px);
}

/* Ensure blended assets sit naturally */
.bkc-hero-v88-media--portrait::after,
.bkc-hero-v88-visual::after {
  inset: auto -10% -5% -10%;
  height: 38%;
}

/* Mobile: close up header/hero gap and keep imagery visible */
@media (max-width: 767px) {
  .bkc-hero-screen-v88,
  .admin-bar .bkc-hero-screen-v88 {
    min-height: 620px;
  }

  .bkc-hero-v88-inner,
  .bkc-hero-v88-inner--one,
  .bkc-hero-v88-inner--two,
  .bkc-hero-v88-inner--three {
    padding-top: clamp(52px, 6.2vh, 64px) !important;
    padding-bottom: 48px !important;
    gap: 8px !important;
    align-content: start;
  }

  .bkc-hero-v88-copy {
    margin-top: 0 !important;
  }

  /* show fuller woman on slide 1 */
  .bkc-hero-v88-media--portrait img {
    max-height: 30vh;
    max-width: min(88vw, 320px);
  }

  /* show more of slide 2 product composition */
  .bkc-hero-v88-visual--center {
    width: min(95vw, 390px);
  }
  .bkc-hero-v88-visual--center img {
    max-height: 28vh;
    max-width: 100%;
  }

  .bkc-hero-v88-visual--duo img {
    max-height: 24vh;
  }

  .bkc-hero-v88-sidecard {
    width: min(44vw, 142px);
    margin-top: 0;
  }

  .bkc-hero-v88-title {
    margin-bottom: 8px;
  }

  .bkc-hero-v88-text,
  .bkc-hero-v88-kicker {
    margin-bottom: 10px;
  }

  .bkc-hero-v88-actions {
    gap: 6px;
  }

  .bkc-hero-v88-dots {
    bottom: 12px;
  }
}

@media (max-width: 420px) {
  .bkc-hero-v88-inner,
  .bkc-hero-v88-inner--one,
  .bkc-hero-v88-inner--two,
  .bkc-hero-v88-inner--three {
    padding-top: clamp(44px, 5.8vh, 56px) !important;
    padding-bottom: 42px !important;
  }

  .bkc-hero-v88-media--portrait img {
    max-height: 27vh;
    max-width: min(90vw, 285px);
  }

  .bkc-hero-v88-visual--center img {
    max-height: 25vh;
  }
}


/* =========================================================
   v9.1 MOBILE SLIDE 1 FIX ONLY
   Fixes slide 1 mobile composition so the woman image shows fuller,
   blends better, and does not create excessive header spacing.
   Slide 2 and Slide 3 remain unchanged.
   ========================================================= */

@media (max-width: 767px) {
  /* Tighter top spacing for the first hero slide only */
  .bkc-hero-v88-slide--one .bkc-hero-v88-inner--one {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    align-content: start !important;
    justify-items: center !important;
    padding-top: clamp(38px, 5vh, 50px) !important;
    padding-bottom: 44px !important;
    gap: 6px !important;
    overflow: hidden !important;
  }

  /* Copy remains clean and readable */
  .bkc-hero-v88-slide--one .bkc-hero-v88-copy {
    order: 1 !important;
    max-width: 350px !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-tagline {
    margin-bottom: 8px !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-title {
    font-size: clamp(1.7rem, 8vw, 2.35rem) !important;
    line-height: .98 !important;
    margin-bottom: 8px !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-text {
    font-size: .84rem !important;
    line-height: 1.38 !important;
    margin-bottom: 10px !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-actions {
    gap: 6px !important;
    justify-content: center !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-btn {
    min-height: 38px !important;
    padding: 9px 13px !important;
    font-size: 9px !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-btn--ghost .play {
    width: 28px !important;
    height: 28px !important;
  }

  /* Make the girl image fuller and naturally blended on mobile */
  .bkc-hero-v88-slide--one .bkc-hero-v88-media--portrait {
    order: 2 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
    width: 100% !important;
    max-width: 390px !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 1 !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-media--portrait img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: min(96vw, 360px) !important;
    max-height: 34vh !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    margin-inline: auto !important;
    filter: drop-shadow(0 18px 26px rgba(97,64,34,.10)) !important;
  }

  /* Soft background wash behind the girl so no crop/box line is visible */
  .bkc-hero-v88-slide--one .bkc-hero-v88-media--portrait::before {
    content: "" !important;
    position: absolute !important;
    inset: 8% 2% -6% 2% !important;
    border-radius: 42% 42% 26% 26% !important;
    background:
      radial-gradient(circle at 50% 45%, rgba(255,255,255,.46), rgba(245,237,226,.02) 72%),
      linear-gradient(to bottom, rgba(245,237,226,.05), rgba(245,237,226,.75)) !important;
    filter: blur(18px) !important;
    z-index: -1 !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-media--portrait::after {
    inset: auto -15% -9% -15% !important;
    height: 42% !important;
    background: linear-gradient(to bottom, rgba(245,237,226,0), rgba(245,237,226,.98) 76%, #f5ede2) !important;
    filter: blur(16px) !important;
  }

  /* Keep the product card visible, but smaller and lower priority on mobile */
  .bkc-hero-v88-slide--one .bkc-hero-v88-sidecard {
    order: 3 !important;
    display: block !important;
    width: min(34vw, 108px) !important;
    margin-top: -8px !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-sidecard img {
    border-radius: 16px !important;
    box-shadow: 0 10px 22px rgba(78,56,32,.12) !important;
  }
}

@media (max-width: 420px) {
  .bkc-hero-v88-slide--one .bkc-hero-v88-inner--one {
    padding-top: clamp(32px, 4.5vh, 42px) !important;
    padding-bottom: 40px !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-title {
    font-size: clamp(1.5rem, 7.4vw, 2rem) !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-text {
    font-size: .78rem !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-media--portrait img {
    max-width: min(98vw, 330px) !important;
    max-height: 32vh !important;
  }

  .bkc-hero-v88-slide--one .bkc-hero-v88-sidecard {
    width: min(32vw, 98px) !important;
    margin-top: -6px !important;
  }
}

/* Give containers stable heights/aspect ratios so replacement images fit cleanly */
.product-img-frame { min-height: 360px !important; display:flex !important; align-items:center !important; justify-content:center !important; padding: 18px !important; border-radius: 28px !important; }
.product-img-frame img { height: auto !important; max-height: 55vh !important; filter: drop-shadow(0 22px 40px rgba(0,0,0,.12)) !important; }
.bkc-pcs-v76-image { padding: 14px !important; }
.shop-product-media { min-height: 210px !important; padding: 18px !important; }
.shop-product-media img { height: auto !important; max-height: 185px !important; }
.category-img,
.bkc-shop-category-img { padding: 8px !important; }
.bkc-about-hero-image-v81 { min-height: 420px !important; display:flex !important; align-items:center !important; justify-content:center !important; }
.bkc-about-hero-image-v81 img { height: auto !important; max-height: 520px !important; padding: 18px !important; }
.philosophy-img-box { min-height: 420px !important; display:flex !important; align-items:center !important; justify-content:center !important; }
.philosophy-img-box img { height: auto !important; max-height: 520px !important; padding: 16px !important; }
.about-img-side { display:flex !important; align-items:center !important; justify-content:center !important; }
.about-img-side img { height: auto !important; max-height: 520px !important; min-height: 0 !important; padding: 16px !important; }
.contact-img-wrapper { display:flex !important; align-items:center !important; justify-content:center !important; border-radius: 32px !important; }
.contact-img-wrapper img { height: auto !important; max-height: 560px !important; padding: 18px !important; }
.team-img img { object-fit: contain !important; padding: 10px !important; }

/* WooCommerce shop archive: ensure products are visible immediately under category shortcuts */
.woocommerce-shop ul.products,
.post-type-archive-product ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.5rem !important;
  visibility: visible !important;
  opacity: 1 !important;
  clear: both !important;
}
.woocommerce-shop ul.products li.product,
.post-type-archive-product ul.products li.product {
  display: flex !important;
  flex-direction: column !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { display: block !important; border-radius: 18px !important; padding: 10px !important; }

/* Cart/checkout/account mobile top spacing under floating header */
@media (max-width: 767px) {
  body.woocommerce-cart .bkc-woo-page,
  body.woocommerce-checkout .bkc-woo-page,
  body.woocommerce-account .bkc-woo-page {
    padding-top: 118px !important;
  }
  body.woocommerce-cart .bkc-woo-container,
  body.woocommerce-checkout .bkc-woo-container,
  body.woocommerce-account .bkc-woo-container {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  body.woocommerce-cart .entry-title,
  body.woocommerce-cart .page-title,
  body.woocommerce-cart h1,
  body.woocommerce-checkout .entry-title,
  body.woocommerce-checkout .page-title,
  body.woocommerce-checkout h1 {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}
.single-product .flex-control-thumbs img {
  object-fit: contain !important;
  background: #fffaf2 !important;
  padding: 6px !important;
}
.single-product .flex-control-thumbs img:focus-visible {
  outline: 3px solid var(--primary-green, #173f29) !important;
  outline-offset: 2px !important;
}

@media (max-width: 900px) {
  .woocommerce-shop ul.products,
  .post-type-archive-product ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .product-img-frame { min-height: 300px !important; }
  .bkc-about-hero-image-v81,
  .philosophy-img-box { min-height: 340px !important; }
  .single-product .woocommerce-product-gallery__image { min-height: 320px !important; }
}
@media (max-width: 520px) {
  .woocommerce-shop ul.products,
  .post-type-archive-product ul.products { gap: .85rem !important; }
  .shop-product-media { min-height: 160px !important; }
  .shop-product-media img { max-height: 142px !important; }
  .bkc-pcs-v76-image { padding: 10px !important; }
  .single-product .woocommerce-product-gallery__image { min-height: 270px !important; }
  .single-product .woocommerce-product-gallery__image img { max-height: 300px !important; }
}


/* =========================================================
   v9.4 REVERT WOOCOMMERCE PRODUCT IMAGE BOXES ONLY
   Restores WooCommerce product images/product-gallery image boxes
   to the theme's previous/default behavior while leaving all
   Home/About/Contact image blending untouched.
   ========================================================= */

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img,
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img,
.woocommerce .products .product img,
.woocommerce-page .products .product img,
.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img,
.woocommerce-product-gallery img,
.woocommerce-product-gallery__image img,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper img,
.product .attachment-woocommerce_thumbnail,
.woocommerce-loop-product__link img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: initial !important;
  object-position: initial !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  margin-left: auto;
  margin-right: auto;
  border-radius: inherit;
  background: transparent !important;
  box-shadow: none;
  filter: none;
  transform: none;
}

/* Keep WooCommerce image containers from inheriting the new smooth-blend frames */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce div.product div.images,
.woocommerce-product-gallery,
.woocommerce-product-gallery__image,
.woocommerce-loop-product__link {
  overflow: visible;
}

.woocommerce ul.products li.product::before,
.woocommerce ul.products li.product::after,
.woocommerce-page ul.products li.product::before,
.woocommerce-page ul.products li.product::after,
.woocommerce div.product div.images::before,
.woocommerce div.product div.images::after,
.woocommerce-product-gallery::before,
.woocommerce-product-gallery::after,
.woocommerce-product-gallery__image::before,
.woocommerce-product-gallery__image::after,
.woocommerce-loop-product__link::before,
.woocommerce-loop-product__link::after {
  content: none !important;
  display: none !important;
}

/* Do not apply the Home/About/Contact smooth-image utility to WooCommerce product images */
.woocommerce img.bkc-soft-fit,
.woocommerce-page img.bkc-soft-fit,
.woocommerce .bkc-soft-fit img,
.woocommerce-page .bkc-soft-fit img {
  object-fit: initial !important;
  aspect-ratio: auto !important;
  background: transparent !important;
  filter: none !important;
}


/* =========================================================
   v9.5 HOME / ABOUT / CONTACT IMAGE BLEND + FIT ONLY
   Restores smooth non-cropped image treatment ONLY on:
   - Home page sections
   - About page template/content
   - Contact page template/content
   It intentionally excludes all WooCommerce shop/product/cart/checkout areas.
   ========================================================= */

/* Page scope only: never apply to WooCommerce pages or WooCommerce blocks */
body:not(.woocommerce):not(.woocommerce-page) .products-section .product-img-frame,
body:not(.woocommerce):not(.woocommerce-page) .bkc-pcs-v76-image,
body:not(.woocommerce):not(.woocommerce-page) .philosophy-img-box,
body:not(.woocommerce):not(.woocommerce-page) .about-img-side,
body:not(.woocommerce):not(.woocommerce-page) .about-hero-image,
body:not(.woocommerce):not(.woocommerce-page) .about-team-image,
body:not(.woocommerce):not(.woocommerce-page) .contact-img-box,
body:not(.woocommerce):not(.woocommerce-page) .contact-image,
body:not(.woocommerce):not(.woocommerce-page) .contact-visual,
body:not(.woocommerce):not(.woocommerce-page) .bkc-contact-image,
body.page-template-page-about:not(.woocommerce):not(.woocommerce-page) figure,
body.page-template-page-contact:not(.woocommerce):not(.woocommerce-page) figure {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.72), rgba(247,241,232,.2) 58%, rgba(232,220,204,.1) 100%),
    linear-gradient(135deg, rgba(250,247,241,.96), rgba(232,220,204,.84));
}

/* Soft wash at the bottom/edges for a premium blended look */
body:not(.woocommerce):not(.woocommerce-page) .products-section .product-img-frame::after,
body:not(.woocommerce):not(.woocommerce-page) .bkc-pcs-v76-image::after,
body:not(.woocommerce):not(.woocommerce-page) .philosophy-img-box::after,
body:not(.woocommerce):not(.woocommerce-page) .about-img-side::after,
body:not(.woocommerce):not(.woocommerce-page) .about-hero-image::after,
body:not(.woocommerce):not(.woocommerce-page) .about-team-image::after,
body:not(.woocommerce):not(.woocommerce-page) .contact-img-box::after,
body:not(.woocommerce):not(.woocommerce-page) .contact-image::after,
body:not(.woocommerce):not(.woocommerce-page) .contact-visual::after,
body:not(.woocommerce):not(.woocommerce-page) .bkc-contact-image::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -10%;
  height: 36%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(247,241,232,0), rgba(247,241,232,.92) 74%, rgba(247,241,232,1));
  filter: blur(14px);
}

/* Fit images inside their own boxes without ugly cropping */
body:not(.woocommerce):not(.woocommerce-page) .products-section .product-img-frame > img,
body:not(.woocommerce):not(.woocommerce-page) .bkc-pcs-v76-image > img,
body:not(.woocommerce):not(.woocommerce-page) .philosophy-img-box > img,
body:not(.woocommerce):not(.woocommerce-page) .about-img-side > img,
body:not(.woocommerce):not(.woocommerce-page) .about-hero-image img,
body:not(.woocommerce):not(.woocommerce-page) .about-team-image img,
body:not(.woocommerce):not(.woocommerce-page) .contact-img-box > img,
body:not(.woocommerce):not(.woocommerce-page) .contact-image img,
body:not(.woocommerce):not(.woocommerce-page) .contact-visual img,
body:not(.woocommerce):not(.woocommerce-page) .bkc-contact-image img,
body.page-template-page-about:not(.woocommerce):not(.woocommerce-page) main img:not(.custom-logo):not(.avatar),
body.page-template-page-contact:not(.woocommerce):not(.woocommerce-page) main img:not(.custom-logo):not(.avatar) {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  border: 0;
  background: transparent !important;
  filter: drop-shadow(0 16px 28px rgba(45, 45, 30, .08));
  transform: none;
  position: relative;
  z-index: 1;
}

/* Keep portrait/people images visually centred and not head-cropped */
body:not(.woocommerce):not(.woocommerce-page) .philosophy-img-box > img,
body:not(.woocommerce):not(.woocommerce-page) .about-img-side > img,
body:not(.woocommerce):not(.woocommerce-page) .about-hero-image img,
body.page-template-page-about:not(.woocommerce):not(.woocommerce-page) main img:not(.custom-logo):not(.avatar) {
  object-position: center top !important;
}

/* Product/collection images on non-Woo Home sections should sit naturally */
body:not(.woocommerce):not(.woocommerce-page) .products-section .product-img-frame > img,
body:not(.woocommerce):not(.woocommerce-page) .bkc-pcs-v76-image > img {
  padding: clamp(8px, 1.4vw, 18px);
}

/* Prevent replaced images from forcing boxes taller/wider */
body:not(.woocommerce):not(.woocommerce-page) .products-section .product-img-frame,
body:not(.woocommerce):not(.woocommerce-page) .bkc-pcs-v76-image {
  min-height: 220px;
}

body:not(.woocommerce):not(.woocommerce-page) .products-section .product-img-frame > img {
  max-height: 460px;
}

body:not(.woocommerce):not(.woocommerce-page) .bkc-pcs-v76-image > img {
  max-height: 250px;
}

/* About/contact large visual boxes */
body:not(.woocommerce):not(.woocommerce-page) .philosophy-img-box,
body:not(.woocommerce):not(.woocommerce-page) .about-img-side,
body:not(.woocommerce):not(.woocommerce-page) .about-hero-image,
body:not(.woocommerce):not(.woocommerce-page) .contact-img-box,
body:not(.woocommerce):not(.woocommerce-page) .contact-image,
body:not(.woocommerce):not(.woocommerce-page) .contact-visual,
body:not(.woocommerce):not(.woocommerce-page) .bkc-contact-image {
  min-height: 320px;
}

body:not(.woocommerce):not(.woocommerce-page) .philosophy-img-box > img,
body:not(.woocommerce):not(.woocommerce-page) .about-img-side > img,
body:not(.woocommerce):not(.woocommerce-page) .about-hero-image img,
body:not(.woocommerce):not(.woocommerce-page) .contact-img-box > img,
body:not(.woocommerce):not(.woocommerce-page) .contact-image img,
body:not(.woocommerce):not(.woocommerce-page) .contact-visual img,
body:not(.woocommerce):not(.woocommerce-page) .bkc-contact-image img {
  padding: clamp(10px, 1.8vw, 22px);
}

/* Mobile: reduce box height and keep images fully visible */
@media (max-width: 767px) {
  body:not(.woocommerce):not(.woocommerce-page) .products-section .product-img-frame,
  body:not(.woocommerce):not(.woocommerce-page) .bkc-pcs-v76-image {
    min-height: 190px;
  }

  body:not(.woocommerce):not(.woocommerce-page) .products-section .product-img-frame > img {
    max-height: 330px;
  }

  body:not(.woocommerce):not(.woocommerce-page) .bkc-pcs-v76-image > img {
    max-height: 210px;
  }

  body:not(.woocommerce):not(.woocommerce-page) .philosophy-img-box,
  body:not(.woocommerce):not(.woocommerce-page) .about-img-side,
  body:not(.woocommerce):not(.woocommerce-page) .about-hero-image,
  body:not(.woocommerce):not(.woocommerce-page) .contact-img-box,
  body:not(.woocommerce):not(.woocommerce-page) .contact-image,
  body:not(.woocommerce):not(.woocommerce-page) .contact-visual,
  body:not(.woocommerce):not(.woocommerce-page) .bkc-contact-image {
    min-height: 260px;
  }
}

/* HARD EXCLUSION: keep WooCommerce product images exactly unaffected */
body.woocommerce .products-section .product-img-frame > img,
body.woocommerce-page .products-section .product-img-frame > img,
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img,
.woocommerce .products .product img,
.woocommerce-page .products .product img,
.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img,
.woocommerce-product-gallery img,
.woocommerce-product-gallery__image img,
.woocommerce-loop-product__link img,
.product .attachment-woocommerce_thumbnail {
  object-fit: initial !important;
  object-position: initial !important;
  aspect-ratio: auto !important;
  padding: 0 !important;
  background: transparent !important;
  filter: none !important;
}
