/* The Canine Club Bakery additions (September 2026).
   Loaded by every mirrored page after the Framer CSS. Uses the site's own
   Satoshi faces and colour tokens; the only new colours are the bakery's
   coral, navy, cream and sand from canineclubbakery.co.za. */

body {
  --ccb-coral: #d0737e;
  --ccb-coral-deep: #b0505e;
  --ccb-navy: #0f1a42;
  --ccb-cream: #fbf7f2;
  --ccb-sand: #eadfd3;
  --ccb-ink: var(--token-1d3eed3f-60b2-4eeb-8b1b-2d0206799803, #262626);
  --ccb-grey: var(--token-62e0062c-439a-4902-9307-537f7efd3041, #575757);
  --ccb-blue: var(--token-4a7ef8df-eb88-4bbf-baca-0e6668017446, #1e247b);
  --ccb-line: var(--token-65db872c-0c0a-4902-9970-3cf5b7324938, rgba(30, 36, 123, 0.15));
  --ccb-font: "Satoshi", "Satoshi Placeholder", sans-serif;
}

/* ---- Injected "Bakery" link in the navbar and footer ---------------- */
.framer-C6xZX .ccb-nav,
.framer-lkR0l .ccb-nav {
  flex: none;
  width: auto;
  height: auto;
  position: relative;
}
/* Phone menu: Contact Us is order 10 and last in the DOM, so order 10 here lands just before it. */
.framer-C6xZX.framer-v-1d2q16j .ccb-nav { order: 10; }
.ccb-nav a { text-decoration: none; }
.ccb-nav .framer-text { transition: color 0.2s ease; }
.ccb-nav a:hover .framer-text { --framer-text-color: var(--ccb-blue); }

/* Tablet (810-1199px): the Framer navbar keeps a fixed 250px logo column and
   80px side padding, which already clips the four links below ~985px. With a
   fifth link, loosen the row so all five fit down to 810px. */
@media (min-width: 810px) and (max-width: 1199.98px) {
  .framer-C6xZX:has(.ccb-nav) .framer-e2emn2 { padding: 0 32px; gap: 24px; }
  .framer-C6xZX:has(.ccb-nav) .framer-8tbr3v { width: auto; }
  .framer-C6xZX .framer-hcta0j:has(> .ccb-nav) { gap: 24px; }
}

/* ---- Bakery block on the home and services pages -------------------- */
.ccb-section {
  /* Inserted after hydration, below the fold: skip its layout until it is
     near the viewport so the insertion costs one box, not a page reflow. */
  content-visibility: auto;
  contain-intrinsic-size: auto 560px;
  width: 100%;
  background: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #fff);
  display: flex;
  justify-content: center;
  padding: 0 32px 64px;
  box-sizing: border-box;
  font-family: var(--ccb-font);
  position: relative;
  -webkit-font-smoothing: antialiased;
}
.ccb-section * { box-sizing: border-box; }
.ccb-card {
  width: 100%;
  max-width: 1216px;
  background: var(--ccb-cream);
  border: 1px solid var(--ccb-sand);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.ccb-logo {
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 26, 66, 0.08);
}
.ccb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--ccb-line);
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ccb-grey);
}
.ccb-pill svg { width: 14px; height: 14px; color: var(--ccb-coral); }
.ccb-h2 {
  margin: 16px 0 8px;
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--ccb-ink);
}
.ccb-h2 em { font-style: normal; color: var(--ccb-coral-deep); }
.ccb-lead {
  margin: 0;
  max-width: 600px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ccb-grey);
}
.ccb-lines {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ccb-lines li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--ccb-sand);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ccb-ink);
}
.ccb-lines svg { width: 18px; height: 18px; color: var(--ccb-coral); flex: none; }
.ccb-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
  margin-top: 28px;
}
.ccb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 10px;
  background: var(--ccb-blue);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ccb-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(30, 36, 123, 0.25); }
.ccb-btn svg { width: 16px; height: 16px; }
.ccb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ccb-grey);
  text-decoration: none;
  transition: color 0.2s ease;
}
.ccb-link:hover { color: var(--ccb-blue); }
.ccb-link svg { width: 20px; height: 20px; }
.ccb-note { margin: 16px 0 0; font-size: 14px; line-height: 1.5; color: var(--ccb-grey); }
.ccb-note .ccb-link { font-size: inherit; }

@media (max-width: 809.98px) {
  .ccb-section { padding: 0 16px 48px; }
  .ccb-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px;
    text-align: center;
    justify-items: center;
  }
  .ccb-logo { width: 150px; height: 150px; }
  .ccb-h2 { font-size: 30px; letter-spacing: -0.02em; }
  .ccb-lines, .ccb-actions { justify-content: center; }
}
@media (min-width: 810px) and (max-width: 1199.98px) {
  .ccb-card { padding: 40px; gap: 40px; }
  .ccb-logo { width: 170px; height: 170px; }
}
