@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:ital,wght@0,500;0,700;1,500&family=Lato:wght@300;400;700&display=swap");

:root {
  --choc: #3a2218;
  --choc-dark: #1a0e08;
  --gold: #c9952e;
  --gold-light: #e8c56a;
  --gold-deep: #a67c1f;
  --berry: #7a2e3a;
  --cream: #fffaf4;
  --cream-dark: #f3ebe0;
  --muted: #7a5c4a;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(58, 34, 24, 0.16);
  --font-heading: "Playfair Display", serif;
  --font-ui: "Montserrat", sans-serif;
  --font-body: "Lato", sans-serif;
  --transition: all 0.3s ease;
  --carousel-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --carousel-slide-ms: 0.72s;
  --hero-fade-ms: 1.4s;
  --carousel-interval-ms: 4s;
}

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

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 114px !important;
  zoom: 1 !important;
}

body {
  width: 100%;
  min-width: 320px;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: var(--cream);
  color: var(--choc);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 102px !important;
  margin: 0;
}

main,
section {
  width: 100%;
  max-width: 100%;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, 1255px);
  margin: 0 auto;
}

.nav-container {
  width: min(100% - 18px, 1460px);
  margin-left: auto;
  margin-right: auto;
}

#scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 10000;
  width: 0;
  height: 3px;
  background: var(--gold);
}

/* =========================================================
   CLEAN FIXED NAVBAR ACTIONS (WHATSAPP + INSTAGRAM BOTH ICON LINKS)
   ========================================================= */
/* 1. Make the main wrapper relative so things can scroll naturally inside it */
.site-header {
    position: relative !important;
    width: 100% !important;
    display: block !important;
}

/* 2. Keep the top brown information bar flowing naturally (it will scroll up away) */
.kron-info-bar {
    position: relative !important; /* Forces it to scroll out of view */
    background:  #ffbf00 !important;
    color: #000000 !important;
    border-bottom: 1px solid rgb(193, 153, 7);
    z-index: 1000 !important;
}

/* 3. ONLY freeze the white navigation container to the top of the viewport */
#navbar {
    position: fixed !important;    /* Keeps only the navbar pinned */
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    z-index: 2147483640 !important;
    background: #ffffff !important;
    border-bottom: 1px solid rgba(58, 34, 24, 0.1);
    box-shadow: 0 8px 24px rgba(58, 34, 24, 0.05);
    overflow: visible !important;
}
.kron-info-inner {
  min-height: 30px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
  font-family: var(--font-ui) !important;
  font-size: 0.80rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
}

.kron-info-inner strong {
  color: #e8c56a !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  margin-right: 6px !important;
}

.kron-info-inner a { color: #050504 !important; }

.kron-nav {
  min-height: 102px !important;
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  align-items: center !important;
  gap: 12px !important;
  position: relative !important;
}

.nav-left-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-right-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.kron-center-logo {
    position: relative;
    top: 28px;      /* Move logo downward */
    z-index: 1000;
}

.kron-center-logo img {
    width: 170px !important;
    height: 120px !important;
    border-radius: 50%;
    object-fit: contain;
}

.navbar,
.header,
.top-bar {
    overflow: visible !important;
}.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.nav-links a {
  color: #3a2218 !important;
  font-family: var(--font-ui);
  font-size: 0.80rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 14px 14px !important;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a:active {
  color: var(--cream) !important;
  background: var(--gold) !important;
}

.nav-dropdown {
  position: relative !important;
}

.nav-dropdown::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 100% !important;
  height: 12px !important;
}

.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  min-width: 210px !important;
  padding: 6px !important;
  background: #fffaf4 !important;
  border: 1px solid rgba(201, 149, 46, 0.35) !important;
  border-radius: 14px !important;
  box-shadow: var(--shadow) !important;
  z-index: 2147483001 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(8px) scale(0.98) !important;
  transition: opacity 0.22s ease, transform 0.22s ease !important;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.dropdown-menu a {
  display: block !important;
  width: 100% !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  white-space: nowrap !important;
}

.nav-dropdown > a span {
  display: inline-block !important;
  margin-left: 3px !important;
  transition: transform 0.25s ease !important;
}

.nav-dropdown:hover > a span {
  transform: rotate(180deg) !important;
}

.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.icon-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 14px !important;
  height: 36px !important;
  border: 2px solid var(--gold) !important;
  border-radius: 999px !important;
  color: var(--gold) !important;
  font-family: var(--font-ui) !important;
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.icon-link:hover {
  background: var(--gold);
  color: var(--cream) !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.5rem 1.1rem !important;
  font-family: var(--font-ui);
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  color: var(--choc-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(201, 149, 46, 0.2);
}

.btn-whatsapp {
  color: var(--white) !important;
  background: #25d366 !important;
  border-color: #25d366 !important;
}

/* =========================================================
   STABLE HERO & INNER CATEGORY DETAIL BANNERS
   ========================================================= */
.hero,
.detail-hero {
  position: relative;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  height: clamp(480px, 58vh, 600px) !important;
  width: 100% !important;
  overflow: hidden;
}

.hero .container.hero-content,
.detail-hero .container.detail-content {
  width: min(100% - 42px, 1200px);
  position: relative;
  z-index: 5 !important;
  padding-bottom: 0 !important;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide,
.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity var(--hero-fade-ms) cubic-bezier(0.22, 1, 0.36, 1), transform var(--hero-fade-ms) cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  z-index: 2;
}

.hero .hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 253, 247, 0.75);
  border-radius: 50%;
  background: rgba(23, 11, 5, 0.45);
  color: var(--cream);
  cursor: pointer;
  transform: translateY(-50%);
  transition: var(--transition);
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }

.hero .hero-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 2px solid rgba(255, 250, 244, 0.85);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.hero-overlay,
.detail-overlay {
  position: absolute;
  inset: 0;
  z-index: 1 !important;
  background: linear-gradient(105deg, rgba(26, 14, 8, 0.92) 0%, rgba(26, 14, 8, 0.62) 42%, rgba(26, 14, 8, 0.18) 72%, rgba(26, 14, 8, 0.05) 100%) !important;
}

.hero-content,
.detail-content {
  color: var(--cream) !important;
}

.eyebrow {
    display: inline-block;
    color: #8f6a1c !important;
    font-family: var(--font-ui);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero h1,
.detail-hero h1 {
  max-width: 680px;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
  line-height: 1.15 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hero em {
  color: var(--gold-light);
  font-style: italic;
}

.hero p,
.detail-content p {
  max-width: 480px;
  margin: 0.5rem 0 1.2rem;
  color: rgba(255, 253, 247, 0.9) !important;
  font-size: 1rem !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================================================
   STORY & ABOUT LAYOUT
   ========================================================= */
.section {
  padding: 2rem 0;
}

.section-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  color: var(--choc);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.5rem);
  line-height: 1.30;
  margin-bottom: 5px;
}

.section-subtitle {
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-top{
    max-width:1250px;
    margin:0 auto 50px;
}

.about-top p{
    text-align:justify;
    line-height:1.8;
    margin-top:18px;
}

.about-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:center;
}

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

.about-image img{
    width:80%;
    max-width:330px;
    border-radius:18px;
    display:inline-block;
    max-height: 300px;
}

.about-content p{
    text-align:justify;
    line-height:1.9;
    margin-bottom:20px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 1.8rem;
}

.feature-row div {
  padding: 1rem 0.5rem;
  background: var(--cream-dark);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 14px;
  text-align: center;
}

.feature-row strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.feature-row span {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* =========================================================
   COMPACT CREATIONS SECTIONS
   ========================================================= */
.products-section,
.other-business-section,
.contact-section {
  background: var(--cream-dark);
}

.creation-grid,
.compact-creation-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.creation-card,
.compact-creation-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 225px !important;
  overflow: hidden;
  border-radius: 18px !important;
  background: var(--choc);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 149, 46, 0.2);
  transition: transform 0.28s ease;
}

.creation-card:hover,
.compact-creation-card:hover {
  transform: translateY(-6px);
}

.creation-image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}

.creation-card img,
.compact-creation-card img {
  width: 100% !important;
  height: 225px !important;
  object-fit: cover;
  opacity: 0.9;
}

.creation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 11, 5, 0.82) 0%, rgba(23, 11, 5, 0.22) 48%, rgba(23, 11, 5, 0.04) 100%) !important;
}

.creation-card-content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 1rem 1.05rem !important;
  color: #3f2c18 !important;
}

.creation-card-content h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.1vw, 1.65rem) !important;
  line-height: 1.08 !important;
  color: #3f2c18 !important;
  text-shadow: 0 3px 10px rgba(0,0,0,0.15) !important;
}

.creation-card-content span {
  color: var(--gold-light) !important;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55) !important;
}

/* =========================================================
   QUALITY, CONTACT & PRODUCTS DISPLAY
   ========================================================= */
.quality-grid,
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quality-grid article {
  min-height: 220px;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.quality-grid h3,
.type-card h2,
.site-footer h3 {
  font-family: var(--font-heading);
  color: var(--choc);
}

.quality-grid p {
  margin-top: 0.8rem;
  color: var(--muted);
}


/* =========================================================
   OTHER BUSINESSES SECTION
   ========================================================= */
.other-business-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(201, 168, 76, 0.20), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(96, 45, 18, 0.12), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #ffffff 48%, #fff3d9 100%);
  position: relative;
  overflow: hidden;
}

.other-business-section::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 34px;
  pointer-events: none;
}

.other-business-header {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.other-business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.other-business-card {
  position: relative;
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 285px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: 34px;
  box-shadow: 0 22px 55px rgba(62, 31, 15, 0.13);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.other-business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(201, 168, 76, 0.17), transparent 38%, rgba(75, 34, 8, 0.07));
  pointer-events: none;
}

.other-business-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -54px;
  bottom: -54px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.16);
}

.other-business-card:hover {
  transform: translateY(-9px);
  border-color: rgba(201, 168, 76, 0.72);
  box-shadow: 0 30px 70px rgba(62, 31, 15, 0.20);
}

.business-logo-box {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 30px;
  background: linear-gradient(145deg, #ffffff, #fff3d7);
  border: 2px solid rgba(201, 168, 76, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 16px 35px rgba(62, 31, 15, 0.13);
}

.business-logo-box img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.other-business-card:hover .business-logo-box img {
  transform: scale(1.06);
}

.business-card-content {
  position: relative;
  z-index: 1;
}

.business-label {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold-dark);
  font-family: var(--font-ui);
  font-size: 0.70rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.other-business-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  color: var(--choc);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
}

.other-business-card p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.98rem;
}

.business-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--choc);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(62, 31, 15, 0.18);
  transition: background 0.3s ease, transform 0.3s ease;
}

.business-link:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.contact-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-card p { color: var(--muted); }

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(42, 24, 16, 0.14);
  border-radius: 16px;
  background: var(--white);
  color: var(--choc);
  font: inherit;
}

.contact-status {
  min-height: 24px;
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 0.5rem;
  color: rgba(255, 253, 247, 0.86);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
}

.breadcrumb a { color: var(--gold-light); }
.product-intro { background: var(--cream); }

.type-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 24px !important;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease;
}

.type-card:hover {
  transform: translateY(-6px);
}

.type-card img {
  width: 100% !important;
  height: 190px !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  background: linear-gradient(135deg, #f7efe6 0%, #f3e4cf 100%) !important;
  border-radius: 0 !important;
}

.type-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem 1rem 1.2rem;
}

.type-card h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem) !important;
}

.type-card p {
  flex: 1;
  margin: 0.6rem 0 1rem;
  color: var(--muted);
}

.type-card .btn { width: 100%; }

.mini-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.mini-link {
  padding: 1.2rem;
  background: var(--cream);
  border: 1px solid rgba(201, 168, 76, 0.28);
  border-radius: 18px;
  color: var(--choc);
  font-family: var(--font-ui);
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
}

.mini-link:hover {
  color: var(--cream);
  background: var(--gold);
}

/* =========================================================
   FOOTER & DRAWER STRUCTURAL CSS
   ========================================================= */
.site-footer {
  padding: 4.5rem 0 0;
  background: #ffffff !important;
  color: #3a2218 !important;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr 1.1fr;
  gap: 2rem;
}

.footer-logo {
  display: flex !important;
  background: #ffffff !important;
  box-shadow: 0 px 24px rgba(0, 0, 0, 0.08) !important;
  padding: 0 !important;
  margin-bottom: 16px !important;
  border-radius: 50% !important;
  justify-content: center !important;
  width: 290px !important;
  height: 140px !important;
}

.footer-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 50% !important;
}

.site-footer a,
.site-footer p,
.site-footer h3,
.footer-bottom {
  color: #000000 !important;
}

.site-footer h3 { margin-bottom: 1rem; }
.site-footer ul { display: grid; gap: 0.45rem; }

.footer-wa {
  display: inline-block;
  margin-top: 0.7rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.2rem;
  border-top: 1px solid rgba(58, 34, 24, 0.15);
  text-align: center;
}

.floating-wa {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  width: 62px !important;
  height: 62px !important;
  z-index: 2147483641 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #25d366 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28) !important;
  transition: transform 0.25s ease;
}

.floating-wa svg {
  width: 34px !important;
  height: 34px !important;
  fill: #ffffff !important;
}

.floating-wa:hover {
  transform: translateY(-4px) scale(1.05) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--choc);
}

.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.45);
}

.mobile-backdrop.open {
  display: block !important;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  width: min(84vw, 330px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  box-shadow: -12px 0 34px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.32s ease;
}

.mobile-drawer.open { transform: translateX(0); }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; }
.drawer-logo img { width: 150px; object-fit: contain; }
.drawer-close { background: none; border: 0; color: var(--choc); font-size: 2.2rem; cursor: pointer; }
.drawer-links { display: flex; flex-direction: column; gap: 8px; padding: 18px; }
.drawer-links a { display: block; padding: 13px 14px; border-radius: 14px; background: rgba(201, 168, 76, 0.08); font-family: var(--font-ui); font-weight: 700; text-transform: uppercase; }
.drawer-footer { margin-top: auto; padding: 18px; }
.drawer-footer .btn { width: 100%; }

/* =========================================================
   RESPONSIVE MEDIA QUERIES (HAMBURGER ON RIGHT SIDE)
   ========================================================= */
@media (max-width: 980px) {
  html { scroll-padding-top: 104px !important; }
  body { padding-top: 92px !important; }

  .kron-nav {
    min-height: 92px !important;
    display: grid !important;
    /* 3-column setup: Left side empty, Logo perfectly Centered, Menu on Right */
    grid-template-columns: 80px 1fr 80px !important;
    align-items: center !important;
    gap: 0 !important;
  }

  .nav-left-col, 
  .nav-right-col { 
    display: none !important; 
  }

  /* Left column acts as a blank spacer to maintain perfect center balance */

  /* Perfectly centered in the middle column */
  .kron-center-logo { 
    grid-column: 2 !important; 
    grid-row: 1 !important;
    justify-self: center !important; 
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .kron-center-logo img { 
    width: 170px !important; 
    max-height: 72px !important; 
    margin: 0 auto !important;
  }

  /* Shunted cleanly over to the far right position */
  .hamburger { 
    display: flex !important; 
    grid-column: 3 !important; 
    grid-row: 1 !important;
    justify-self: end !important; 
    margin-right: 16px !important;
  }

  .creation-grid, .compact-creation-grid, .types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }
  .creation-card, .compact-creation-card { min-height: 205px !important; }
  .creation-card img, .compact-creation-card img { height: 205px !important; }
  .footer-grid, .contact-card, .about-grid { grid-template-columns: 1fr !important; }
  .mini-links { grid-template-columns: repeat(3, 1fr); }
  .about-image { max-height: 300px; height: 300px; width: 100%; max-width: 450px; margin: 0 auto; }
  .about-content { text-align: center; }
  .about-content .section-title, .about-content p { text-align: center; }

  .other-business-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .other-business-card {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 26px 20px;
  }
  .business-logo-box {
    margin: 0 auto;
    width: 130px;
    height: 130px;
  }
  .business-logo-box img {
    width: 104px;
    height: 104px;
  }
}

@media (max-width: 620px) {
  .kron-nav {
    grid-template-columns: 60px 1fr 60px !important;
  }
  .hamburger {
    margin-right: 8px !important;
  }
  .kron-center-logo img {
    width: 140px !important;
  }
  .kron-info-inner { justify-content: center !important; gap: 7px !important; font-size: 0.56rem !important; }
  .creation-grid, .compact-creation-grid, .types-grid, .feature-row, .mini-links { grid-template-columns: 1fr !important; }
  .creation-card, .compact-creation-card { min-height: 190px !important; }
  .business-link { width: 100%; }
  .footer-logo { display: flex !important; justify-content: center !important; margin: 0 auto 14px !important; width: 115px !important; height: 115px; border-radius: 50% !important; }
  .footer-grid { text-align: center; }
  .floating-wa { right: 16px !important; bottom: 16px !important; width: 56px !important; height: 56px !important; }
  .floating-wa svg { width: 30px !important; height: 30px !important; }
}
@media (max-width: 620px) {
  /* ... keeping your other mobile rules (kron-info-inner, grids, etc.) ... */

  .footer-logo {
    display: inline-flex !important;      /* Changes block layout into crisp flex centering */
    align-items: center !important;      /* Perfectly centers the image vertically */
    justify-content: center !important;  /* Perfectly centers the image horizontally */
    margin: 0 auto 16px !important;      /* Centers the badge block container itself in the footer */
    
    width: 120px !important;             /* Equal square dimensions enforce a strict perfect circle */
    height: 120px !important;            /* Equal square dimensions enforce a strict perfect circle */
    border-radius: 50% !important;       /* Clips the square into a clean circle */
    background: #ffffff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    padding: 12px !important;            /* Safe spacing cushion inside the circle border */
    overflow: hidden !important;
  }

  .footer-logo img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;      /* Keeps the image asset scaling safely within the padding bounds */
    border-radius: 50% !important;
    display: block !important;
  }

  /* ... keeping your other layout rules (footer-grid, floating-wa, etc.) ... */
}
@media (max-width: 768px) {
  .hero,
  .detail-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: clamp(380px, 50vh, 460px) !important;
  }
  .hero-overlay,
  .detail-overlay { background: linear-gradient(180deg, rgba(26, 14, 8, 0.4) 0%, rgba(26, 14, 8, 0.75) 50%, rgba(26, 14, 8, 0.9) 100%) !important; }
  .hero .hero-arrow { display: none; }
  .hero .container.hero-content,
  .detail-hero .container.detail-content { text-align: center !important; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .hero h1,
  .detail-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem) !important; }
  .hero p,
  .detail-content p { margin: 0.4rem auto 0.8rem; font-size: 0.9rem; }
  .hero-actions { width: 100%; justify-content: center !important; }
  .hero-actions .btn { width: 100%; max-width: 220px; }
}

/* === Bumoniis update: top info bar icons + right alignment === */
.kron-info-inner {
  justify-content: flex-end !important;
  gap: 18px !important;
  text-align: right !important;
}

.info-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 5px !important;
  white-space: nowrap !important;
}

.info-icon {
  color: var(--gold-light) !important;
  font-size: 0.82rem !important;
  line-height: 1 !important;
}

.baked-products-section {
  padding-top: 0 !important;
}

.baked-products-section .creation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 992px) {
  .kron-info-inner {
    justify-content: center !important;
    text-align: center !important;
  }

  .baked-products-section .creation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .info-item {
    white-space: normal !important;
    justify-content: center !important;
  }

  .baked-products-section .creation-grid {
    grid-template-columns: 1fr;
  }
}


/* === Final fix: top info bar location left, timing and call right === */
.kron-info-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 18px !important;
  text-align: left !important;
  width: min(100% - 32px, 1200px) !important;
  margin: 0 auto !important;
}

.location-info {
  margin-right: auto !important;
  justify-content: flex-start !important;
  text-align: left !important;
}

.time-info,
.call-info {
  margin-left: 20px !important;
  justify-content: flex-end !important;
  text-align: right !important;
}

@media (max-width: 768px) {
  .kron-info-inner {
    width: min(100% - 24px, 1200px) !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    text-align: center !important;
  }

  .location-info,
  .time-info,
  .call-info {
    margin-left: 0 !important;
    margin-right: 0 !important;
    justify-content: center !important;
    text-align: center !important;
  }
}

/* =========================================================
   FLOATING WHATSAPP LOGO BUTTON
   ========================================================= */
.floating-whatsapp {
  position: fixed !important;
  right: 20px !important;
  bottom: 20px !important;
  width: 64px !important;
  height: 64px !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2147483647 !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28) !important;
  border: 3px solid #ffffff !important;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.floating-whatsapp:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34) !important;
}

.floating-whatsapp svg {
  width: 38px !important;
  height: 38px !important;
  fill: #ffffff !important;
  display: block !important;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    right: 15px !important;
    bottom: 15px !important;
    width: 56px !important;
    height: 56px !important;
  }

  .floating-whatsapp svg {
    width: 34px !important;
    height: 34px !important;
  }
}


/* =========================================================
   FINAL MOBILE HEADER + DRAWER + CENTER LAST COLLECTION FIX
   ========================================================= */

/* Center the last Desserts card in Bumonii's Collections on desktop */
@media (min-width: 981px) {
  #products .compact-creation-grid > .compact-creation-card:last-child,
  #products .creation-grid > .creation-card:last-child {
    grid-column: 2 / 3 !important;
    justify-self: stretch !important;
  }
}

/* Mobile top information bar: small, neat and aligned */
@media (max-width: 768px) {
  body {
    padding-top: 92px !important;
  }

  .kron-info-bar {
    min-height: 24px !important;
    padding: 2px 0 !important;
  }

  .kron-info-inner {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 22px !important;
    padding: 0 6px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    flex-wrap: wrap !important;
    text-align: center !important;
    font-size: 0.50rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0.01em !important;
  }

  .kron-info-inner .info-item,
  .location-info,
  .time-info,
  .call-info {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 2px !important;
    white-space: nowrap !important;
    text-align: center !important;
    max-width: 100% !important;
  }

  .kron-info-inner .info-icon {
    font-size: 0.58rem !important;
    line-height: 1 !important;
  }

  .kron-nav {
    min-height: 68px !important;
    grid-template-columns: 52px 1fr 52px !important;
  }

  .kron-center-logo {
    top: 0 !important;
  }

  .kron-center-logo img {
    width: 118px !important;
    height: 62px !important;
    max-height: 62px !important;
  }

  .hamburger {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
    z-index: 2147483647 !important;
    margin: 0 !important;
    padding: 8px !important;
  }

  .hamburger span {
    width: 24px !important;
    height: 2px !important;
  }
}

@media (max-width: 420px) {
  .kron-info-inner {
    font-size: 0.46rem !important;
    gap: 4px !important;
  }

  .location-info {
    max-width: 48% !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* Mobile drawer dropdown style */
.drawer-dropdown {
  display: block !important;
}

.drawer-dropdown-toggle {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 13px 14px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: rgba(201, 168, 76, 0.08) !important;
  color: var(--choc) !important;
  font-family: var(--font-ui) !important;
  font-size: 0.80rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
}

.drawer-dropdown-toggle span {
  transition: transform 0.25s ease !important;
}

.drawer-dropdown.open .drawer-dropdown-toggle span {
  transform: rotate(180deg) !important;
}

.drawer-submenu {
  display: none !important;
  padding: 8px 0 4px 12px !important;
}

.drawer-dropdown.open .drawer-submenu {
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.drawer-submenu a {
  padding: 10px 12px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.72rem !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
}


/* =========================================================
   UPDATED FOOTER ALIGNMENT
   ========================================================= */
.site-footer {
  text-align: left !important;
}

.footer-grid-updated {
  display: grid !important;
  grid-template-columns: 1.35fr 1fr 0.85fr 1fr !important;
  gap: 36px !important;
  align-items: flex-start !important;
}

.footer-brand-block,
.footer-link-block,
.footer-contact-block {
  text-align: left !important;
}

.footer-brand-block {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
}

.footer-logo-left {
  display: inline-flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  margin: 0 0 8px 0 !important;
  margin-left: 26px !important;
}

.footer-logo-left img {
  margin: 0 !important;
}

.footer-brand-title,
.footer-link-block h3,
.footer-contact-block h3 {
  text-align: left !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.footer-link-block ul,
.footer-contact-block p,
.footer-brand-block p {
  text-align: justify !important;
  margin-left: 0px !important;
  padding-left: 0 !important;
}

.footer-link-block li {
  margin-bottom: 8px !important;
}

.footer-contact-block .footer-phone,
.footer-contact-block .footer-wa {
  display: block !important;
  width: fit-content !important;
  margin-top: 8px !important;
  text-align: left !important;
}

@media (max-width: 900px) {
  .footer-grid-updated {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
}

@media (max-width: 600px) {
  .footer-grid-updated {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }

  .footer-brand-block,
  .footer-link-block,
  .footer-contact-block,
  .footer-brand-title,
  .footer-link-block h3,
  .footer-contact-block h3,
  .footer-link-block ul,
  .footer-contact-block p,
  .footer-brand-block p {
    text-align: left !important;
  }
}


/* =========================================================
   MOBILE DRAWER ALIGNMENT FIX
   Keeps long menu names like Chocolates & Confections neat
   ========================================================= */
.drawer-dropdown,
.drawer-links > a {
  width: 100% !important;
}

.drawer-dropdown-toggle,
.drawer-links > a,
.drawer-submenu a {
  text-align: left !important;
  line-height: 1.35 !important;
}

.drawer-dropdown-toggle {
  min-height: 48px !important;
  white-space: normal !important;
}

.drawer-dropdown-toggle span {
  flex: 0 0 auto !important;
  margin-left: 8px !important;
}

.drawer-submenu {
  width: 100% !important;
  margin: 6px 0 2px 0 !important;
  padding: 6px 0 4px 10px !important;
  border-left: 2px solid rgba(201, 149, 46, 0.35) !important;
}

.drawer-submenu a {
  width: 100% !important;
  display: block !important;
  padding: 10px 12px !important;
  word-break: normal !important;
}

@media (max-width: 420px) {
  .mobile-drawer {
    width: min(90vw, 340px) !important;
  }

  .drawer-links {
    padding: 14px !important;
    gap: 7px !important;
  }

  .drawer-dropdown-toggle,
  .drawer-links > a {
    font-size: 0.74rem !important;
    letter-spacing: 0.03em !important;
    padding: 12px 12px !important;
  }

  .drawer-submenu a {
    font-size: 0.70rem !important;
  }
}

/* =========================================================
   FINAL FIX: MOBILE THREE-LINE MENU FOR GITHUB PAGES
   Ensures the drawer/backdrop always opens above the fixed header.
   ========================================================= */
@media (max-width: 980px) {
  #navbar {
    z-index: 9000 !important;
  }

  .hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    border: 0 !important;
    background: rgba(255, 250, 244, 0.94) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(58, 34, 24, 0.12) !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
  }

  .hamburger span {
    display: block !important;
    background: var(--choc) !important;
    border-radius: 999px !important;
  }

  .mobile-backdrop {
    display: block !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    z-index: 2147483644 !important;
    transition: opacity 0.25s ease, visibility 0.25s ease !important;
  }

  .mobile-backdrop.open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .mobile-drawer {
    z-index: 2147483645 !important;
    background: #fffaf4 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: translateX(105%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-drawer.open {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  body.menu-open {
    overflow: hidden !important;
    touch-action: none !important;
  }
}

/* =========================================================
   FINAL FIX: Mobile drawer logo background + exact WhatsApp icon
   ========================================================= */
@media (max-width: 980px) {
  .mobile-drawer,
  .drawer-header {
    background: #ffffff !important;
  }

  .drawer-header {
    border-bottom: 1px solid rgba(58, 34, 24, 0.10) !important;
    box-shadow: 0 8px 22px rgba(58, 34, 24, 0.06) !important;
  }

  .drawer-logo,
  .drawer-logo img,
  .kron-center-logo,
  .kron-center-logo img {
    background: transparent !important;
    box-shadow: none !important;
  }

  .drawer-logo img {
    width: 154px !important;
    height: auto !important;
    border-radius: 0 !important;
    object-fit: contain !important;
  }
}

.floating-whatsapp {
  background: #25D366 !important;
  border: 3px solid #ffffff !important;
  overflow: hidden !important;
}

.floating-whatsapp svg {
  width: 34px !important;
  height: 34px !important;
  fill: #ffffff !important;
  display: block !important;
}

@media (max-width: 768px) {
  .floating-whatsapp svg {
    width: 31px !important;
    height: 31px !important;
  }
}

/* === Updated Other Businesses: clean logo boxes + premium animation === */
.other-business-section {
  background:
    linear-gradient(135deg, rgba(255, 249, 235, 0.95), rgba(255, 255, 255, 1) 42%, rgba(255, 246, 224, 0.95)) !important;
  position: relative !important;
  overflow: hidden !important;
}

.other-business-section::before {
  inset: 28px !important;
  border-radius: 36px !important;
  border: 1px solid rgba(201, 168, 76, 0.18) !important;
  background: linear-gradient(120deg, rgba(255,255,255,0.22), rgba(201,168,76,0.06), rgba(255,255,255,0.18)) !important;
}

.other-business-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10), transparent 68%);
  pointer-events: none;
  animation: businessGlow 6s ease-in-out infinite;
}

.other-business-grid {
  gap: 28px !important;
}

.other-business-card {
  grid-template-columns: 135px 1fr !important;
  min-height: 255px !important;
  padding: 30px !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(201, 168, 76, 0.30) !important;
  box-shadow: 0 18px 45px rgba(62, 31, 15, 0.10) !important;
  transform: translateY(0);
  animation: businessFloatIn 0.85s ease both;
}

.other-business-card:nth-child(2) {
  animation-delay: 0.12s;
}

.other-business-card::before {
  background: linear-gradient(115deg, rgba(255,255,255,0.35), rgba(201,168,76,0.08), rgba(255,255,255,0.18)) !important;
}

.other-business-card::after {
  display: none !important;
}

.other-business-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  border-color: rgba(201, 168, 76, 0.62) !important;
  box-shadow: 0 28px 65px rgba(62, 31, 15, 0.18) !important;
}

.business-logo-box,
.clean-logo-box {
  width: 125px !important;
  height: 125px !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(201, 168, 76, 0.32) !important;
  box-shadow: 0 12px 28px rgba(62, 31, 15, 0.08) !important;
  padding: 14px !important;
  overflow: visible !important;
}

.business-logo-box::after,
.clean-logo-box::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(201,168,76,0.16) 45%, transparent 75%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.other-business-card:hover .business-logo-box::after,
.other-business-card:hover .clean-logo-box::after {
  opacity: 1;
}

.business-logo-box img,
.clean-logo-box img {
  width: 100% !important;
  height: 100% !important;
  max-width: 105px !important;
  max-height: 105px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 7px 13px rgba(62, 31, 15, 0.10));
}

.other-business-card:hover .business-logo-box img,
.other-business-card:hover .clean-logo-box img {
  transform: scale(1.08) rotate(-1deg) !important;
}

.business-label {
  background: rgba(201, 168, 76, 0.12) !important;
  border: 1px solid rgba(201, 168, 76, 0.22) !important;
}

.business-link {
  background: linear-gradient(135deg, var(--choc), #7a451b) !important;
  box-shadow: 0 12px 25px rgba(62, 31, 15, 0.16) !important;
}

.business-link:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  transform: translateY(-3px) !important;
}

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

@keyframes businessGlow {
  0%, 100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.96);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

@media (max-width: 900px) {
  .other-business-card {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    padding: 26px 20px !important;
  }

  .business-logo-box,
  .clean-logo-box {
    margin: 0 auto !important;
    width: 118px !important;
    height: 118px !important;
  }
}

@media (max-width: 620px) {
  .other-business-section::before {
    inset: 12px !important;
    border-radius: 24px !important;
  }

  .other-business-grid {
    gap: 18px !important;
  }

  .business-logo-box,
  .clean-logo-box {
    width: 108px !important;
    height: 108px !important;
  }
}


/* === FINAL FIX: other business placement, buttons, logos, WhatsApp enquiry pill === */
.other-business-section {
  padding: 82px 18px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(98, 47, 14, 0.10), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #fff7e8 46%, #ffffff 100%) !important;
}

.other-business-section::before {
  content: "" !important;
  position: absolute !important;
  inset: 22px !important;
  border-radius: 34px !important;
  background: linear-gradient(120deg, rgba(255,255,255,0.35), rgba(212,175,55,0.06), rgba(255,255,255,0.35)) !important;
  border: 1px solid rgba(212, 175, 55, 0.18) !important;
  pointer-events: none !important;
  animation: softBusinessGlow 6s ease-in-out infinite alternate !important;
}

.other-business-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 28px !important;
  position: relative !important;
  z-index: 2 !important;
}

.other-business-card {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 155px 1fr !important;
  align-items: center !important;
  gap: 24px !important;
  text-align: left !important;
  min-height: 250px !important;
  padding: 32px !important;
  border-radius: 30px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(212, 175, 55, 0.30) !important;
  box-shadow: 0 18px 48px rgba(78, 40, 11, 0.13) !important;
  overflow: hidden !important;
  transform: translateY(0) !important;
  animation: cardFloatIn 0.9s ease both !important;
}

.other-business-card:nth-child(2) { animation-delay: .15s !important; }

.other-business-card::after {
  content: "" !important;
  position: absolute !important;
  width: 150px !important;
  height: 150px !important;
  right: -55px !important;
  top: -55px !important;
  border-radius: 50% !important;
  background: rgba(212, 175, 55, 0.13) !important;
  transition: transform .4s ease, opacity .4s ease !important;
}

.other-business-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 28px 65px rgba(78, 40, 11, 0.20) !important;
  border-color: rgba(184, 134, 11, 0.55) !important;
}

.other-business-card:hover::after {
  transform: scale(1.35) !important;
  opacity: .9 !important;
}

.clean-logo-box,
.business-logo-box {
  width: 140px !important;
  height: 140px !important;
  min-width: 140px !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  border: 1px solid rgba(212, 175, 55, 0.38) !important;
  box-shadow: inset 0 0 0 8px rgba(255, 247, 230, 0.75), 0 15px 35px rgba(91, 45, 12, 0.10) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.business-logo-box img {
  width: 112px !important;
  height: 112px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  transition: transform .35s ease !important;
}

.other-business-card:hover .business-logo-box img {
  transform: scale(1.08) rotate(-2deg) !important;
}

.business-card-content h3 {
  font-size: 28px !important;
  margin: 8px 0 12px !important;
  color: #4b2208 !important;
}

.business-card-content p {
  color: #6b4a2b !important;
  line-height: 1.72 !important;
}

.business-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 168px !important;
  margin-top: 6px !important;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #5b2b0d, #b8860b) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 800 !important;
  letter-spacing: .2px !important;
  box-shadow: 0 12px 24px rgba(91, 43, 13, .18) !important;
}

.business-link:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 16px 30px rgba(91, 43, 13, .25) !important;
}

.floating-whatsapp {
  width: auto !important;
  height: 56px !important;
  min-width: 156px !important;
  border-radius: 999px !important;
  padding: 0 18px 0 14px !important;
  gap: 9px !important;
  background: linear-gradient(135deg, #20bd5a, #128c4a) !important;
  box-shadow: 0 14px 34px rgba(18, 140, 74, 0.33) !important;
}

.floating-whatsapp svg {
  width: 29px !important;
  height: 29px !important;
  flex: 0 0 auto !important;
}

.floating-whatsapp span {
  display: inline-block !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

.btn-whatsapp {
  letter-spacing: .2px !important;
}

@keyframes cardFloatIn {
  from { opacity: 0; transform: translateY(28px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes softBusinessGlow {
  from { opacity: .58; transform: scale(.99); }
  to { opacity: 1; transform: scale(1.01); }
}

@media (max-width: 900px) {
  .other-business-grid {
    grid-template-columns: 1fr !important;
  }
  .other-business-card {
    grid-template-columns: 125px 1fr !important;
    padding: 26px !important;
  }
  .clean-logo-box,
  .business-logo-box {
    width: 116px !important;
    height: 116px !important;
    min-width: 116px !important;
  }
  .business-logo-box img {
    width: 92px !important;
    height: 92px !important;
  }
}

@media (max-width: 560px) {
  .other-business-section {
    padding: 58px 14px !important;
  }
  .other-business-section::before {
    inset: 10px !important;
    border-radius: 24px !important;
  }
  .other-business-card {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    justify-items: center !important;
    padding: 24px 18px !important;
  }
  .floating-whatsapp {
    right: 12px !important;
    bottom: 12px !important;
    min-width: 142px !important;
    height: 52px !important;
    padding: 0 14px 0 12px !important;
  }
  .floating-whatsapp svg {
    width: 26px !important;
    height: 26px !important;
  }
  .floating-whatsapp span {
    font-size: 14px !important;
  }
}


/* Final clean social icon + product button + other business logo fixes */
.nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.nav-social-icon {
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  background: #ffffff !important;
  box-shadow: 0 8px 18px rgba(67, 34, 13, 0.12) !important;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease !important;
}

.nav-social-icon svg {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  fill: currentColor !important;
}

.nav-social-icon.instagram-icon {
  color: #d62976 !important;
}

.nav-social-icon.whatsapp-icon {
  color: #25D366 !important;
}

.nav-social-icon:hover {
  transform: translateY(-3px) scale(1.05) !important;
  background: #ffffff !important;
  box-shadow: 0 12px 24px rgba(67, 34, 13, 0.18) !important;
}

/* Hide any old product WhatsApp/Know More buttons that may remain */
.type-card .btn-whatsapp,
.product-card .btn-whatsapp,
.category-card .btn-whatsapp,
.feature-card .btn-whatsapp,
.product-detail .btn-whatsapp,
.hero-actions .btn-whatsapp,
.page-hero .btn-whatsapp {
  display: none !important;
}

/* Keep business logo cards clean white. No dark hover, no inner border. */
.other-business-card,
.other-business-card:hover,
.other-business-card:focus-within {
  background: #ffffff !important;
  color: inherit !important;
  border-color: rgba(212, 175, 55, 0.22) !important;
}

.other-business-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 55px rgba(78, 40, 11, 0.15) !important;
}

.business-logo-box,
.clean-logo-box,
.business-logo-box:hover,
.clean-logo-box:hover,
.other-business-card:hover .business-logo-box,
.other-business-card:hover .clean-logo-box {
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: 0 12px 30px rgba(91, 45, 12, 0.09) !important;
}

.business-logo-box::before,
.clean-logo-box::before,
.business-logo-box::after,
.clean-logo-box::after {
  display: none !important;
  content: none !important;
}

.business-logo-box img,
.clean-logo-box img,
.business-logo-box img:hover,
.clean-logo-box img:hover,
.other-business-card:hover .business-logo-box img,
.other-business-card:hover .clean-logo-box img {
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  filter: none !important;
}

.business-link,
.business-link:hover,
.business-link:focus {
  background: #ffffff !important;
  color: #4b2208 !important;
  border: 1px solid rgba(212, 175, 55, 0.38) !important;
  box-shadow: 0 10px 22px rgba(78, 40, 11, 0.10) !important;
}

@media (max-width: 768px) {
  .nav-social-icon {
    width: 38px !important;
    height: 38px !important;
  }
  .nav-social-icon svg {
    width: 19px !important;
    height: 19px !important;
  }
}

/* === FINAL UPDATE: bigger readable paragraph text + larger Sarvathaa logo === */
body p,
.section-subtitle,
.about-content p,
.type-card p,
.product-card p,
.category-card p,
.quality-grid p,
.contact-card p,
.footer-brand-block p,
.business-card-content p,
.other-business-card p {
  font-size: 1.08rem !important;
  line-height: 1.8 !important;
}

.hero p,
.detail-content p {
  font-size: 1.15rem !important;
  line-height: 1.75 !important;
}

.business-card-content p,
.other-business-card p {
  font-size: 1.10rem !important;
  font-weight: 500 !important;
  color: #5f3f22 !important;
}

.sarvathaa-card .business-logo-box,
.sarvathaa-card .clean-logo-box {
  width: 190px !important;
  height: 190px !important;
  min-width: 190px !important;
}

.sarvathaa-card .business-logo-box img,
.sarvathaa-card .clean-logo-box img {
  width: 172px !important;
  height: 172px !important;
  object-fit: contain !important;
}

@media (max-width: 768px) {
  body p,
  .section-subtitle,
  .about-content p,
  .type-card p,
  .product-card p,
  .category-card p,
  .quality-grid p,
  .contact-card p,
  .footer-brand-block p,
  .business-card-content p,
  .other-business-card p {
    font-size: 1rem !important;
    line-height: 1.75 !important;
  }

  .hero p,
  .detail-content p {
    font-size: 1.05rem !important;
  }

  .sarvathaa-card .business-logo-box,
  .sarvathaa-card .clean-logo-box {
    width: 165px !important;
    height: 165px !important;
    min-width: 165px !important;
  }

  .sarvathaa-card .business-logo-box img,
  .sarvathaa-card .clean-logo-box img {
    width: 150px !important;
    height: 150px !important;
  }
}

/* === FINAL FIX: Sarvathaa logo aligned like Osun's card === */
.sarvathaa-card {
  grid-template-columns: 205px minmax(0, 1fr) !important;
  align-items: center !important;
}

.sarvathaa-card .business-logo-box,
.sarvathaa-card .clean-logo-box {
  justify-self: center !important;
  align-self: center !important;
  margin: 0 auto !important;
  width: 190px !important;
  height: 190px !important;
  min-width: 190px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.sarvathaa-card .business-logo-box img,
.sarvathaa-card .clean-logo-box img {
  width: 176px !important;
  max-width: 176px !important;
  height: auto !important;
  max-height: 154px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 auto !important;
}

@media (max-width: 900px) {
  .sarvathaa-card {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .sarvathaa-card .business-logo-box,
  .sarvathaa-card .clean-logo-box {
    width: 172px !important;
    height: 172px !important;
    min-width: 172px !important;
    margin: 0 auto 8px auto !important;
  }

  .sarvathaa-card .business-logo-box img,
  .sarvathaa-card .clean-logo-box img {
    width: 158px !important;
    max-width: 158px !important;
    max-height: 138px !important;
  }
}

@media (max-width: 520px) {
  .sarvathaa-card .business-logo-box,
  .sarvathaa-card .clean-logo-box {
    width: 158px !important;
    height: 158px !important;
    min-width: 158px !important;
  }

  .sarvathaa-card .business-logo-box img,
  .sarvathaa-card .clean-logo-box img {
    width: 146px !important;
    max-width: 146px !important;
    max-height: 128px !important;
  }
}

/* === FINAL REQUEST: same Osun's/Sarvathaa box size + bigger paragraph text === */
.other-business-card.osuns-card,
.other-business-card.sarvathaa-card {
  min-height: 270px !important;
}

.other-business-card.osuns-card .business-logo-box,
.other-business-card.osuns-card .clean-logo-box,
.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box {
  width: 150px !important;
  height: 150px !important;
  min-width: 150px !important;
  max-width: 150px !important;
  max-height: 150px !important;
  padding: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.other-business-card.osuns-card .business-logo-box img,
.other-business-card.osuns-card .clean-logo-box img,
.other-business-card.sarvathaa-card .business-logo-box img,
.other-business-card.sarvathaa-card .clean-logo-box img {
  width: 122px !important;
  height: 122px !important;
  max-width: 122px !important;
  max-height: 122px !important;
  object-fit: contain !important;
}

.section-subtitle,
.about-content p,
.type-card p,
.business-card-content p,
.footer-brand-block p,
.contact-card p,
.quality-grid p,
main p {
  font-size: clamp(1.06rem, 1.35vw, 1.18rem) !important;
  line-height: 1.82 !important;
  font-weight: 500 !important;
}

.hero p,
.detail-content p {
  font-size: clamp(1.10rem, 1.5vw, 1.25rem) !important;
  line-height: 1.75 !important;
  font-weight: 600 !important;
}

.business-card-content p {
  color: #5b3a1f !important;
}

@media (max-width: 900px) {
  .other-business-card.osuns-card .business-logo-box,
  .other-business-card.osuns-card .clean-logo-box,
  .other-business-card.sarvathaa-card .business-logo-box,
  .other-business-card.sarvathaa-card .clean-logo-box {
    width: 130px !important;
    height: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
  }

  .other-business-card.osuns-card .business-logo-box img,
  .other-business-card.osuns-card .clean-logo-box img,
  .other-business-card.sarvathaa-card .business-logo-box img,
  .other-business-card.sarvathaa-card .clean-logo-box img {
    width: 106px !important;
    height: 106px !important;
    max-width: 106px !important;
    max-height: 106px !important;
  }
}

@media (max-width: 560px) {
  .section-subtitle,
  .about-content p,
  .type-card p,
  .business-card-content p,
  .footer-brand-block p,
  .contact-card p,
  .quality-grid p,
  main p {
    font-size: 1.02rem !important;
    line-height: 1.72 !important;
  }
}

/* === FINAL TUNE: make Sarvathaa logo visually bigger while keeping same box size as Osun's === */
.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box {
  width: 160px !important;
  height: 160px !important;
  min-width: 160px !important;
  max-width: 160px !important;
  max-height: 160px !important;
  padding: 4px !important;
}

.other-business-card.sarvathaa-card .business-logo-box img,
.other-business-card.sarvathaa-card .clean-logo-box img {
  width: 154px !important;
  height: auto !important;
  max-width: 154px !important;
  max-height: 154px !important;
  object-fit: contain !important;
  transform: scale(1.08) !important;
}

/* Keep paragraph text big and clear */
p,
main p,
.section-subtitle,
.about-content p,
.type-card p,
.product-card p,
.category-card p,
.business-card-content p,
.other-business-card p,
.footer-brand-block p,
.contact-card p,
.quality-grid p {
  font-size: clamp(1.08rem, 1.45vw, 1.22rem) !important;
  line-height: 1.85 !important;
  font-weight: 500 !important;
}

@media (max-width: 900px) {
  .other-business-card.sarvathaa-card .business-logo-box,
  .other-business-card.sarvathaa-card .clean-logo-box {
    width: 130px !important;
    height: 130px !important;
    min-width: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
    padding: 3px !important;
  }

  .other-business-card.sarvathaa-card .business-logo-box img,
  .other-business-card.sarvathaa-card .clean-logo-box img {
    width: 128px !important;
    max-width: 128px !important;
    max-height: 118px !important;
    transform: scale(1.08) !important;
  }
}

@media (max-width: 560px) {
  p,
  main p,
  .section-subtitle,
  .about-content p,
  .type-card p,
  .product-card p,
  .category-card p,
  .business-card-content p,
  .other-business-card p,
  .footer-brand-block p,
  .contact-card p,
  .quality-grid p {
    font-size: 1.04rem !important;
    line-height: 1.75 !important;
  }
}

/* === FINAL FIX: Sarvathaa logo visually bigger like Osun's + readable paragraphs === */
.sarvathaa-card .business-logo-box,
.sarvathaa-card .clean-logo-box {
  width: 230px !important;
  height: 190px !important;
  min-width: 230px !important;
  padding: 10px !important;
}

.sarvathaa-card .business-logo-box img,
.sarvathaa-card .clean-logo-box img {
  width: 215px !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
}

.center{
  font-size: 1.1rem!important;
  line-height: 1.10!important;
  text-align: center !important;
}
body p,
.section-subtitle,
.about-content p,
.type-card p,
.product-card p,
.category-card p,
.quality-grid p,
.contact-card p,
.footer-brand-block p,
.business-card-content p,
.other-business-card p {
  font-size: 1.15rem !important;
  line-height: 1.5 !important;
  margin-bottom: 1.2rem !important;
}

.business-card-content p,
.other-business-card p {
  font-size: 1.17rem !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .sarvathaa-card .business-logo-box,
  .sarvathaa-card .clean-logo-box {
    width: 190px !important;
    height: 160px !important;
    min-width: 190px !important;
  }

  .sarvathaa-card .business-logo-box img,
  .sarvathaa-card .clean-logo-box img {
    width: 178px !important;
    height: auto !important;
    max-width: none !important;
  }

  body p,
  .section-subtitle,
  .about-content p,
  .type-card p,
  .product-card p,
  .category-card p,
  .quality-grid p,
  .contact-card p,
  .footer-brand-block p,
  .business-card-content p,
  .other-business-card p {
    font-size: 1.07rem !important;
    line-height: 1.78 !important;
  }
}
.section-product-intro .section-subtitle {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important; /* Use center if you want centered text */
}
.section-product-intro .section-header {
    width: 100% !important;
    max-width: 100% !important;
}

.section-product-intro .container {
    max-width: 1400px !important;
}

/* === FINAL USER FIX: remove product page breadcrumb + no color change on other-business touch === */
.breadcrumb,
.page-hero .breadcrumb,
.product-hero .breadcrumb,
nav.breadcrumb,
nav[aria-label="Breadcrumb"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.other-business-card,
.other-business-card:hover,
.other-business-card:focus,
.other-business-card:active,
.other-business-card:focus-within,
.other-business-card.osuns-card,
.other-business-card.osuns-card:hover,
.other-business-card.osuns-card:focus,
.other-business-card.osuns-card:active,
.other-business-card.sarvathaa-card,
.other-business-card.sarvathaa-card:hover,
.other-business-card.sarvathaa-card:focus,
.other-business-card.sarvathaa-card:active {
  background: #ffffff !important;
  color: inherit !important;
  border-color: rgba(212, 175, 55, 0.22) !important;
  transform: none !important;
  box-shadow: 0 18px 48px rgba(78, 40, 11, 0.13) !important;
}

.other-business-card::after,
.other-business-card:hover::after,
.other-business-card:active::after,
.other-business-card:focus::after {
  transform: none !important;
  opacity: 1 !important;
  background: rgba(212, 175, 55, 0.13) !important;
}

.business-logo-box,
.clean-logo-box,
.business-logo-box:hover,
.clean-logo-box:hover,
.business-logo-box:active,
.clean-logo-box:active,
.other-business-card:hover .business-logo-box,
.other-business-card:hover .clean-logo-box,
.other-business-card:active .business-logo-box,
.other-business-card:active .clean-logo-box {
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: 0 12px 30px rgba(91, 45, 12, 0.09) !important;
}

.business-logo-box img,
.clean-logo-box img,
.business-logo-box img:hover,
.clean-logo-box img:hover,
.business-logo-box img:active,
.clean-logo-box img:active,
.other-business-card:hover .business-logo-box img,
.other-business-card:hover .clean-logo-box img,
.other-business-card:active .business-logo-box img,
.other-business-card:active .clean-logo-box img {
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.business-link,
.business-link:hover,
.business-link:focus,
.business-link:active,
.business-link:visited {
  background: #ffffff !important;
  color: #4b2208 !important;
  border: 1px solid rgba(212, 175, 55, 0.38) !important;
  box-shadow: 0 10px 22px rgba(78, 40, 11, 0.10) !important;
  transform: none !important;
  text-decoration: none !important;
}

/* === FINAL FIX: only website button is clickable, no color change on touch === */
.other-business-card,
.other-business-card *,
.business-link,
.business-link:link,
.business-link:visited,
.business-link:hover,
.business-link:focus,
.business-link:active {
  -webkit-tap-highlight-color: transparent !important;
}

.other-business-card,
.other-business-card:hover,
.other-business-card:focus,
.other-business-card:active,
.other-business-card:focus-within,
.other-business-card.osuns-card,
.other-business-card.osuns-card:hover,
.other-business-card.osuns-card:focus,
.other-business-card.osuns-card:active,
.other-business-card.sarvathaa-card,
.other-business-card.sarvathaa-card:hover,
.other-business-card.sarvathaa-card:focus,
.other-business-card.sarvathaa-card:active,
.other-business-card.sarvathaa-card:focus-within {
  background: #ffffff !important;
  color: inherit !important;
  border-color: rgba(212, 175, 55, 0.22) !important;
  transform: none !important;
  box-shadow: 0 18px 48px rgba(78, 40, 11, 0.13) !important;
  cursor: default !important;
}

.other-business-card .business-logo-box,
.other-business-card .clean-logo-box,
.other-business-card .business-card-content h3,
.other-business-card .business-card-content p,
.other-business-card .business-label {
  pointer-events: none !important;
}

.business-link,
.business-link:link,
.business-link:visited,
.business-link:hover,
.business-link:focus,
.business-link:active {
  pointer-events: auto !important;
  cursor: pointer !important;
  background: #ffffff !important;
  color: #4b2208 !important;
  border: 1px solid rgba(212, 175, 55, 0.38) !important;
  box-shadow: 0 10px 22px rgba(78, 40, 11, 0.10) !important;
  transform: none !important;
  text-decoration: none !important;
  outline: none !important;
  transition: none !important;
}

.business-link:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.65) !important;
  outline-offset: 3px !important;
}

/* === FINAL CORRECTION: website buttons change color when touched/clicked === */
.business-link,
.business-link:link,
.business-link:visited {
  pointer-events: auto !important;
  cursor: pointer !important;
  background: #ffffff !important;
  color: #4b2208 !important;
  border: 1px solid rgba(212, 175, 55, 0.50) !important;
  box-shadow: 0 10px 22px rgba(78, 40, 11, 0.10) !important;
  transform: none !important;
  text-decoration: none !important;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
  -webkit-tap-highlight-color: rgba(75, 34, 8, 0.18) !important;
}

.business-link:hover,
.business-link:focus,
.business-link:active,
.business-link:focus-visible {
  background: #4b2208 !important;
  color: #ffffff !important;
  border-color: #4b2208 !important;
  box-shadow: 0 14px 28px rgba(75, 34, 8, 0.24) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

/* Keep card/logo area normal; only the website button changes color */
.other-business-card,
.other-business-card:hover,
.other-business-card:focus,
.other-business-card:active,
.other-business-card:focus-within {
  background: #ffffff !important;
  color: inherit !important;
  border-color: rgba(212, 175, 55, 0.22) !important;
}

/* === FINAL FIX: Our Other Business top-corner logo placement + footer font consistency === */
.other-business-card {
  align-items: flex-start !important;
  grid-template-columns: 210px minmax(0, 1fr) !important;
  gap: 24px !important;
  padding: 28px 30px !important;
  min-height: 230px !important;
}

.other-business-card .business-logo-box,
.other-business-card .clean-logo-box {
  align-self: flex-start !important;
  justify-self: flex-start !important;
  margin: 0 !important;
}

.other-business-card .business-card-content {
  align-self: flex-start !important;
  padding-top: 2px !important;
}

.other-business-card.osuns-card .business-logo-box,
.other-business-card.osuns-card .clean-logo-box {
  width: 165px !important;
  height: 165px !important;
  min-width: 165px !important;
  max-width: 165px !important;
  max-height: 165px !important;
}

.other-business-card.osuns-card .business-logo-box img,
.other-business-card.osuns-card .clean-logo-box img {
  width: 135px !important;
  height: 135px !important;
  max-width: 135px !important;
  max-height: 135px !important;
}

.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box {
  width: 205px !important;
  height: 165px !important;
  min-width: 205px !important;
  max-width: 205px !important;
  max-height: 165px !important;
  padding: 8px !important;
}

.other-business-card.sarvathaa-card .business-logo-box img,
.other-business-card.sarvathaa-card .clean-logo-box img {
  width: 192px !important;
  height: auto !important;
  max-width: 192px !important;
  max-height: 148px !important;
  object-fit: contain !important;
}

.footer-brand-title,
.footer-link-block h3,
.footer-contact-block h3 {
  font-family: var(--font-ui) !important;
  font-size: 1.05rem !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  color: #fff7e8 !important;
}

.footer-brand-block p,
.footer-link-block li,
.footer-link-block a,
.footer-contact-block p,
.footer-contact-block a,
.footer-phone,
.footer-wa {
  font-family: var(--font-ui) !important;
  font-size: 0.95rem !important;
  line-height: 1.65 !important;
  font-weight: 600 !important;
  letter-spacing: 0.0em !important;
  text-align: justify;
}

.footer-contact-block .footer-phone,
.footer-contact-block .footer-wa {
  display: inline-block !important;
  width: auto !important;
}

@media (max-width: 900px) {
  .other-business-card {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 26px !important;
    align-items: flex-start !important;
  }

  .other-business-card .business-logo-box,
  .other-business-card .clean-logo-box {
    justify-self: flex-start !important;
  }

  .other-business-card.osuns-card .business-logo-box,
  .other-business-card.osuns-card .clean-logo-box {
    width: 145px !important;
    height: 145px !important;
    min-width: 145px !important;
    max-width: 145px !important;
    max-height: 145px !important;
  }

  .other-business-card.osuns-card .business-logo-box img,
  .other-business-card.osuns-card .clean-logo-box img {
    width: 118px !important;
    height: 118px !important;
    max-width: 118px !important;
    max-height: 118px !important;
  }

  .other-business-card.sarvathaa-card .business-logo-box,
  .other-business-card.sarvathaa-card .clean-logo-box {
    width: 190px !important;
    height: 145px !important;
    min-width: 190px !important;
    max-width: 190px !important;
    max-height: 145px !important;
  }

  .other-business-card.sarvathaa-card .business-logo-box img,
  .other-business-card.sarvathaa-card .clean-logo-box img {
    width: 178px !important;
    max-width: 178px !important;
    max-height: 130px !important;
  }
}

@media (max-width: 560px) {
  .other-business-card {
    padding: 22px !important;
    text-align: left !important;
  }

  .footer-brand-title,
  .footer-link-block h3,
  .footer-contact-block h3 {
    font-size: 1.02rem !important;
  }

  .footer-brand-block p,
  .footer-link-block li,
  .footer-link-block a,
  .footer-contact-block p,
  .footer-contact-block a,
  .footer-phone,
  .footer-wa {
    font-size: 1.18rem !important;
    line-height: 1.6 !important;
  }
}

/* === FINAL FOOTER COLOR + BUSINESS BUTTON ALIGNMENT FIX === */
.site-footer .footer-brand-title{
    color: #4b2208 !important;
  font-family: var(--font-ui) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  margin-left: 30px !important;
}

.site-footer .footer-link-block h3,
.site-footer .footer-contact-block h3 {
  color: #4b2208 !important;
  font-family: var(--font-ui) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
  
}

.site-footer .footer-link-block a,
.site-footer .footer-contact-block a,
.site-footer .footer-brand-block p,
.site-footer .footer-contact-block p,
.site-footer .footer-bottom {
  color: #3a2218 !important;
}

.other-business-card {
  align-items: stretch !important;
  min-height: 238px !important;
  padding: 28px !important;
  gap: 22px !important;
}

.business-card-content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  height: 100% !important;
  min-height: 178px !important;
}

.business-card-content p {
  margin-bottom: 18px !important;
}

.business-link {
  margin-top: auto !important;
  min-width: 190px !important;
  height: 46px !important;
  padding: 0 22px !important;
  align-self: flex-start !important;
}

@media (max-width: 900px) {
  .other-business-card {
    align-items: stretch !important;
    min-height: 220px !important;
    padding: 24px !important;
  }
  .business-card-content {
    min-height: 158px !important;
  }
  .business-link {
    min-width: 180px !important;
  }
}

@media (max-width: 560px) {
  .other-business-card {
    min-height: auto !important;
  }
  .business-card-content {
    align-items: center !important;
    text-align: center !important;
    min-height: auto !important;
  }
  .business-link {
    align-self: center !important;
    width: min(100%, 230px) !important;
    margin-top: 12px !important;
  }
}

/* === FINAL FIX: Other Business logos only, no visible logo box === */
.other-business-card {
  grid-template-columns: 145px minmax(0, 1fr) !important;
  gap: 18px !important;
}

.other-business-card .business-logo-box,
.other-business-card .clean-logo-box,
.other-business-card.osuns-card .business-logo-box,
.other-business-card.osuns-card .clean-logo-box,
.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box,
.other-business-card:hover .business-logo-box,
.other-business-card:hover .clean-logo-box {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  min-width: 0 !important;
  align-self: flex-start !important;
  justify-self: flex-start !important;
}

.other-business-card .business-logo-box::before,
.other-business-card .clean-logo-box::before,
.other-business-card .business-logo-box::after,
.other-business-card .clean-logo-box::after {
  display: none !important;
  content: none !important;
}

.other-business-card.osuns-card .business-logo-box,
.other-business-card.osuns-card .clean-logo-box {
  width: 118px !important;
  height: 118px !important;
  max-width: 118px !important;
  max-height: 118px !important;
}

.other-business-card.osuns-card .business-logo-box img,
.other-business-card.osuns-card .clean-logo-box img {
  width: 112px !important;
  height: 112px !important;
  max-width: 112px !important;
  max-height: 112px !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box {
  width: 145px !important;
  height: 92px !important;
  max-width: 145px !important;
  max-height: 92px !important;
}

.other-business-card.sarvathaa-card .business-logo-box img,
.other-business-card.sarvathaa-card .clean-logo-box img {
  width: 142px !important;
  height: auto !important;
  max-width: 142px !important;
  max-height: 88px !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.other-business-card:hover .business-logo-box img,
.other-business-card:hover .clean-logo-box img,
.other-business-card:active .business-logo-box img,
.other-business-card:active .clean-logo-box img {
  transform: none !important;
  background: transparent !important;
}

@media (max-width: 900px) {
  .other-business-card {
    grid-template-columns: 1fr !important;
  }
  .other-business-card .business-logo-box,
  .other-business-card .clean-logo-box,
  .other-business-card.osuns-card .business-logo-box,
  .other-business-card.osuns-card .clean-logo-box,
  .other-business-card.sarvathaa-card .business-logo-box,
  .other-business-card.sarvathaa-card .clean-logo-box {
    justify-self: flex-start !important;
  }
}

@media (max-width: 560px) {
  .other-business-card .business-logo-box,
  .other-business-card .clean-logo-box,
  .other-business-card.osuns-card .business-logo-box,
  .other-business-card.osuns-card .clean-logo-box,
  .other-business-card.sarvathaa-card .business-logo-box,
  .other-business-card.sarvathaa-card .clean-logo-box {
    justify-self: center !important;
  }
}

/* === FINAL FIX: Other Business logo first, content neatly after logo === */
.other-business-grid {
  align-items: stretch !important;
}

.other-business-card.osuns-card,
.other-business-card.sarvathaa-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 18px !important;
  text-align: center !important;
  min-height: 360px !important;
  padding: 34px 30px !important;
}

.other-business-card.osuns-card .business-logo-box,
.other-business-card.osuns-card .clean-logo-box,
.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box {
  margin: 0 auto 4px auto !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  justify-self: center !important;
  align-self: center !important;
  flex: 0 0 auto !important;
}

.other-business-card.osuns-card .business-logo-box,
.other-business-card.osuns-card .clean-logo-box {
  width: 105px !important;
  height: 105px !important;
  min-width: 105px !important;
  max-width: 105px !important;
  max-height: 105px !important;
}

.other-business-card.osuns-card .business-logo-box img,
.other-business-card.osuns-card .clean-logo-box img {
  width: 102px !important;
  height: 102px !important;
  max-width: 102px !important;
  max-height: 102px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box {
  width: 128px !important;
  height: 82px !important;
  min-width: 128px !important;
  max-width: 128px !important;
  max-height: 82px !important;
}

.other-business-card.sarvathaa-card .business-logo-box img,
.other-business-card.sarvathaa-card .clean-logo-box img {
  width: 126px !important;
  height: auto !important;
  max-width: 126px !important;
  max-height: 78px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
}

.other-business-card .business-card-content {
  width: 100% !important;
  max-width: 520px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.other-business-card .business-label {
  margin: 0 auto 10px auto !important;
}

.other-business-card .business-card-content h3 {
  text-align: center !important;
  margin: 0 0 10px 0 !important;
}

.other-business-card .business-card-content p {
  text-align: center !important;
  margin: 0 auto 18px auto !important;
}

.other-business-card .business-link {
  margin: 0 auto !important;
  align-self: center !important;
}

@media (max-width: 900px) {
  .other-business-card.osuns-card,
  .other-business-card.sarvathaa-card {
    min-height: auto !important;
    padding: 28px 22px !important;
  }
}

@media (max-width: 560px) {
  .other-business-card.osuns-card .business-logo-box,
  .other-business-card.osuns-card .clean-logo-box {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
  }

  .other-business-card.osuns-card .business-logo-box img,
  .other-business-card.osuns-card .clean-logo-box img {
    width: 94px !important;
    height: 94px !important;
  }

  .other-business-card.sarvathaa-card .business-logo-box,
  .other-business-card.sarvathaa-card .clean-logo-box {
    width: 118px !important;
    height: 76px !important;
    min-width: 118px !important;
  }

  .other-business-card.sarvathaa-card .business-logo-box img,
  .other-business-card.sarvathaa-card .clean-logo-box img {
    width: 116px !important;
    max-height: 72px !important;
  }
}

/* === FINAL REQUEST FIX: Sarvathaa logo same visual size as Osun's + equal desktop nav buttons === */
@media (min-width: 901px) {
  .kron-nav {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    column-gap: 18px !important;
    min-height: 104px !important;
  }

  .nav-left-col,
  .nav-right-col {
    min-width: 0 !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
  }

  .nav-left-col {
    justify-content: flex-end !important;
  }

  .nav-right-col {
    justify-content: flex-start !important;
    gap: 48px !important;
  }

  .nav-links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex-wrap: nowrap !important;
  }

  .nav-links > li {
    display: flex !important;
    align-items: center !important;
  }

  .nav-links a {
    min-height: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 13px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .dropdown-menu a {
    height: auto !important;
    min-height: 36px !important;
    justify-content: flex-start !important;
    padding: 9px 12px !important;
  }

  .nav-actions {
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex: 0 0 auto !important;
  }

  .nav-social-icon {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
}

.other-business-card.osuns-card .business-logo-box,
.other-business-card.osuns-card .clean-logo-box {
  width: 108px !important;
  height: 108px !important;
  min-width: 108px !important;
  max-width: 108px !important;
  max-height: 108px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box {
  width: 108px !important;
  height: 108px !important;
  min-width: 140px !important;
  max-width: 140px !important;
  max-height: 140px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
}

.other-business-card.osuns-card .business-logo-box img,
.other-business-card.osuns-card .clean-logo-box img {
  width: 104px !important;
  height: 104px !important;
  max-width: 104px !important;
  max-height: 104px !important;
  object-fit: contain !important;
}

.other-business-card.sarvathaa-card .business-logo-box img,
.other-business-card.sarvathaa-card .clean-logo-box img {
  width: 175px !important;
  height: 190px !important;
  max-width: 150px !important;
  max-height: 150px !important;
  object-fit: contain !important;
}

@media (max-width: 560px) {
  .other-business-card.osuns-card .business-logo-box,
  .other-business-card.osuns-card .clean-logo-box,
  .other-business-card.sarvathaa-card .business-logo-box,
  .other-business-card.sarvathaa-card .clean-logo-box {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    max-width: 96px !important;
    max-height: 96px !important;
  }

  .other-business-card.osuns-card .business-logo-box img,
  .other-business-card.osuns-card .clean-logo-box img {
    width: 94px !important;
    height: 94px !important;
    max-width: 94px !important;
    max-height: 94px !important;
  }

  .other-business-card.sarvathaa-card .business-logo-box img,
  .other-business-card.sarvathaa-card .clean-logo-box img {
    width: 125px !important;
    height: 150px !important;
    max-width: 125px !important;
    max-height: 150px !important;
  }
}
.other-business-card.sarvathaa-card:focus-within {
  transform: none !important;
  animation: none !important;
}

.other-business-card::after,
.other-business-card:hover::after,
.other-business-card:active::after,
.other-business-card.sarvathaa-card::after,
.other-business-card.sarvathaa-card:hover::after,
.other-business-card.sarvathaa-card:active::after {
  transform: none !important;
  animation: none !important;
}

.business-logo-box,
.clean-logo-box,
.business-logo-box:hover,
.clean-logo-box:hover,
.business-logo-box:active,
.clean-logo-box:active,
.other-business-card:hover .business-logo-box,
.other-business-card:hover .clean-logo-box,
.other-business-card:active .business-logo-box,
.other-business-card:active .clean-logo-box {
  transform: none !important;
  animation: none !important;
}

.business-logo-box img,
.clean-logo-box img,
.business-logo-box img:hover,
.clean-logo-box img:hover,
.business-logo-box img:active,
.clean-logo-box img:active,
.other-business-card:hover .business-logo-box img,
.other-business-card:hover .clean-logo-box img,
.other-business-card:active .business-logo-box img,
.other-business-card:active .clean-logo-box img {
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.sarvathaa-card *,
.sarvathaa-card *:hover,
.sarvathaa-card *:active,
.sarvathaa-card *:focus {
  animation: none !important;
}

/* === FINAL EXACT FIX: Sarvathaa hover same as Osun's, no zoom-out/scale change === */
.other-business-card.sarvathaa-card,
.other-business-card.sarvathaa-card:hover,
.other-business-card.sarvathaa-card:active,
.other-business-card.sarvathaa-card:focus,
.other-business-card.sarvathaa-card:focus-within {
  transform: none !important;
  animation: none !important;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease !important;
}

.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box,
.other-business-card.sarvathaa-card:hover .business-logo-box,
.other-business-card.sarvathaa-card:hover .clean-logo-box,
.other-business-card.sarvathaa-card:active .business-logo-box,
.other-business-card.sarvathaa-card:active .clean-logo-box {
  transform: none !important;
  animation: none !important;
  transition: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.other-business-card.sarvathaa-card .business-logo-box img,
.other-business-card.sarvathaa-card .clean-logo-box img,
.other-business-card.sarvathaa-card .business-logo-box img:hover,
.other-business-card.sarvathaa-card .clean-logo-box img:hover,
.other-business-card.sarvathaa-card:hover .business-logo-box img,
.other-business-card.sarvathaa-card:hover .clean-logo-box img,
.other-business-card.sarvathaa-card:active .business-logo-box img,
.other-business-card.sarvathaa-card:active .clean-logo-box img,
.other-business-card.sarvathaa-card:focus .business-logo-box img,
.other-business-card.sarvathaa-card:focus .clean-logo-box img {
  transform: none !important;
  scale: 1 !important;
  animation: none !important;
  transition: none !important;
  filter: none !important;
  object-fit: contain !important;
}

/* === FINAL FIX: Other Business logos top-left and labels top-right === */
.other-business-card.osuns-card,
.other-business-card.sarvathaa-card {
  display: grid !important;
  grid-template-columns: 150px minmax(0, 1fr) !important;
  align-items: start !important;
  justify-items: stretch !important;
  column-gap: 28px !important;
  padding-top: 28px !important;
}

.other-business-card.osuns-card .business-logo-box,
.other-business-card.osuns-card .clean-logo-box,
.other-business-card.sarvathaa-card .business-logo-box,
.other-business-card.sarvathaa-card .clean-logo-box {
  justify-self: start !important;
  align-self: start !important;
  margin: 0 !important;
}

.other-business-card.osuns-card .business-card-content,
.other-business-card.sarvathaa-card .business-card-content {
  width: 100% !important;
  align-self: start !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.other-business-card.osuns-card .business-label,
.other-business-card.sarvathaa-card .business-label {
  align-self: flex-end !important;
  margin: 0 0 10px auto !important;
  text-align: right !important;
  white-space: nowrap !important;
}

.other-business-card.osuns-card .business-card-content h3,
.other-business-card.sarvathaa-card .business-card-content h3,
.other-business-card.osuns-card .business-card-content p,
.other-business-card.sarvathaa-card .business-card-content p,
.other-business-card.osuns-card .business-link,
.other-business-card.sarvathaa-card .business-link {
  align-self: flex-start !important;
  text-align: left !important;
}

@media (max-width: 900px) {
  .other-business-card.osuns-card,
  .other-business-card.sarvathaa-card {
    grid-template-columns: 128px minmax(0, 1fr) !important;
    column-gap: 18px !important;
    text-align: left !important;
    justify-items: stretch !important;
  }

  .other-business-card.osuns-card .business-label,
  .other-business-card.sarvathaa-card .business-label {
    align-self: flex-start !important;
    margin-left: 0 !important;
    text-align: left !important;
    white-space: normal !important;
  }
}

@media (max-width: 560px) {
  .other-business-card.osuns-card,
  .other-business-card.sarvathaa-card {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    text-align: left !important;
  }

  .other-business-card.osuns-card .business-logo-box,
  .other-business-card.osuns-card .clean-logo-box,
  .other-business-card.sarvathaa-card .business-logo-box,
  .other-business-card.sarvathaa-card .clean-logo-box {
    justify-self: start !important;
    margin: 0 0 14px 0 !important;
  }

  .other-business-card.osuns-card .business-card-content,
  .other-business-card.sarvathaa-card .business-card-content {
    align-items: flex-start !important;
  }
}

/* === FINAL FIX: Other Business order - logo/label first, heading/content/link after === */
.other-business-card.osuns-card,
.other-business-card.sarvathaa-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  text-align: left !important;
}

.other-business-card .business-card-top {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: 0 !important;
}

.other-business-card.osuns-card .business-card-top .business-logo-box,
.other-business-card.osuns-card .business-card-top .clean-logo-box,
.other-business-card.sarvathaa-card .business-card-top .business-logo-box,
.other-business-card.sarvathaa-card .business-card-top .clean-logo-box {
  flex: 0 0 auto !important;
  justify-self: auto !important;
  align-self: flex-start !important;
  margin: 0 !important;
}

.other-business-card .business-card-top .business-label {
  align-self: flex-start !important;
  margin: 0 0 0 auto !important;
  text-align: right !important;
  white-space: nowrap !important;
}

.other-business-card.osuns-card .business-card-content,
.other-business-card.sarvathaa-card .business-card-content {
  width: 100% !important;
  display: block !important;
  align-self: stretch !important;
  margin: 0 !important;
  padding: 0 !important;
}

.other-business-card.osuns-card .business-card-content h3,
.other-business-card.sarvathaa-card .business-card-content h3,
.other-business-card.osuns-card .business-card-content p,
.other-business-card.sarvathaa-card .business-card-content p,
.other-business-card.osuns-card .business-card-content .business-link,
.other-business-card.sarvathaa-card .business-card-content .business-link {
  text-align: left !important;
  align-self: auto !important;
}

@media (max-width: 560px) {
  .other-business-card .business-card-top {
    align-items: flex-start !important;
    gap: 12px !important;
  }

  .other-business-card .business-card-top .business-label {
    white-space: normal !important;
    text-align: right !important;
    max-width: 58% !important;
  }
}

/* === FINAL FIX: center only Osuns/Sarvathaa heading in Other Businesses === */
.other-business-card.osuns-card .business-card-content h3,
.other-business-card.sarvathaa-card .business-card-content h3 {
  width: 100% !important;
  text-align: center !important;
  display: block !important;
}

.other-business-card.osuns-card .business-card-content p,
.other-business-card.sarvathaa-card .business-card-content p,
.other-business-card.osuns-card .business-card-content .business-link,
.other-business-card.sarvathaa-card .business-card-content .business-link {
  text-align: justify !important;
  hyphens: auto !important;
  overflow-wrap: break-word !important;
}

/* =========================================================
   FINAL COLLECTION 3 × 3 + SMALLER SUB-PRODUCT IMAGES
   ========================================================= */

/* Nine collection cards: three cards in each row on desktop. */
#products .creation-grid,
#products .compact-creation-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
}

/* Remove older rules that centre or stretch the final card. */
#products .compact-creation-grid > .compact-creation-card:last-child,
#products .creation-grid > .creation-card:last-child {
  grid-column: auto !important;
  justify-self: stretch !important;
  width: auto !important;
  max-width: none !important;
}

/* Slightly smaller sub-product photos, fully visible and centred. */
.type-card > img,
.type-card img {
  display: block !important;
  width: 100% !important;
  height: 220px !important;
  padding: 20px 22px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fffaf2 !important;
}

/* Tablet: two collection cards per row. */
@media (max-width: 900px) {
  #products .creation-grid,
  #products .compact-creation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile: one collection card per row and compact product photos. */
@media (max-width: 600px) {
  #products .creation-grid,
  #products .compact-creation-grid {
    grid-template-columns: 1fr !important;
  }

  .type-card > img,
  .type-card img {
    height: 205px !important;
    padding: 18px 20px !important;
  }
}


/* =========================================================
   FINAL SUB-PRODUCT IMAGE FIT FIX
   Keep every product photo fully visible without cropping,
   while using the card image area consistently.
   ========================================================= */
.type-card {
  background: #ffffff !important;
}

.type-card > img,
.type-card img {
  display: block !important;
  width: 100% !important;
  height: 260px !important;
  padding: 8px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fffaf2 !important;
  border-radius: 27px 27px 0 0 !important;
}

@media (max-width: 900px) {
  .type-card > img,
  .type-card img {
    height: 250px !important;
    padding: 7px !important;
  }
}

@media (max-width: 600px) {
  .type-card > img,
  .type-card img {
    height: 235px !important;
    padding: 6px !important;
  }
}

/* Final small placement adjustment for sub-product images */
.type-card > img,
.type-card img {
  height: 250px !important;
  padding: 12px !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 900px) {
  .type-card > img,
  .type-card img {
    height: 240px !important;
    padding: 10px !important;
  }
}

@media (max-width: 600px) {
  .type-card > img,
  .type-card img {
    height: 225px !important;
    padding: 8px !important;
  }
}

/* =========================================================
   FINAL: SUB-PRODUCT IMAGES FIT INSIDE EACH CARD
   ========================================================= */
.type-card {
  overflow: hidden !important;
}

.type-card > img,
.type-card img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 260px !important;
  max-height: 260px !important;
  margin: 0 auto !important;
  padding: 10px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  background-color: #fffaf2 !important;
  border-radius: 24px 24px 0 0 !important;
}

@media (max-width: 900px) {
  .type-card > img,
  .type-card img {
    height: 245px !important;
    max-height: 245px !important;
    padding: 9px !important;
  }
}

@media (max-width: 600px) {
  .type-card > img,
  .type-card img {
    height: 225px !important;
    max-height: 225px !important;
    padding: 8px !important;
  }
}

/* =========================================================
   FINAL: CLEAN WHITE BACKGROUND FOR ALL SUB-PRODUCT IMAGES
   ========================================================= */
.type-card,
.type-card > img,
.type-card img {
  background: #ffffff !important;
  background-color: #ffffff !important;
}

.type-card > img,
.type-card img {
  border: 0 !important;
  box-shadow: none !important;
}

/* =========================================================
   FINAL: SLIGHT ZOOM FOR SUB-PRODUCT IMAGES
   A small visual enlargement while keeping every image fully visible.
   ========================================================= */
.type-card > img,
.type-card img {
  padding: 4px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
}

@media (max-width: 900px) {
  .type-card > img,
  .type-card img {
    padding: 4px !important;
  }
}

@media (max-width: 600px) {
  .type-card > img,
  .type-card img {
    padding: 3px !important;
  }
}

/* =========================================================
   FINAL SUB-PRODUCT GRID FIT & ALIGNMENT
   Slightly smaller images, centered cleanly inside every card
   ========================================================= */
.types-grid {
  width: min(100%, 1120px) !important;
  margin-inline: auto !important;
  gap: 20px !important;
  align-items: stretch !important;
}

.type-card {
  height: 100% !important;
}

.type-card > img {
  display: block !important;
  width: calc(100% - 20px) !important;
  height: 210px !important;
  margin: 10px 10px 0 !important;
  padding: 6px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
  border-radius: 20px !important;
}

.type-card-body {
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 900px) {
  .type-card > img {
    height: 200px !important;
  }
}

@media (max-width: 600px) {
  .types-grid {
    gap: 16px !important;
  }

  .type-card > img {
    width: calc(100% - 16px) !important;
    height: 190px !important;
    margin: 8px 8px 0 !important;
    padding: 5px !important;
    border-radius: 18px !important;
  }
}

/* =========================================================
   FINAL ALL SUB-PRODUCT IMAGE SIZE & FULL-VISIBILITY FIX
   Applies to Chocolate & Confections and Baked Products pages.
   ========================================================= */
.types-grid .type-card {
  align-items: stretch !important;
}

.types-grid .type-card > img {
  display: block !important;
  width: calc(100% - 36px) !important;
  height: 190px !important;
  max-width: calc(100% - 36px) !important;
  margin: 18px auto 0 !important;
  padding: 10px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center center !important;
  background-color: #ffffff !important;
  border-radius: 18px !important;
}

@media (max-width: 900px) {
  .types-grid .type-card > img {
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    height: 180px !important;
    margin-top: 15px !important;
    padding: 9px !important;
  }
}

@media (max-width: 600px) {
  .types-grid .type-card > img {
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    height: 170px !important;
    margin-top: 12px !important;
    padding: 8px !important;
    border-radius: 16px !important;
  }
}


/* =========================================================
   FINAL MATCH: CHOCOLATE & CONFECTIONS = BAKED PRODUCT SCALE
   Reduce only the visible chocolate product artwork so every
   category uses one consistent visual size and alignment.
   ========================================================= */
.chocolate-subproducts-page .types-grid .type-card > img {
  width: calc(100% - 52px) !important;
  max-width: calc(100% - 52px) !important;
  height: 190px !important;
  margin: 18px auto 0 !important;
  padding: 18px !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
}

@media (max-width: 900px) {
  .chocolate-subproducts-page .types-grid .type-card > img {
    width: calc(100% - 44px) !important;
    max-width: calc(100% - 44px) !important;
    height: 180px !important;
    margin-top: 15px !important;
    padding: 16px !important;
  }
}

@media (max-width: 600px) {
  .chocolate-subproducts-page .types-grid .type-card > img {
    width: calc(100% - 36px) !important;
    max-width: calc(100% - 36px) !important;
    height: 170px !important;
    margin-top: 12px !important;
    padding: 14px !important;
  }
}

/* =========================================================
   FINAL UNIFIED SUB-PRODUCT GRID
   Chocolate & Confections and Baked Products use exactly the
   same card grid, image area, spacing and full-image fitting.
   ========================================================= */
.types-grid,
.chocolate-subproducts-page .types-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: min(100%, 1240px) !important;
  margin-inline: auto !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.types-grid .type-card,
.chocolate-subproducts-page .types-grid .type-card {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border-radius: 28px !important;
}

.types-grid .type-card > img,
.chocolate-subproducts-page .types-grid .type-card > img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 230px !important;
  max-height: 230px !important;
  margin: 0 !important;
  padding: 10px !important;
  box-sizing: border-box !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 26px 26px 0 0 !important;
  box-shadow: none !important;
}

.types-grid .type-card-body,
.chocolate-subproducts-page .types-grid .type-card-body {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

@media (max-width: 900px) {
  .types-grid,
  .chocolate-subproducts-page .types-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

  .types-grid .type-card > img,
  .chocolate-subproducts-page .types-grid .type-card > img {
    height: 220px !important;
    max-height: 220px !important;
    padding: 9px !important;
  }
}

@media (max-width: 600px) {
  .types-grid,
  .chocolate-subproducts-page .types-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .types-grid .type-card > img,
  .chocolate-subproducts-page .types-grid .type-card > img {
    height: 210px !important;
    max-height: 210px !important;
    padding: 8px !important;
  }
}

/* =========================================================
   FINAL CHOCOLATE CARD CONTENT + FULL IMAGE FIT
   Match Chocolate & Confections card text proportions to the
   Baked Products cards and allow a gentle hover zoom.
   ========================================================= */
.chocolate-subproducts-page .types-grid .type-card-body {
  padding: 20px 20px 22px !important;
  gap: 8px !important;
}

.chocolate-subproducts-page .types-grid .type-card-body h2,
.chocolate-subproducts-page .types-grid .type-card-body h3 {
  margin: 0 !important;
  font-size: 1.08rem !important;
  line-height: 1.3 !important;
  min-height: 0 !important;
}

.chocolate-subproducts-page .types-grid .type-card-body p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  min-height: 0 !important;
}

.types-grid .type-card > img,
.chocolate-subproducts-page .types-grid .type-card > img {
  object-fit: contain !important;
  object-position: center !important;
  transform: scale(1) !important;
  transition: transform 0.28s ease !important;
  transform-origin: center center !important;
}

@media (hover: hover) and (pointer: fine) {
  .types-grid .type-card:hover > img,
  .chocolate-subproducts-page .types-grid .type-card:hover > img {
    transform: scale(1.045) !important;
  }
}

@media (max-width: 600px) {
  .chocolate-subproducts-page .types-grid .type-card-body {
    padding: 17px 17px 19px !important;
  }

  .chocolate-subproducts-page .types-grid .type-card-body h2,
  .chocolate-subproducts-page .types-grid .type-card-body h3 {
    font-size: 1.02rem !important;
  }

  .chocolate-subproducts-page .types-grid .type-card-body p {
    font-size: 0.9rem !important;
  }
}


/* === FINAL UNIFIED SUB-PRODUCT TEXT SIZE ===
   Chocolate & Confections now matches Baked Products exactly. */
.types-grid .type-card-body {
  padding: 20px 20px 22px !important;
  gap: 8px !important;
}
.types-grid .type-card-body h2,
.types-grid .type-card-body h3 {
  margin: 0 !important;
  font-size: 1.08rem !important;
  line-height: 1.3 !important;
  min-height: 0 !important;
}
.types-grid .type-card-body p {
  margin: 0 !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  min-height: 0 !important;
  color: #68462f !important;
}
@media (max-width: 600px) {
  .types-grid .type-card-body {
    padding: 17px 17px 19px !important;
  }
  .types-grid .type-card-body h2,
  .types-grid .type-card-body h3 {
    font-size: 1.02rem !important;
  }
  .types-grid .type-card-body p {
    font-size: 0.9rem !important;
  }
}

/* =========================================================
   FINAL USER ADJUSTMENT: SLIGHTLY LARGER DESCRIPTION + FULL FIT
   ========================================================= */
.types-grid .type-card-body p,
.chocolate-subproducts-page .types-grid .type-card-body p {
  font-size: 1.10rem !important;
  line-height: 1.58 !important;
}

.types-grid .type-card > img,
.chocolate-subproducts-page .types-grid .type-card > img {
  width: 100% !important;
  max-width: 100% !important;
  height: 240px !important;
  max-height: 240px !important;
  padding: 8px !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .types-grid .type-card:hover > img,
  .chocolate-subproducts-page .types-grid .type-card:hover > img {
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .types-grid .type-card > img,
  .chocolate-subproducts-page .types-grid .type-card > img {
    height: 225px !important;
    max-height: 225px !important;
    padding: 7px !important;
  }
}

@media (max-width: 600px) {
  .types-grid .type-card-body p,
  .chocolate-subproducts-page .types-grid .type-card-body p {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
  }

  .types-grid .type-card > img,
  .chocolate-subproducts-page .types-grid .type-card > img {
    height: 215px !important;
    max-height: 215px !important;
    padding: 6px !important;
  }
}

/* =========================================================
   HOME COLLECTION IMAGES — BRIGHT WHITE BACKGROUND
   Keeps the product photos clear while preserving readable titles.
   ========================================================= */
#products .creation-card,
#products .compact-creation-card,
#products .creation-image {
  background: #ffffff !important;
}

#products .creation-card img,
#products .compact-creation-card img {
  opacity: 1 !important;
  background: #ffffff !important;
  filter: brightness(1.08) contrast(1.02) !important;
}

#products .creation-card::after,
#products .compact-creation-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(28, 13, 6, 0.78) 0%, rgba(28, 13, 6, 0.28) 23%, rgba(255, 255, 255, 0) 52%) !important;
}

#products .creation-card-content,
#products .compact-creation-card .creation-card-content {
  color: #fffaf4 !important;
  background: transparent !important;
}

#products .creation-card-content h3,
#products .compact-creation-card .creation-card-content h3 {
  color: #fffaf4 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.16) !important;
}

#products .creation-card-content span,
#products .compact-creation-card .creation-card-content span {
  color: var(--gold-light) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55) !important;
}

#products .creation-card-content * {
  color: inherit !important;
}

#products .creation-card,
#products .compact-creation-card,
#products .creation-image,
#products .creation-card img,
#products .compact-creation-card img,
#products .creation-card::before,
#products .compact-creation-card::before {
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  box-shadow: 0 12px 28px rgba(115, 82, 45, 0.09) !important;
}

#products .creation-card::before,
#products .compact-creation-card::before {
  content: none !important;
  display: none !important;
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border: 0 !important;
  opacity: 0 !important;
}

/* Final fix: make every sub-product image fit the card cleanly without overlap */
.types-grid .type-card,
.chocolate-subproducts-page .types-grid .type-card {
  background: #ffffff !important;
  background-color: #ffffff !important;
  overflow: hidden !important;
  border-radius: 22px !important;
}

.types-grid .type-card img,
.chocolate-subproducts-page .types-grid .type-card img {
  width: 100% !important;
  height: 205px !important;
  max-height: 205px !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  border-radius: 20px 20px 0 0 !important;
}

.types-grid .type-card-body,
.chocolate-subproducts-page .types-grid .type-card-body {
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding: 1rem 1rem 1.2rem !important;
}

@media (max-width: 768px) {
  .types-grid .type-card img,
  .chocolate-subproducts-page .types-grid .type-card img {
    height: 185px !important;
    max-height: 185px !important;
  }
}

/* Selected product photos: use the same fit as the other cards */
.types-grid .type-card img.product-photo-zoom,
.chocolate-subproducts-page .types-grid .type-card img.product-photo-zoom {
  object-fit: cover !important;
  object-position: center center !important;
  background: #ffffff !important;
  transform: none !important;
}

/* Targeted fix for the Vanilla Cake and Oatmeals cookies cards */
.types-grid .type-card img.product-fit-card {
  object-fit: cover !important;
  object-position: center center !important;
  background: #ffffff !important;
  padding: 10px !important;
  box-sizing: border-box !important;
}

/* Tight fit for the Brownies card image */
.types-grid .type-card img.brownies-fit-image {
  object-fit: cover !important;
  object-position: center center !important;
  background: #ffffff !important;
  padding: 0 8px !important;
  box-sizing: border-box !important;
}

.types-grid .type-card img[alt="Oatmeals cookies"] {
  height: 205px !important;
  max-height: 205px !important;
  padding: 10px !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 768px) {
  .types-grid .type-card img.product-fit-card {
    padding: 8px !important;
  }

  .types-grid .type-card img[alt="Oatmeals cookies"] {
    height: 185px !important;
    max-height: 185px !important;
    padding: 8px !important;
  }
}

/* Ensure cake and cookie images are aligned the same way */
.cookies-page .types-grid .type-card img,
.cakes-page .types-grid .type-card img {
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  background: #ffffff !important;
}

.cookies-page .types-grid .type-card,
.cakes-page .types-grid .type-card {
  overflow: hidden !important;
}

/* =========================================================
   FINAL SPLIT HERO BANNER — content left, product image right
   ========================================================= */
#hero.hero {
  min-height: 570px !important;
  height: auto !important;
  padding: 58px 0 54px !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(232,197,106,.25), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f8eee1 52%, #f0dfca 100%) !important;
  overflow: hidden !important;
}
#hero::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  top: -170px;
  border-radius: 50%;
  border: 1px solid rgba(166,124,31,.2);
}
#hero .hero-shell {
  position: relative;
  z-index: 2;
  width: min(100% - 42px, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  align-items: center;
  gap: clamp(38px, 6vw, 82px);
}
#hero .container.hero-content {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--choc-dark) !important;
  position: relative !important;
  z-index: 4 !important;
}
#hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--gold-deep);
  font: 700 .78rem/1.2 var(--font-ui);
  letter-spacing: .16em;
  text-transform: uppercase;
}
#hero .hero-kicker::before { content:""; width: 34px; height: 2px; background: var(--gold); }
#hero h1 {
  max-width: 520px !important;
  color: var(--choc-dark) !important;
  font-size: clamp(2.7rem, 5vw, 4.65rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.035em;
}
#hero h1 em { color: var(--berry) !important; }
#hero p {
  max-width: 470px !important;
  margin: 20px 0 28px !important;
  color: #674c3f !important;
  font-size: 1.08rem !important;
  line-height: 1.75 !important;
}
#hero .hero-actions { justify-content: flex-start !important; }
#hero .hero-actions .btn { min-width: 174px; }
#hero .hero-carousel {
  position: relative !important;
  inset: auto !important;
  z-index: 3 !important;
  min-width: 0;
}
#hero .hero-image-frame {
  position: relative;
  height: clamp(390px, 44vw, 500px);
  padding: 13px;
  border-radius: 30px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(166,124,31,.23);
  box-shadow: 0 28px 70px rgba(58,34,24,.22);
}
#hero .hero-slides {
  position: relative !important;
  inset: auto !important;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}
#hero .hero-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  transform: scale(1.035) !important;
}
#hero .hero-slide.active { transform: scale(1) !important; }
#hero .hero-product-label {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 5;
  max-width: calc(100% - 68px);
  padding: 12px 17px;
  border-radius: 13px;
  background: rgba(26,14,8,.78);
  backdrop-filter: blur(8px);
  color: #fffaf4;
  box-shadow: 0 10px 30px rgba(0,0,0,.16);
}
#hero .hero-product-label span {
  display: block;
  color: var(--gold-light);
  font: 700 .65rem/1.2 var(--font-ui);
  letter-spacing: .15em;
  text-transform: uppercase;
}
#hero .hero-product-label strong {
  display: block;
  margin-top: 3px;
  font: 600 1rem/1.25 var(--font-heading);
}
#hero .hero-controls {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 18px;
}
#hero .hero-arrow {
  position: static !important;
  transform: none !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(58,34,24,.18) !important;
  background: #fff !important;
  color: var(--choc) !important;
  box-shadow: 0 7px 20px rgba(58,34,24,.11);
}
#hero .hero-arrow:hover { background: var(--choc) !important; color: #fff !important; }
#hero .hero-dots {
  position: static !important;
  transform: none !important;
  display: flex !important;
  align-items: center;
  gap: 7px !important;
}
#hero .hero-dot {
  width: 8px !important;
  height: 8px !important;
  border: 0 !important;
  background: rgba(58,34,24,.25) !important;
}
#hero .hero-dot.active { width: 25px !important; border-radius: 8px !important; background: var(--gold) !important; }
#hero .hero-overlay { display: none !important; }

@media (max-width: 900px) {
  #hero.hero { min-height: 0 !important; padding: 46px 0 38px !important; }
  #hero .hero-shell { grid-template-columns: 1fr; gap: 30px; }
  #hero .container.hero-content { text-align: center; }
  #hero h1, #hero p { margin-left: auto !important; margin-right: auto !important; }
  #hero .hero-kicker { justify-content: center; }
  #hero .hero-actions { justify-content: center !important; }
  #hero .hero-image-frame { height: min(66vw, 450px); min-height: 330px; }
  #hero .hero-arrow { display: inline-flex !important; }
}
@media (max-width: 560px) {
  #hero.hero { padding: 34px 0 28px !important; }
  #hero .hero-shell { width: min(100% - 28px, 1200px); gap: 24px; }
  #hero h1 { font-size: clamp(2.2rem, 11vw, 3.2rem) !important; }
  #hero p { margin-top: 14px !important; margin-bottom: 21px !important; font-size: .98rem !important; }
  #hero .hero-kicker { font-size: .68rem; letter-spacing: .12em; }
  #hero .hero-image-frame { height: 310px; min-height: 0; padding: 8px; border-radius: 22px; }
  #hero .hero-slides { border-radius: 16px; }
  #hero .hero-product-label { left: 20px; right: 20px; bottom: 20px; max-width: none; }
  #hero .hero-controls { margin-top: 13px; }
  #hero .hero-arrow { width: 38px !important; height: 38px !important; }
}

/* =========================================================
   HERO BANNER — 15% COMPACT SIZE
   Keeps the same split layout while reducing overall scale.
   ========================================================= */
#hero.hero {
  min-height: 485px !important;
  padding: 49px 0 46px !important;
}
#hero::before {
  width: 306px;
  height: 306px;
  right: -128px;
  top: -145px;
}
#hero .hero-shell {
  width: min(100% - 42px, 1080px);
  grid-template-columns: minmax(0, .88fr) minmax(374px, 1.12fr);
  gap: clamp(32px, 5.1vw, 70px);
}
#hero .hero-kicker {
  gap: 8px;
  margin-bottom: 14px;
  font-size: .72rem;
}
#hero .hero-kicker::before {
  width: 29px;
}
#hero h1 {
  max-width: 442px !important;
  font-size: clamp(2.3rem, 4.25vw, 3.95rem) !important;
}
#hero p {
  max-width: 400px !important;
  margin: 17px 0 24px !important;
  font-size: 1.10rem !important;
  line-height: 1.68 !important;
}
#hero .hero-actions .btn {
  min-width: 148px;
  padding-top: 12px;
  padding-bottom: 12px;
}
#hero .hero-image-frame {
  height: clamp(332px, 37.4vw, 425px);
  padding: 11px;
  border-radius: 26px;
  box-shadow: 0 24px 60px rgba(58,34,24,.20);
}
#hero .hero-slides {
  border-radius: 19px;
}
#hero .hero-product-label {
  left: 29px;
  bottom: 29px;
  max-width: calc(100% - 58px);
  padding: 10px 14px;
  border-radius: 11px;
}
#hero .hero-product-label span {
  font-size: .6rem;
}
#hero .hero-product-label strong {
  font-size: .9rem;
}
#hero .hero-controls {
  gap: 11px;
  margin-top: 15px;
}
#hero .hero-arrow {
  width: 36px !important;
  height: 36px !important;
}
#hero .hero-arrow svg {
  width: 17px;
  height: 17px;
}
#hero .hero-dots {
  gap: 6px !important;
}
#hero .hero-dot {
  width: 7px !important;
  height: 7px !important;
}
#hero .hero-dot.active {
  width: 21px !important;
}

@media (max-width: 900px) {
  #hero.hero { padding: 39px 0 32px !important; }
  #hero .hero-shell { gap: 26px; }
  #hero .hero-image-frame {
    height: min(56vw, 383px);
    min-height: 281px;
  }
}
@media (max-width: 560px) {
  #hero.hero { padding: 29px 0 24px !important; }
  #hero .hero-shell { gap: 20px; }
  #hero h1 { font-size: clamp(1.9rem, 9.4vw, 2.72rem) !important; }
  #hero p {
    margin-top: 12px !important;
    margin-bottom: 18px !important;
    font-size: .9rem !important;
  }
  #hero .hero-kicker { font-size: .63rem; }
  #hero .hero-image-frame {
    height: 264px;
    padding: 7px;
    border-radius: 19px;
  }
  #hero .hero-slides { border-radius: 14px; }
  #hero .hero-product-label {
    left: 17px;
    right: 17px;
    bottom: 17px;
  }
  #hero .hero-controls { margin-top: 11px; }
  #hero .hero-arrow {
    width: 34px !important;
    height: 34px !important;
  }
}

/* =========================================================
   FINAL HERO ALIGNMENT — lower image box, white background,
   full product image visibility and refined controls
   ========================================================= */
#hero.hero {
  background:
    radial-gradient(circle at 8% 18%, rgba(201, 158, 52, .10), transparent 24%),
    radial-gradient(circle at 92% 84%, rgba(112, 43, 53, .055), transparent 25%),
    #ffffff !important;
  border-bottom: 1px solid rgba(95, 62, 44, .08);
}

#hero::before {
  border-color: rgba(166, 124, 31, .13);
  opacity: .75;
}

/* Bring the changing product box a little lower than the text block. */
#hero .hero-carousel {
  margin-top: 24px !important;
}

#hero .hero-image-frame {
  height: auto !important;
  aspect-ratio: 1.5 / 1;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(166, 124, 31, .18);
  box-shadow: 0 20px 48px rgba(58, 34, 24, .14);
}

#hero .hero-slides {
  background: #ffffff !important;
}

/* Show every product image completely without cutting its edges. */
#hero .hero-slide,
#hero .hero-slide.active {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  background: #ffffff;
}

/* Keep arrows and dots in one clean control strip under the image. */
#hero .hero-controls {
  width: max-content;
  max-width: 100%;
  margin: 16px auto 0 !important;
  padding: 6px 9px;
  border: 1px solid rgba(58, 34, 24, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 22px rgba(58, 34, 24, .09);
}

#hero .hero-arrow {
  border-color: rgba(58, 34, 24, .13) !important;
  box-shadow: none !important;
}

#hero .hero-dot {
  background: rgba(58, 34, 24, .22) !important;
}

#hero .hero-dot.active {
  background: var(--gold) !important;
}

@media (max-width: 900px) {
  #hero .hero-carousel {
    margin-top: 8px !important;
  }
  #hero .hero-image-frame {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1.5 / 1;
  }
}

@media (max-width: 560px) {
  #hero .hero-carousel {
    margin-top: 4px !important;
  }
  #hero .hero-image-frame {
    height: auto !important;
    aspect-ratio: 1.42 / 1;
    padding: 7px;
  }
  #hero .hero-controls {
    margin-top: 10px !important;
    padding: 5px 7px;
  }
}

/* =========================================================
   FINAL BANNER IMAGE MATCHING — restore warm background and
   fit each product photograph according to its composition
   ========================================================= */
#hero.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(232,197,106,.25), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f8eee1 52%, #f0dfca 100%) !important;
}

/* White-background product photos: keep the complete product visible. */
#hero .hero-slide[data-slide="0"],
#hero .hero-slide[data-slide="1"],
#hero .hero-slide[data-slide="4"] {
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff !important;
}

/* Macarons have useful edge-to-edge composition; fill softly without harsh crop. */
#hero .hero-slide[data-slide="2"] {
  object-fit: cover !important;
  object-position: center 52% !important;
  background: #fff !important;
}

/* Full-scene photographs: fill the box so no unmatched white strips appear. */
#hero .hero-slide[data-slide="3"] {
  object-fit: cover !important;
  object-position: center 50% !important;
}
#hero .hero-slide[data-slide="5"] {
  object-fit: cover !important;
  object-position: center 48% !important;
}

#hero .hero-slides {
  background: #fff !important;
}

/* =========================================================
   HOME + SUB-PRODUCT BANNER FINAL ALIGNMENT
   ========================================================= */
/* Keep the approved home-banner size, but lower the complete
   right-side visual area (image, arrows and dots) slightly. */
#hero .hero-carousel {
  margin-top: 34px !important;
  align-self: start;
}
#hero .hero-controls {
  margin-top: 14px !important;
}

/* Give every sub-product page the same split-banner language
   as the home page: copy on the left, product image on the right. */
.detail-hero {
  position: relative !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr) !important;
  align-items: center !important;
  gap: clamp(34px, 5vw, 76px) !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 48px max(24px, calc((100vw - 1200px) / 2)) 42px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 12% 18%, rgba(232,197,106,.25), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f8eee1 52%, #f0dfca 100%) !important;
  border-bottom: 1px solid rgba(95, 62, 44, .08);
}
.detail-hero::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  left: -105px;
  bottom: -125px;
  border: 1px solid rgba(166,124,31,.14);
  border-radius: 50%;
  pointer-events: none;
}
.detail-hero > img {
  grid-column: 2 !important;
  grid-row: 1 !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1.5 / 1 !important;
  object-fit: contain !important;
  object-position: center !important;
  padding: 10px !important;
  margin-top: 26px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(166,124,31,.18) !important;
  background: #fff !important;
  box-shadow: 0 20px 48px rgba(58,34,24,.14) !important;
  opacity: 1 !important;
  transform: none !important;
  z-index: 2;
}
.detail-hero .detail-overlay {
  display: none !important;
}

/* === QUICK FIX: unify Osun's and Sarvathaa other-business-card placement === */
.other-business-card.osuns-card,
.other-business-card.sarvathaa-card {
  grid-template-columns: 165px minmax(0, 1fr) !important;
  align-items: flex-start !important;
  gap: 18px !important;
  padding: 28px !important;
}

.other-business-card .business-card-top {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.other-business-card .business-logo-box,
.other-business-card .clean-logo-box {
  width: 165px !important;
  height: 165px !important;
  min-width: 165px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.other-business-card .business-logo-box img,
.other-business-card .clean-logo-box img {
  width: 135px !important;
  height: auto !important;
  max-width: 135px !important;
  max-height: 135px !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
}

.detail-hero .container.detail-content {
  grid-column: 1 !important;
  grid-row: 1 !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: 620px !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  color: var(--choc) !important;
  z-index: 3;
}
.detail-hero .breadcrumb {
  justify-content: flex-start !important;
  color: rgba(58,34,24,.66) !important;
}
.detail-hero .breadcrumb a,
.detail-hero .breadcrumb span {
  color: inherit !important;
}
.detail-hero .eyebrow {
  color: var(--gold-dark, #9a7420) !important;
}
.detail-hero h1 {
  color: var(--choc) !important;
  text-shadow: none !important;
}
.detail-hero p {
  max-width: 560px !important;
  color: rgba(58,34,24,.76) !important;
  text-shadow: none !important;
}

/* Scene-style photos fill the right box; white-background product
   photos remain fully visible without cutting. */
body:has(.detail-hero img[src*="brownies"]) .detail-hero > img,
body:has(.detail-hero img[src*="desserts"]) .detail-hero > img,
body:has(.detail-hero img[src*="macarons"]) .detail-hero > img,
body:has(.detail-hero img[src*="macaroons"]) .detail-hero > img {
  object-fit: cover !important;
}

@media (max-width: 900px) {
  #hero .hero-carousel { margin-top: 16px !important; }
  .detail-hero {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 40px 28px 34px !important;
  }
  .detail-hero .container.detail-content,
  .detail-hero > img {
    grid-column: 1 !important;
  }
  .detail-hero .container.detail-content {
    grid-row: 1 !important;
    max-width: 720px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }
  .detail-hero .breadcrumb { justify-content: center !important; }
  .detail-hero p { margin-left: auto !important; margin-right: auto !important; }
  .detail-hero > img {
    grid-row: 2 !important;
    width: min(100%, 720px) !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 560px) {
  #hero .hero-carousel { margin-top: 10px !important; }
  .detail-hero {
    gap: 22px !important;
    padding: 30px 16px 28px !important;
  }
  .detail-hero > img {
    aspect-ratio: 1.42 / 1 !important;
    padding: 7px !important;
    border-radius: 20px !important;
  }
}

/* =========================================================
   FINAL REQUEST — HOME BANNER MATCHES SUB-PRODUCT BANNERS
   and removes the decorative bottom-left curve on inner pages
   ========================================================= */
#hero.hero {
  min-height: 0 !important;
  height: auto !important;
  padding: 48px 0 42px !important;
}

#hero .hero-shell {
  width: min(100% - 48px, 1200px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr) !important;
  gap: clamp(34px, 5vw, 76px) !important;
  align-items: center !important;
}

#hero .hero-carousel {
  margin-top: 26px !important;
  align-self: center !important;
}

#hero .hero-image-frame {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1.5 / 1 !important;
  padding: 10px !important;
  border-radius: 24px !important;
}

#hero .hero-slides {
  border-radius: 16px !important;
}

#hero .hero-controls {
  margin-top: 14px !important;
}

/* Remove the large curved decoration from the bottom-left corner. */
.detail-hero::before {
  display: none !important;
  content: none !important;
}

@media (max-width: 900px) {
  #hero.hero {
    padding: 40px 0 34px !important;
  }
  #hero .hero-shell {
    grid-template-columns: 1fr !important;
    width: min(100% - 56px, 720px) !important;
    gap: 28px !important;
  }
  #hero .hero-carousel {
    margin-top: 0 !important;
  }
}

@media (max-width: 560px) {
  #hero.hero {
    padding: 30px 0 28px !important;
  }
  #hero .hero-shell {
    width: min(100% - 32px, 720px) !important;
    gap: 22px !important;
  }
  #hero .hero-image-frame {
    aspect-ratio: 1.42 / 1 !important;
    padding: 7px !important;
    border-radius: 20px !important;
  }
}


/* Final banner alignment check: keep every banner centred and fully contained */
#hero .hero-image-frame,
#hero .hero-slides,
.detail-hero {
  overflow: hidden !important;
}
#hero .hero-slide,
#hero .hero-slide.active,
.detail-hero > img {
  width: 100% !important;
  height: 100% !important;
  object-position: center center !important;
}
#hero .hero-slide,
#hero .hero-slide.active {
  object-fit: contain !important;
}
.detail-hero > img {
  object-fit: contain !important;
  padding: 10px !important;
  box-sizing: border-box !important;
}
@media (max-width: 768px) {
  .detail-hero > img { padding: 6px !important; }
}


/* =========================================================
   DEFINITIVE RESPONSIVE BANNER FIX
   White-background artwork stays fully visible; photographic
   artwork fills the banner. Mobile headers keep image visible.
   ========================================================= */
#hero .hero-slides,
.detail-hero {
  background: #fff !important;
}

#hero .hero-slide.banner-contain,
.detail-hero.banner-contain > img {
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  padding: 0 !important;
  background: #fff !important;
}

#hero .hero-slide.banner-cover,
.detail-hero.banner-cover > img {
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  padding: 0 !important;
}

/* Inner page header image box */
.detail-hero {
  min-height: 0 !important;
  height: clamp(360px, 36vw, 470px) !important;
  isolation: isolate;
  border-bottom: 1px solid rgba(75, 45, 30, .10);
}
.detail-hero > img {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 0 !important;
}
.detail-hero .detail-overlay {
  z-index: 1 !important;
  background: linear-gradient(90deg,
    rgba(25, 12, 7, .84) 0%,
    rgba(25, 12, 7, .62) 36%,
    rgba(25, 12, 7, .18) 68%,
    rgba(25, 12, 7, .04) 100%) !important;
}
.detail-hero .detail-content {
  z-index: 2 !important;
}

/* White-background banners need a lighter veil so the product remains clear. */
.detail-hero.banner-contain .detail-overlay {
  background: linear-gradient(90deg,
    rgba(32, 17, 10, .86) 0%,
    rgba(32, 17, 10, .62) 34%,
    rgba(32, 17, 10, .12) 62%,
    rgba(32, 17, 10, 0) 100%) !important;
}

@media (max-width: 768px) {
  #hero .hero-image-frame {
    width: 100% !important;
    aspect-ratio: 1.5 / 1 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  .detail-hero {
    height: 430px !important;
    min-height: 430px !important;
    align-items: flex-end !important;
    justify-content: center !important;
    background: #fff !important;
  }
  .detail-hero > img {
    width: 100% !important;
    height: 100% !important;
    object-position: center center !important;
  }
  .detail-hero.banner-contain > img {
    object-fit: contain !important;
  }
  .detail-hero.banner-cover > img {
    object-fit: cover !important;
  }
  .detail-hero .detail-overlay,
  .detail-hero.banner-contain .detail-overlay {
    background: linear-gradient(180deg,
      rgba(24, 12, 7, .02) 0%,
      rgba(24, 12, 7, .08) 36%,
      rgba(24, 12, 7, .72) 72%,
      rgba(24, 12, 7, .94) 100%) !important;
  }
  .detail-hero .container.detail-content {
    width: min(100% - 28px, 680px) !important;
    padding: 0 0 24px !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }
  .detail-hero .breadcrumb {
    justify-content: center !important;
  }
  .detail-hero h1 {
    margin: 2px auto 4px !important;
  }
  .detail-hero .detail-content p {
    max-width: 520px !important;
    margin: 4px auto 12px !important;
    line-height: 1.45 !important;
  }

  /* Mobile sub-product grid: images always load visibly and align evenly. */
  .types-grid,
  .chocolate-subproducts-page .types-grid {
    grid-template-columns: 1fr !important;
    width: min(100%, 520px) !important;
    gap: 18px !important;
  }
  .types-grid .type-card,
  .chocolate-subproducts-page .types-grid .type-card {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }
  .types-grid .type-card > img,
  .chocolate-subproducts-page .types-grid .type-card > img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: 220px !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 8px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #fff !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  #hero .hero-shell {
    width: min(100% - 24px, 720px) !important;
  }
  #hero .hero-image-frame {
    aspect-ratio: 1.38 / 1 !important;
  }
  .detail-hero {
    height: 400px !important;
    min-height: 400px !important;
  }
  .detail-hero .container.detail-content {
    width: min(100% - 22px, 680px) !important;
    padding-bottom: 18px !important;
  }
  .detail-hero .eyebrow {
    font-size: .68rem !important;
    letter-spacing: .12em !important;
  }
  .detail-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important;
  }
  .detail-hero .detail-content p {
    font-size: .84rem !important;
  }
  .types-grid .type-card > img,
  .chocolate-subproducts-page .types-grid .type-card > img {
    height: 205px !important;
  }
}


/* =========================================================
   FINAL REQUESTED BANNER CORRECTIONS
   Restore the original warm banner colour, position the
   Brownies inner-page banner correctly, and keep every inner
   banner completely visible on phones.
   ========================================================= */
#hero.hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(232,197,106,.25), transparent 28%),
    linear-gradient(135deg, #fffaf4 0%, #f8eee1 52%, #f0dfca 100%) !important;
}
#hero .hero-image-frame {
  background: rgba(248,238,225,.82) !important;
}
#hero .hero-slides,
.detail-hero {
  background: #f8eee1 !important;
}

/* Brownies desktop/tablet banner: fill the box and keep the main brownie centred. */
.detail-hero.brownies-detail-banner > img {
  object-fit: cover !important;
  object-position: center 54% !important;
  padding: 0 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  /* Mobile inner banners: show the complete artwork with no cropping. */
  .detail-hero,
  .detail-hero.banner-cover,
  .detail-hero.banner-contain {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 2048 / 1365 !important;
    background: #f8eee1 !important;
    display: grid !important;
    place-items: stretch !important;
  }
  .detail-hero > img,
  .detail-hero.banner-cover > img,
  .detail-hero.banner-contain > img,
  .detail-hero.brownies-detail-banner > img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 0 !important;
    background: #f8eee1 !important;
  }
  .detail-hero .detail-overlay,
  .detail-hero.banner-contain .detail-overlay {
    background: linear-gradient(180deg,
      rgba(24,12,7,0) 0%,
      rgba(24,12,7,.04) 42%,
      rgba(24,12,7,.68) 74%,
      rgba(24,12,7,.90) 100%) !important;
  }
  .detail-hero .container.detail-content {
    align-self: end !important;
    padding-bottom: 16px !important;
  }
}

@media (max-width: 480px) {
  .detail-hero,
  .detail-hero.banner-cover,
  .detail-hero.banner-contain {
    aspect-ratio: 1.36 / 1 !important;
  }
}

/* =========================================================
   HOME HERO IMAGE BOX — EXACTLY MATCH SUB-PRODUCT BANNER BOX
   Final override: keeps the inner-page banner alignment as-is.
   ========================================================= */
#hero .hero-carousel {
  width: 100% !important;
  min-width: 0 !important;
  margin-top: 26px !important;
  align-self: center !important;
}

#hero .hero-image-frame {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1.5 / 1 !important;
  padding: 10px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 1px solid rgba(166,124,31,.18) !important;
  background: #fff !important;
  box-shadow: 0 20px 48px rgba(58,34,24,.14) !important;
}

#hero .hero-slides {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: #fff !important;
}

#hero .hero-slide,
#hero .hero-slide.active,
#hero .hero-slide.banner-contain,
#hero .hero-slide.banner-cover {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff !important;
  transform: none !important;
}

/* Keep the label safely inside the same image area. */
#hero .hero-product-label {
  left: 28px !important;
  right: auto !important;
  bottom: 28px !important;
  max-width: calc(100% - 56px) !important;
}

@media (max-width: 900px) {
  #hero .hero-carousel {
    margin-top: 0 !important;
  }
  #hero .hero-image-frame {
    width: min(100%, 720px) !important;
    margin: 0 auto !important;
    aspect-ratio: 1.5 / 1 !important;
  }
}

@media (max-width: 560px) {
  #hero .hero-image-frame {
    aspect-ratio: 1.42 / 1 !important;
    padding: 7px !important;
    border-radius: 20px !important;
  }
  #hero .hero-slides {
    border-radius: 14px !important;
  }
  #hero .hero-product-label {
    left: 17px !important;
    right: 17px !important;
    bottom: 17px !important;
    max-width: none !important;
  }
}

/* =========================================================
   FINAL MOBILE SUB-PRODUCT GRID IMAGE FIX
   Keeps every product image visible on phones and prevents
   inherited banner/image rules from collapsing the card.
   ========================================================= */
@media screen and (max-width: 768px) {
  main .types-grid,
  main .product-grid.types-grid,
  .chocolate-subproducts-page main .types-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: calc(100% - 28px) !important;
    max-width: 520px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 20px !important;
    overflow: visible !important;
  }

  main .types-grid > .type-card,
  .chocolate-subproducts-page main .types-grid > .type-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    border-radius: 22px !important;
    background: #ffffff !important;
  }

  main .types-grid > .type-card > img,
  .chocolate-subproducts-page main .types-grid > .type-card > img,
  main .types-grid > .type-card img.product-photo-zoom,
  main .types-grid > .type-card img.product-fit-card,
  main .types-grid > .type-card img.brownies-fit-image {
    position: static !important;
    inset: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex: 0 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 230px !important;
    min-height: 230px !important;
    max-height: 230px !important;
    margin: 0 !important;
    padding: 8px !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #ffffff !important;
    border-radius: 0 !important;
    transform: none !important;
    filter: none !important;
    clip: auto !important;
  }

  main .types-grid > .type-card > .type-card-body,
  .chocolate-subproducts-page main .types-grid > .type-card > .type-card-body {
    position: relative !important;
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    padding: 18px !important;
  }
}

@media screen and (max-width: 420px) {
  main .types-grid,
  main .product-grid.types-grid,
  .chocolate-subproducts-page main .types-grid {
    width: calc(100% - 20px) !important;
  }

  main .types-grid > .type-card > img,
  .chocolate-subproducts-page main .types-grid > .type-card > img,
  main .types-grid > .type-card img.product-photo-zoom,
  main .types-grid > .type-card img.product-fit-card,
  main .types-grid > .type-card img.brownies-fit-image {
    height: 215px !important;
    min-height: 215px !important;
    max-height: 215px !important;
    padding: 6px !important;
  }
}

/* =========================================================
   TRUE FINAL MOBILE INNER-BANNER FIX
   Keep heading content and product image as two clear blocks.
   This prevents the banner photo from collapsing into a thin strip.
   ========================================================= */
@media screen and (max-width: 768px) {
  .detail-hero,
  .detail-hero.banner-cover,
  .detail-hero.banner-contain,
  .detail-hero.brownies-detail-banner {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    gap: 22px !important;
    padding: 30px 16px 28px !important;
    overflow: visible !important;
    background:
      radial-gradient(circle at 12% 18%, rgba(232,197,106,.20), transparent 28%),
      linear-gradient(135deg, #fffaf4 0%, #f8eee1 52%, #f0dfca 100%) !important;
  }

  .detail-hero .detail-overlay,
  .detail-hero.banner-cover .detail-overlay,
  .detail-hero.banner-contain .detail-overlay {
    display: none !important;
  }

  .detail-hero .container.detail-content {
    order: 1 !important;
    position: relative !important;
    inset: auto !important;
    align-self: auto !important;
    width: 100% !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    color: var(--choc) !important;
  }

  .detail-hero .breadcrumb {
    justify-content: center !important;
  }

  .detail-hero h1,
  .detail-hero p,
  .detail-hero .breadcrumb,
  .detail-hero .breadcrumb a,
  .detail-hero .breadcrumb span {
    color: var(--choc) !important;
    text-shadow: none !important;
  }

  .detail-hero > img,
  .detail-hero.banner-cover > img,
  .detail-hero.banner-contain > img,
  .detail-hero.brownies-detail-banner > img {
    order: 2 !important;
    position: relative !important;
    inset: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: min(100%, 680px) !important;
    height: auto !important;
    min-height: 220px !important;
    max-height: none !important;
    aspect-ratio: 1.5 / 1 !important;
    margin: 0 auto !important;
    padding: 7px !important;
    object-fit: cover !important;
    object-position: center center !important;
    border: 1px solid rgba(166,124,31,.18) !important;
    border-radius: 20px !important;
    background: #fff !important;
    box-shadow: 0 14px 34px rgba(58,34,24,.12) !important;
    transform: none !important;
    z-index: auto !important;
    box-sizing: border-box !important;
  }

  .detail-hero.banner-contain > img {
    object-fit: contain !important;
  }
}

@media screen and (max-width: 420px) {
  .detail-hero,
  .detail-hero.banner-cover,
  .detail-hero.banner-contain,
  .detail-hero.brownies-detail-banner {
    padding: 26px 12px 24px !important;
    gap: 18px !important;
  }

  .detail-hero > img,
  .detail-hero.banner-cover > img,
  .detail-hero.banner-contain > img,
  .detail-hero.brownies-detail-banner > img {
    min-height: 205px !important;
    aspect-ratio: 1.38 / 1 !important;
    padding: 5px !important;
    border-radius: 17px !important;
  }
}

/* =========================================================
   FINAL HOME CAROUSEL ARROW POSITION
   Match the approved sub-product banner frame and place the
   previous/next arrows at the vertical centre of each side.
   ========================================================= */
#hero .hero-carousel {
  position: relative !important;
  width: 100% !important;
}

#hero .hero-controls {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  pointer-events: none !important;
  z-index: 20 !important;
}

#hero .hero-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin: 0 !important;
  pointer-events: auto !important;
  z-index: 22 !important;
  width: 46px !important;
  height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

#hero .hero-arrow-prev {
  left: 18px !important;
  right: auto !important;
}

#hero .hero-arrow-next {
  right: 18px !important;
  left: auto !important;
}

#hero .hero-dots {
  position: absolute !important;
  left: 50% !important;
  bottom: 16px !important;
  transform: translateX(-50%) !important;
  margin: 0 !important;
  pointer-events: auto !important;
  z-index: 21 !important;
  background: rgba(255,255,255,.88) !important;
  border-radius: 999px !important;
  padding: 9px 13px !important;
  box-shadow: 0 7px 20px rgba(47,28,18,.12) !important;
}

@media (max-width: 768px) {
  #hero .hero-arrow {
    width: 40px !important;
    height: 40px !important;
  }
  #hero .hero-arrow-prev { left: 10px !important; }
  #hero .hero-arrow-next { right: 10px !important; }
  #hero .hero-dots {
    bottom: 10px !important;
    padding: 7px 10px !important;
  }
}

/* =========================================================
   FINAL HOME HERO NAVIGATION LAYOUT
   Arrows stay OUTSIDE the image box. The previous arrow sits
   after the changing content; the next arrow sits after the
   image area. Text and image continue changing together.
   ========================================================= */
#hero .hero-shell {
  display: grid !important;
  grid-template-columns: minmax(300px, .88fr) 52px minmax(480px, 1.12fr) 52px !important;
  align-items: center !important;
  column-gap: 14px !important;
}

#hero .container.hero-content {
  grid-column: 1 !important;
  min-width: 0 !important;
}

#hero .hero-arrow-outside {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: 46px !important;
  height: 46px !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  justify-self: center !important;
  align-self: center !important;
  pointer-events: auto !important;
  z-index: 25 !important;
  background: rgba(255,255,255,.94) !important;
  border: 1px solid rgba(166,124,31,.22) !important;
  border-radius: 50% !important;
  box-shadow: 0 8px 22px rgba(47,28,18,.14) !important;
}

#hero .hero-arrow-prev { grid-column: 2 !important; }
#hero .hero-carousel { grid-column: 3 !important; position: relative !important; width: 100% !important; }
#hero .hero-arrow-next { grid-column: 4 !important; }

#hero .hero-dots {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: max-content !important;
  margin: 14px auto 0 !important;
  display: flex !important;
  pointer-events: auto !important;
}

/* Remove the old full-carousel controls overlay completely. */
#hero .hero-controls { display: none !important; }

@media (max-width: 1100px) {
  #hero .hero-shell {
    grid-template-columns: minmax(260px, .9fr) 46px minmax(390px, 1.1fr) 46px !important;
    column-gap: 10px !important;
  }
  #hero .hero-arrow-outside { width: 42px !important; height: 42px !important; }
}

@media (max-width: 900px) {
  #hero .hero-shell {
    grid-template-columns: 46px minmax(0, 1fr) 46px !important;
    row-gap: 24px !important;
  }
  #hero .container.hero-content {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
  }
  #hero .hero-arrow-prev {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  #hero .hero-carousel {
    grid-column: 2 !important;
    grid-row: 2 !important;
    min-width: 0 !important;
  }
  #hero .hero-arrow-next {
    grid-column: 3 !important;
    grid-row: 2 !important;
  }
}

@media (max-width: 560px) {
  #hero .hero-shell {
    width: min(100% - 20px, 1200px) !important;
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
    column-gap: 6px !important;
  }
  #hero .hero-arrow-outside {
    width: 36px !important;
    height: 36px !important;
  }
  #hero .hero-arrow-outside svg {
    width: 20px !important;
    height: 20px !important;
  }
  #hero .hero-dots {
    margin-top: 10px !important;
    padding: 7px 9px !important;
  }
}

/* =========================================================
   FINAL REQUEST — HOME BANNER MATCHES SUB-PRODUCT BANNER SIZE
   Text | left arrow | image box | right arrow
   ========================================================= */
#hero .hero-shell {
  width: 100% !important;
  max-width: none !important;
  padding-left: max(24px, calc((100vw - 1200px) / 2)) !important;
  padding-right: max(24px, calc((100vw - 1200px) / 2)) !important;
  box-sizing: border-box !important;
  grid-template-columns: minmax(0, 1fr) 52px minmax(380px, .92fr) 52px !important;
  gap: 0 14px !important;
  align-items: center !important;
}

#hero .container.hero-content {
  width: 100% !important;
  max-width: 620px !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: start !important;
}

/* Left arrow is immediately after the content column. */
#hero .hero-arrow-prev {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
}

/* Home image box uses the exact sub-product banner proportions. */
#hero .hero-carousel {
  grid-column: 3 !important;
  width: 100% !important;
  margin-top: 26px !important;
  align-self: center !important;
}

#hero .hero-image-frame {
  width: 100% !important;
  aspect-ratio: 1.5 / 1 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 10px !important;
  border-radius: 24px !important;
  border: 1px solid rgba(166,124,31,.18) !important;
  background: #fff !important;
  box-shadow: 0 20px 48px rgba(58,34,24,.14) !important;
}

#hero .hero-arrow-next {
  grid-column: 4 !important;
  justify-self: center !important;
  align-self: center !important;
}

@media (max-width: 900px) {
  #hero .hero-shell {
    padding-left: 28px !important;
    padding-right: 28px !important;
    grid-template-columns: 46px minmax(0, 1fr) 46px !important;
    row-gap: 24px !important;
  }
  #hero .container.hero-content {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    max-width: 720px !important;
    justify-self: center !important;
  }
  #hero .hero-arrow-prev { grid-column: 1 !important; grid-row: 2 !important; }
  #hero .hero-carousel {
    grid-column: 2 !important;
    grid-row: 2 !important;
    width: 100% !important;
    max-width: 720px !important;
    margin: 0 auto !important;
  }
  #hero .hero-arrow-next { grid-column: 3 !important; grid-row: 2 !important; }
}

@media (max-width: 560px) {
  #hero .hero-shell {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
    column-gap: 6px !important;
  }
  #hero .hero-image-frame {
    aspect-ratio: 1.42 / 1 !important;
    padding: 7px !important;
    border-radius: 20px !important;
  }
}

/* Final requested carousel controls: arrows on the far left/right of the image; dots removed. */
#hero .hero-dots { display: none !important; }
#hero .hero-image-frame { position: relative !important; }
#hero .hero-image-frame > .hero-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}
#hero .hero-image-frame > .hero-arrow-prev { left: 12px !important; }
#hero .hero-image-frame > .hero-arrow-next { right: 12px !important; }
@media (max-width: 560px) {
  #hero .hero-image-frame > .hero-arrow-prev { left: 8px !important; }
  #hero .hero-image-frame > .hero-arrow-next { right: 8px !important; }
}


/* =========================================================
   FINAL FIX — carousel arrows at the full image-banner edges
   ========================================================= */
#hero .hero-shell {
  grid-template-columns: minmax(0, 1fr) minmax(380px, .92fr) !important;
  column-gap: 28px !important;
}
#hero .container.hero-content { grid-column: 1 !important; }
#hero .hero-carousel { grid-column: 2 !important; position: relative !important; }
#hero .hero-image-frame { position: relative !important; overflow: hidden !important; }
#hero .hero-image-frame > .hero-arrow,
#hero .hero-arrow-outside {
  position: absolute !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  z-index: 40 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.96) !important;
  border: 1px solid rgba(166,124,31,.28) !important;
  border-radius: 50% !important;
  box-shadow: 0 8px 22px rgba(47,28,18,.18) !important;
}
#hero .hero-image-frame > .hero-arrow-prev,
#hero .hero-arrow-prev { left: 10px !important; right: auto !important; }
#hero .hero-image-frame > .hero-arrow-next,
#hero .hero-arrow-next { right: 10px !important; left: auto !important; }
#hero .hero-dots,
#hero .hero-controls { display: none !important; }

@media (max-width: 900px) {
  #hero .hero-shell {
    grid-template-columns: 1fr !important;
    row-gap: 24px !important;
  }
  #hero .container.hero-content {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  #hero .hero-carousel {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
}

@media (max-width: 560px) {
  #hero .hero-image-frame > .hero-arrow,
  #hero .hero-arrow-outside {
    width: 36px !important;
    height: 36px !important;
  }
  #hero .hero-image-frame > .hero-arrow-prev,
  #hero .hero-arrow-prev { left: 6px !important; }
  #hero .hero-image-frame > .hero-arrow-next,
  #hero .hero-arrow-next { right: 6px !important; }
}


/* =========================================================
   USER REQUEST — arrows outside banner image + selected zooms
   ========================================================= */
#hero .hero-carousel {
  position: relative !important;
  overflow: visible !important;
}
#hero .hero-image-frame {
  overflow: hidden !important;
}
#hero .hero-carousel > .hero-arrow-outside {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 50 !important;
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(255,255,255,.98) !important;
  border: 1px solid rgba(166,124,31,.28) !important;
  border-radius: 50% !important;
  box-shadow: 0 8px 22px rgba(47,28,18,.18) !important;
}
#hero .hero-carousel > .hero-arrow-prev {
  left: -58px !important;
  right: auto !important;
}
#hero .hero-carousel > .hero-arrow-next {
  right: -58px !important;
  left: auto !important;
}

/* Slight zoom only for the four requested sub-product images. */
.type-card > img.requested-product-zoom {
  transform: scale(1.10) !important;
  transform-origin: center center !important;
}
.type-card {
  overflow: hidden !important;
}

@media (max-width: 900px) {
  #hero .hero-carousel {
    width: calc(100% - 108px) !important;
    max-width: 720px !important;
  }
  #hero .hero-carousel > .hero-arrow-prev { left: -54px !important; }
  #hero .hero-carousel > .hero-arrow-next { right: -54px !important; }
}
@media (max-width: 560px) {
  #hero .hero-carousel {
    width: calc(100% - 84px) !important;
  }
  #hero .hero-carousel > .hero-arrow-outside {
    width: 36px !important;
    height: 36px !important;
  }
  #hero .hero-carousel > .hero-arrow-prev { left: -42px !important; }
  #hero .hero-carousel > .hero-arrow-next { right: -42px !important; }
  .type-card > img.requested-product-zoom {
    transform: scale(1.08) !important;
  }
}


/* =========================================================
   FINAL CORRECTION — working outside arrows, no image zoom
   ========================================================= */
#hero .hero-shell,
#hero .hero-carousel,
#hero .hero-content { overflow: visible !important; }

#hero .hero-carousel > .hero-arrow-outside {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 999 !important;
}

#hero .hero-carousel > .hero-arrow-prev {
  left: -58px !important;
  right: auto !important;
}

#hero .hero-carousel > .hero-arrow-next {
  right: -58px !important;
  left: auto !important;
}

/* Keep selected product photos at their natural size and centre them neatly. */
.type-card > img.requested-product-fit {
  transform: none !important;
  scale: 1 !important;
  object-fit: contain !important;
  object-position: center center !important;
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 900px) {
  #hero .hero-carousel > .hero-arrow-prev { left: -52px !important; }
  #hero .hero-carousel > .hero-arrow-next { right: -52px !important; }
}

@media (max-width: 560px) {
  #hero .hero-carousel > .hero-arrow-prev { left: -40px !important; }
  #hero .hero-carousel > .hero-arrow-next { right: -40px !important; }
}

/* FINAL LEFT-ARROW CLICK FIX
   Keep the previous button in the gap indicated by the user and above
   every hero text/image layer so the full circular button is clickable. */
#hero .hero-carousel {
  position: relative !important;
  z-index: 30 !important;
  isolation: isolate;
}

#hero .hero-content {
  position: relative !important;
  z-index: 10 !important;
}

#hero .hero-carousel > .hero-arrow-prev {
  z-index: 2147483647 !important;
  pointer-events: auto !important;
  touch-action: manipulation;
}

#hero .hero-carousel > .hero-arrow-prev,
#hero .hero-carousel > .hero-arrow-prev * {
  pointer-events: auto !important;
}

/* Final adjustment: center all sub-product names */
.types-grid .type-card-body h3,
.chocolate-subproducts-page .types-grid .type-card-body h3 {
  width: 100% !important;
  text-align: center !important;
}

/* =========================================================
   MOBILE HOME HERO — hide featured label and enlarge image
   ========================================================= */
@media (max-width: 560px) {
  #hero .hero-product-label {
    display: none !important;
  }

  #hero .hero-carousel {
    width: calc(100% - 64px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #hero .hero-image-frame {
    width: 100% !important;
    height: auto !important;
    min-height: 300px !important;
    aspect-ratio: 1.18 / 1 !important;
    padding: 4px !important;
  }

  #hero .hero-slides {
    width: 100% !important;
    height: 100% !important;
  }

  #hero .hero-slide,
  #hero .hero-slide.active,
  #hero .hero-slide.banner-contain,
  #hero .hero-slide.banner-cover {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  #hero .hero-carousel > .hero-arrow-prev {
    left: -32px !important;
  }

  #hero .hero-carousel > .hero-arrow-next {
    right: -32px !important;
  }
}


/* =========================================================
   FINAL MOBILE BANNER ALIGNMENT + INSTANT ARROW CHANGES
   ========================================================= */
/* Clicking either arrow must switch immediately, without the
   temporary fade/hide effect on desktop or mobile. */
#hero .hero-slide,
#hero .hero-slide.active,
#hero .hero-slide.is-leaving {
  transition: none !important;
  animation: none !important;
}

@media (max-width: 560px) {
  #hero .hero-shell {
    width: calc(100% - 20px) !important;
    max-width: 540px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  #hero .hero-carousel {
    width: calc(100% - 76px) !important;
    max-width: 430px !important;
    margin: 0 auto !important;
    align-self: center !important;
  }

  #hero .hero-image-frame {
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1.34 / 1 !important;
    padding: 5px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  #hero .hero-slides {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
  }

  #hero .hero-slide,
  #hero .hero-slide.active {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }

  #hero .hero-carousel > .hero-arrow-prev {
    left: -38px !important;
  }

  #hero .hero-carousel > .hero-arrow-next {
    right: -38px !important;
  }
}
