/* ── Tokens ────────────────────────────────────────────────── */
    :root {
      /* Brand palette — extracted from logo swatches */
      --cream:        #FBF8EF;
      --cream-dark:   #F2ECDF;
      --brown:        #3D2414;
      --brown-mid:    #6B4226;
      --brown-light:  #C4A882;
      --taupe:        #D9CEBC;

      /* Flavor colours */
      --cheese:       #E8C547;
      --cheese-light: #FDF6D3;
      --pb:           #D4813A;
      --pb-light:     #FAEADE;
      --berry:        #6E9FC5;
      --berry-light:  #DFF0FA;
      --apple:        #8B9E6A;
      --apple-light:  #EBF0E0;

      --white: #ffffff;

      /* Type */
      --serif: 'Playfair Display', Georgia, serif;
      --sans:  'Lato', system-ui, sans-serif;

      --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ── Reset ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; scroll-padding-top: 72px; }
    body {
      font-family: var(--sans);
      background: var(--cream);
      color: var(--brown);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      padding-top: 72px; /* reserve space for fixed nav */
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ── Utility ───────────────────────────────────────────────── */
    .container {
      width: min(1120px, 100% - 48px);
      margin-inline: auto;
    }
    .section-label {
      font-family: var(--sans);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brown-light);
      margin-bottom: 12px;
    }
    .section-heading {
      font-family: var(--serif);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 700;
      line-height: 1.2;
      color: var(--brown);
    }
    .section-heading em {
      font-style: italic;
      color: var(--pb);
    }
    .divider {
      width: 56px;
      height: 3px;
      border-radius: 4px;
      background: var(--brown-light);
      margin: 20px auto 0;
    }

    /* ── Navigation ────────────────────────────────────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(251, 248, 239, 0.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    }
    .nav.scrolled {
      background: rgba(251, 248, 239, 0.96);
      border-bottom-color: var(--taupe);
      box-shadow: 0 4px 18px rgba(61, 36, 20, 0.06);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      transition: height 0.25s var(--ease);
    }
    .nav.scrolled .nav-inner { height: 56px; }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .nav-paw {
      width: 52px;
      height: 52px;
      flex-shrink: 0;
      transition: width 0.25s var(--ease), height 0.25s var(--ease);
    }
    .nav.scrolled .nav-paw { width: 40px; height: 40px; }
    .nav.scrolled .nav-logo-name { font-size: 16px; }
    .nav-logo-tagline {
      max-height: 14px;
      opacity: 1;
      overflow: hidden;
      transition: max-height 0.25s var(--ease), opacity 0.2s var(--ease), margin-top 0.25s var(--ease);
    }
    .nav.scrolled .nav-logo-tagline {
      max-height: 0;
      opacity: 0;
      margin-top: 0;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }
    .nav-logo-name {
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 700;
      color: var(--brown);
      transition: font-size 0.25s var(--ease);
    }
    .nav-logo-tagline {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--brown-light);
      margin-top: 3px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links a {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--brown-mid);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--brown); }
    .nav-cta {
      background: var(--brown);
      color: var(--cream) !important;
      padding: 10px 22px;
      border-radius: 8px;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--brown-mid) !important;
      transform: translateY(-1px);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--brown);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    /* ── Hero ──────────────────────────────────────────────────── */
    .hero {
      position: relative;
      background: transparent; /* parchment flows through */
      overflow: hidden;
      padding: 80px 0 100px;
    }

    /* Decorative floral watermark rings */
    .hero-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid var(--taupe);
      opacity: 0.5;
      pointer-events: none;
    }
    .hero-ring-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
    .hero-ring-2 { width: 400px; height: 400px; top: -100px; right: -50px;  opacity: 0.35; }
    .hero-ring-3 { width: 320px; height: 320px; bottom: -100px; left: -80px; }

    /* Flavour colour blobs */
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.18;
      pointer-events: none;
    }
    .hero-blob-1 { width: 420px; height: 420px; top: -60px;  right: 10%;  background: var(--cheese); }
    .hero-blob-2 { width: 320px; height: 320px; bottom: 20px; left: 5%;   background: var(--berry);  opacity: 0.12; }
    .hero-blob-3 { width: 280px; height: 280px; bottom: -40px; right: 20%; background: var(--apple); opacity: 0.14; }

    .hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 60px;
    }

    .hero-content { position: relative; z-index: 3; } /* above the label halo */
    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--apple-light);
      border: 1px solid rgba(139,158,106,0.35);
      color: var(--apple);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 999px;
      margin-bottom: 24px;
    }
    .hero-eyebrow::before { content: '🐾'; font-size: 13px; }

    .hero-title {
      font-family: var(--serif);
      font-size: clamp(38px, 5.5vw, 68px);
      font-weight: 800;
      line-height: 1.08;
      color: var(--brown);
      margin-bottom: 24px;
    }
    .hero-title em {
      font-style: italic;
      color: var(--pb);
      display: block;
    }

    .hero-sub {
      font-size: 17px;
      line-height: 1.75;
      color: var(--brown-mid);
      max-width: 460px;
      margin-bottom: 40px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--brown);
      color: var(--cream);
      font-family: var(--sans);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.03em;
      padding: 14px 30px;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 14px rgba(61,36,20,0.2);
    }
    .btn-primary:hover {
      background: var(--brown-mid);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(61,36,20,0.28);
    }
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 15px;
      font-weight: 700;
      color: var(--brown-mid);
      border-bottom: 2px solid var(--brown-light);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
    }
    .btn-secondary:hover { color: var(--brown); border-color: var(--brown); }

    /* Trust badges row */
    .hero-badges {
      display: flex;
      align-items: center;
      gap: 24px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      color: var(--brown-mid);
    }
    .badge-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--cream-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    /* Hero image */
    .hero-image-wrap {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* Soft pool attached to the label itself — a halo in the PNG's own
       background colour (#F6F6EE) that finishes fading well inside its own
       box, so it can never be clipped by a section boundary. */
    .hero-image-wrap::before {
      content: "";
      position: absolute;
      inset: -38%;
      z-index: -1;
      background: radial-gradient(ellipse 50% 50% at 50% 50%,
        #F6F6EE 0%, #F6F6EE 72%, rgba(246,246,238,0) 94%);
      pointer-events: none;
    }
    .hero-logo-ring {
      width: min(520px, 92%);
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      animation: float 5s ease-in-out infinite;
      /* Very thin rectangular edge feather (outermost ~2% only) — softens
         the PNG's square edge without cropping ANY artwork. The white pool
         behind the label matches its background, so the seam disappears. */
      -webkit-mask-image:
        linear-gradient(to right,  transparent 0%, black 2%, black 98%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
      -webkit-mask-composite: source-in;
      mask-image:
        linear-gradient(to right,  transparent 0%, black 2%, black 98%, transparent 100%),
        linear-gradient(to bottom, transparent 0%, black 2%, black 98%, transparent 100%);
      mask-composite: intersect;
    }
    .hero-logo-ring img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0);    }
      50%       { transform: translateY(-14px); }
    }

    /* ── Pawprint Divider ──────────────────────────────────────── */
    .paw-divider {
      position: relative;
      height: 110px;
      background: transparent; /* let the parchment flow through */
    }
    .paw-track {
      position: absolute;
      inset: 0;
    }
    .paw-stamp {
      position: absolute;
      opacity: 0;
      transform-origin: center center;
      pointer-events: none;
    }

    /* ── About / Story ─────────────────────────────────────────── */
    .about {
      padding: 100px 0;
      background: transparent; /* parchment flows through */
    }
    .about-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-image {
      position: relative;
    }
    .about-img-frame {
      background: transparent;
      border-radius: 0;
      box-shadow: none;
      overflow: visible;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-img-frame img {
      width: 100%;
      object-fit: contain;
      mix-blend-mode: multiply;
      /* Fade edges so the illustration dissolves into the cream page */
      -webkit-mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 35%, rgba(0,0,0,0.7) 55%, transparent 76%);
      mask-image: radial-gradient(ellipse 72% 72% at 50% 50%, black 35%, rgba(0,0,0,0.7) 55%, transparent 76%);
    }
    /* Decorative colour accent card */
    .about-accent-card {
      position: absolute;
      bottom: -28px;
      right: -28px;
      background: var(--cheese);
      border-radius: 16px;
      padding: 20px 24px;
      box-shadow: 0 8px 24px rgba(61,36,20,0.15);
      text-align: center;
    }
    .about-accent-number {
      font-family: var(--serif);
      font-size: 36px;
      font-weight: 800;
      color: var(--brown);
      line-height: 1;
    }
    .about-accent-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--brown);
      opacity: 0.8;
      margin-top: 4px;
    }

    .about-content { }
    .about-content .section-label { text-align: left; }
    .about-content .section-heading { text-align: left; }
    .about-content .divider { margin-left: 0; }

    .about-text {
      margin-top: 28px;
      font-size: 16px;
      line-height: 1.85;
      color: var(--brown-mid);
    }
    .about-text + .about-text { margin-top: 16px; }

    .about-list {
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .about-list-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--brown-mid);
      line-height: 1.5;
    }
    .check-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--apple-light);
      color: var(--apple);
      font-size: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
      font-weight: 900;
    }

    /* ── Products / Treats ─────────────────────────────────────── */
    .treats {
      padding: 100px 0;
      background: transparent; /* parchment flows through */
    }
    .treats-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .treats-header .divider { margin: 20px auto 0; }

    .treats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .treat-card {
      border-radius: 20px;
      overflow: hidden;
      background: var(--white);
      box-shadow: 0 4px 20px rgba(61,36,20,0.08);
      transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
      cursor: default;
    }
    .treat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(61,36,20,0.14);
    }
    .treat-card-top {
      height: 160px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 64px;
      position: relative;
      overflow: hidden;
    }
    .treat-card-top::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 50%, rgba(255,255,255,0.3));
    }
    .treat-card.cheese .treat-card-top  { background: linear-gradient(135deg, var(--cheese-light), #f5e07a); }
    .treat-card.pb     .treat-card-top  { background: linear-gradient(135deg, var(--pb-light), #f5c89a); }
    .treat-card.berry  .treat-card-top  { background: linear-gradient(135deg, var(--berry-light), #aed3ef); }
    .treat-card.apple  .treat-card-top  { background: linear-gradient(135deg, var(--apple-light), #c8d9a0); }

    .treat-card-body { padding: 24px 22px 28px; }
    .treat-flavour-tag {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 12px;
    }
    .treat-card.cheese .treat-flavour-tag { background: var(--cheese-light); color: #7a6500; }
    .treat-card.pb     .treat-flavour-tag { background: var(--pb-light);     color: #8a4500; }
    .treat-card.berry  .treat-flavour-tag { background: var(--berry-light);  color: #1e5a80; }
    .treat-card.berry  .treat-flavour-tag.tag-carrot { background: var(--pb-light); color: #8a4500; }
    .treat-card.apple  .treat-flavour-tag { background: var(--apple-light);  color: #3d5520; }

    .treat-name {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 10px;
    }
    .treat-desc {
      font-size: 13px;
      line-height: 1.7;
      color: var(--brown-mid);
      margin-bottom: 16px;
    }
    .treat-ingredients {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .treat-ing-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 10px 3px 7px;
      border-radius: 6px;
      background: var(--cream);
      color: var(--brown-mid);
    }
    .treat-ing-tag svg { flex-shrink: 0; }

    /* ── Ingredients / Why Natural ─────────────────────────────── */
    .why {
      padding: 100px 0;
      background: var(--brown);
      position: relative;
      overflow: hidden;
    }
    .why::before {
      content: '🐾';
      position: absolute;
      font-size: 280px;
      opacity: 0.04;
      top: -20px;
      right: -40px;
      line-height: 1;
      pointer-events: none;
    }

    .why-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .why-content .section-label { color: var(--brown-light); text-align: left; }
    .why-content .section-heading { color: var(--cream); text-align: left; }
    .why-content .section-heading em { color: var(--cheese); }
    .why-content .divider { background: var(--brown-light); margin-left: 0; }

    .why-text {
      margin-top: 28px;
      font-size: 16px;
      line-height: 1.85;
      color: var(--taupe);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 36px;
    }
    .why-item {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 16px;
      padding: 22px 20px;
      transition: background 0.2s;
    }
    .why-item:hover { background: rgba(255,255,255,0.09); }
    .why-item-icon { font-size: 28px; margin-bottom: 10px; }
    .why-item-title {
      font-family: var(--serif);
      font-size: 16px;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 6px;
    }
    .why-item-text {
      font-size: 13px;
      line-height: 1.65;
      color: var(--taupe);
    }

    .why-ingredients {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .ing-row {
      display: flex;
      align-items: center;
      gap: 16px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 14px;
      padding: 16px 20px;
    }
    .ing-emoji { font-size: 30px; flex-shrink: 0; }
    .ing-info { }
    .ing-name {
      font-family: var(--serif);
      font-size: 16px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 3px;
    }
    .ing-desc {
      font-size: 12px;
      line-height: 1.5;
      color: var(--taupe);
    }
    .ing-swatch {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-left: auto;
    }

    /* ── Testimonials ──────────────────────────────────────────── */
    .testimonials {
      padding: 100px 0;
      background: var(--cream-dark);
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .testimonials-header .divider { margin: 20px auto 0; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: 20px;
      padding: 32px 28px;
      box-shadow: 0 4px 20px rgba(61,36,20,0.07);
      transition: transform 0.25s var(--ease);
    }
    .testimonial-card:hover { transform: translateY(-4px); }
    .testimonial-stars { font-size: 16px; color: var(--cheese); margin-bottom: 16px; letter-spacing: 2px; }
    .testimonial-text {
      font-size: 15px;
      line-height: 1.8;
      color: var(--brown-mid);
      font-style: italic;
      margin-bottom: 24px;
    }
    .testimonial-text::before { content: '\201C'; }
    .testimonial-text::after  { content: '\201D'; }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }
    .av-cheese { background: var(--cheese); color: var(--brown) !important; }
    .av-pb     { background: var(--pb); }
    .av-berry  { background: var(--berry); }
    .testimonial-name {
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 700;
      color: var(--brown);
    }
    .testimonial-dog {
      font-size: 12px;
      color: var(--brown-light);
      margin-top: 2px;
    }

    /* ── Order CTA ─────────────────────────────────────────────── */
    .order-cta {
      padding: 100px 0;
      background: transparent; /* parchment flows through */
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .order-cta::before {
      content: '';
      position: absolute;
      top: -120px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,197,71,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .order-cta-inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
    .order-cta .section-heading { margin-top: 12px; }
    .order-cta-sub {
      margin-top: 16px;
      font-size: 17px;
      line-height: 1.75;
      color: var(--brown-mid);
    }
    .order-cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
      flex-wrap: wrap;
    }
    .order-note {
      margin-top: 20px;
      font-size: 13px;
      color: var(--brown-light);
    }

    /* Flavour preview row */
    .flavour-preview {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .flavour-chip {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 2px 10px rgba(61,36,20,0.1);
    }
    .flavour-chip.cheese { background: var(--cheese); color: var(--brown); }
    .flavour-chip.pb     { background: var(--pb);     color: #fff; }
    .flavour-chip.berry  { background: var(--berry);  color: #fff; }
    .flavour-chip.apple  { background: var(--apple);  color: #fff; }

    /* ── Footer ────────────────────────────────────────────────── */
    .footer {
      background: var(--brown);
      color: var(--taupe);
      padding: 60px 0 32px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand img {
      width: 64px;
      height: 64px;
      object-fit: contain;
      filter: brightness(0.9);
      margin-bottom: 16px;
    }
    .footer-brand-name {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 8px;
    }
    .footer-brand-desc {
      font-size: 13px;
      line-height: 1.7;
      color: var(--taupe);
      max-width: 220px;
    }
    .footer-socials {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .social-btn {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      transition: background 0.2s;
      cursor: pointer;
    }
    .social-btn:hover { background: rgba(255,255,255,0.14); }

    .footer-col-title {
      font-family: var(--serif);
      font-size: 15px;
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 18px;
    }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 13px;
      color: var(--taupe);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--cream); }

    .footer-bottom {
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-copy { font-size: 12px; color: rgba(196,168,130,0.6); }
    .footer-made { font-size: 12px; color: rgba(196,168,130,0.6); }
    .footer-made span { color: var(--pb); }

    /* ══════════════════════════════════════════════════════════════
       SHOP & CART
    ══════════════════════════════════════════════════════════════ */

    /* ── Product shop controls on treat cards ─────────────────────── */
    .product-shop {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--cream-dark);
    }
    .size-select {
      width: 100%;
      padding: 9px 14px;
      border: 1.5px solid var(--taupe);
      border-radius: 8px;
      background: var(--cream);
      color: var(--brown);
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      margin-bottom: 12px;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B4226' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      padding-right: 36px;
    }
    .size-select:focus { border-color: var(--pb); outline: none; box-shadow: 0 0 0 3px rgba(212,129,58,0.12); }

    .product-bottom {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .qty-control {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--taupe);
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .qty-btn {
      width: 30px; height: 34px;
      background: none;
      border: none;
      color: var(--brown);
      font-size: 17px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s;
      line-height: 1;
    }
    .qty-btn:hover { background: var(--cream-dark); }
    .qty-val {
      min-width: 26px;
      text-align: center;
      font-size: 14px;
      font-weight: 700;
      color: var(--brown);
      pointer-events: none;
    }
    .btn-add-cart {
      flex: 1;
      padding: 13px 14px;
      background: var(--brown);
      color: var(--cream);
      border: none;
      border-radius: 8px;
      font-family: var(--sans);
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .btn-add-cart:hover { background: var(--brown-mid); transform: translateY(-1px); }
    .btn-add-cart.added { background: var(--apple); pointer-events: none; }

    /* ── Cart button in nav ────────────────────────────────────────── */
    .cart-nav-btn {
      position: relative;
      background: var(--cream-dark);
      border: 1.5px solid var(--taupe);
      border-radius: 8px;
      padding: 7px 13px;
      font-size: 15px;
      cursor: pointer;
      color: var(--brown);
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--sans);
      font-weight: 700;
      transition: border-color 0.2s, background 0.2s;
    }
    .cart-nav-btn:hover { background: var(--taupe); border-color: var(--brown-light); }
    .cart-badge {
      min-width: 18px; height: 18px;
      border-radius: 999px;
      background: var(--pb);
      color: #fff;
      font-size: 10px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 4px;
      opacity: 0;
      transform: scale(0);
      transition: opacity 0.2s, transform 0.2s;
    }
    .cart-badge.visible { opacity: 1; transform: scale(1); }

    /* ── Cart overlay ──────────────────────────────────────────────── */
    .cart-overlay {
      position: fixed; inset: 0;
      background: rgba(61,36,20,0.4);
      z-index: 500;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
      backdrop-filter: blur(3px);
    }
    .cart-overlay.open { opacity: 1; pointer-events: all; }

    /* ── Cart drawer ───────────────────────────────────────────────── */
    .cart-drawer {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: min(440px, 100vw);
      background: var(--cream);
      z-index: 501;
      display: flex;
      flex-direction: column;
      box-shadow: -8px 0 48px rgba(61,36,20,0.18);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .cart-drawer.open { transform: translateX(0); }

    .cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px;
      border-bottom: 1px solid var(--taupe);
      background: var(--white);
    }
    .cart-title {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 700;
      color: var(--brown);
    }
    .cart-close {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--cream-dark);
      border: none;
      font-size: 18px;
      cursor: pointer;
      color: var(--brown-mid);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      line-height: 1;
    }
    .cart-close:hover { background: var(--taupe); }

    .cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }

    .cart-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      text-align: center;
      padding: 40px;
      color: var(--brown-light);
    }
    .cart-empty-icon { font-size: 52px; margin-bottom: 16px; }
    .cart-empty p { font-size: 15px; line-height: 1.65; }
    .cart-empty a {
      display: inline-block;
      margin-top: 18px;
      font-size: 14px;
      font-weight: 700;
      color: var(--pb);
      text-decoration: underline;
      text-decoration-color: rgba(212,129,58,0.4);
    }

    .cart-item-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .cart-item {
      display: flex;
      gap: 13px;
      align-items: flex-start;
      background: var(--white);
      border-radius: 14px;
      padding: 14px;
    }
    .cart-item-img {
      width: 58px; height: 58px;
      border-radius: 10px;
      object-fit: cover;
      background: var(--cream-dark);
      flex-shrink: 0;
      mix-blend-mode: multiply;
    }
    .cart-item-info { flex: 1; min-width: 0; }
    .cart-item-name {
      font-family: var(--serif);
      font-size: 14px;
      font-weight: 700;
      color: var(--brown);
    }
    .cart-item-size { font-size: 12px; color: var(--brown-light); margin-top: 2px; }
    .cart-item-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 10px;
    }
    .cart-qty-ctrl { display: flex; align-items: center; gap: 6px; }
    .cart-qty-btn {
      width: 26px; height: 26px;
      border-radius: 50%;
      background: var(--cream-dark);
      border: none;
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brown);
      line-height: 1;
      transition: background 0.15s;
    }
    .cart-qty-btn:hover { background: var(--taupe); }
    .cart-item-qty { font-size: 14px; font-weight: 700; color: var(--brown); min-width: 22px; text-align: center; }
    .cart-item-price { font-size: 15px; font-weight: 700; color: var(--brown); }
    .cart-item-remove {
      background: none; border: none;
      font-size: 15px; cursor: pointer;
      color: var(--brown-light);
      padding: 2px 4px;
      transition: color 0.15s;
    }
    .cart-item-remove:hover { color: #c0392b; }

    .cart-footer {
      padding: 20px 24px 28px;
      border-top: 1px solid var(--taupe);
      background: var(--white);
    }
    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-size: 14px;
      color: var(--brown-mid);
      margin-bottom: 4px;
    }
    .cart-subtotal strong { font-family: var(--serif); font-size: 22px; color: var(--brown); }
    .cart-ship-note { font-size: 12px; color: var(--brown-light); margin-bottom: 18px; }
    .cart-divider { height: 1px; background: var(--cream-dark); margin: 16px 0; }
    .paypal-label {
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--brown-light);
      text-align: center;
      margin-bottom: 10px;
    }
    #paypal-button-container { min-height: 50px; }

    /* Payment success inside cart */
    .cart-success {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 48px 28px;
    }
    .cart-success-icon { font-size: 56px; margin-bottom: 18px; animation: float 3s ease-in-out infinite; }
    .cart-success h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--brown); margin-bottom: 12px; }
    .cart-success p { font-size: 14px; line-height: 1.75; color: var(--brown-mid); max-width: 300px; }
    .cart-success .btn-primary { margin-top: 24px; }

    /* ── Scroll-margin so sticky nav never covers sections ───────── */
    section[id] { scroll-margin-top: 80px; }

    /* ── Active nav link ─────────────────────────────────────────── */
    .nav-links a.active {
      color: var(--brown);
      position: relative;
    }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      left: 0; right: 0;
      bottom: -4px;
      height: 2px;
      border-radius: 2px;
      background: var(--pb);
    }

    /* ── Order form ──────────────────────────────────────────────── */
    .order-form-wrap {
      max-width: 720px;
      margin-inline: auto;
    }
    .order-form-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .order-form-header .section-heading { margin-top: 10px; }
    .order-form-header .order-cta-sub   { margin-top: 14px; }

    .order-form {
      background: var(--white);
      border-radius: 24px;
      padding: 44px 48px;
      box-shadow: 0 8px 40px rgba(61,36,20,0.10);
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 22px;
    }
    .form-group:last-child { margin-bottom: 0; }
    .form-group label {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--brown);
    }
    .form-group input,
    .form-group textarea {
      font-family: var(--sans);
      font-size: 15px;
      color: var(--brown);
      background: var(--cream);
      border: 1.5px solid var(--taupe);
      border-radius: 10px;
      padding: 12px 16px;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      width: 100%;
      resize: vertical;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--brown-light); }
    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--pb);
      box-shadow: 0 0 0 3px rgba(212,129,58,0.15);
    }
    .form-group input.error,
    .form-group textarea.error { border-color: #e05c5c; }
    .form-error-msg {
      font-size: 12px;
      color: #c0392b;
      margin-top: -4px;
      display: none;
    }
    .form-error-msg.visible { display: block; }

    /* Flavour checkboxes */
    .flavour-checkboxes {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .flavour-check {
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
    }
    .flavour-check input[type="checkbox"] { display: none; }
    .flavour-check span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      border: 2px solid transparent;
      transition: all 0.2s;
      user-select: none;
    }
    .flavour-check.cheese span { background: var(--cheese-light); color: #7a6500; border-color: transparent; }
    .flavour-check.pb     span { background: var(--pb-light);     color: #8a4500; }
    .flavour-check.berry  span { background: var(--berry-light);  color: #1e5a80; }
    .flavour-check.apple  span { background: var(--apple-light);  color: #3d5520; }
    .flavour-check.cheese input:checked ~ span { background: var(--cheese); color: var(--brown); border-color: var(--brown-light); box-shadow: 0 2px 8px rgba(232,197,71,0.4); }
    .flavour-check.pb     input:checked ~ span { background: var(--pb);     color: #fff; border-color: #a0612a; box-shadow: 0 2px 8px rgba(212,129,58,0.4); }
    .flavour-check.berry  input:checked ~ span { background: var(--berry);  color: #fff; border-color: #4a7da0; box-shadow: 0 2px 8px rgba(110,159,197,0.4); }
    .flavour-check.apple  input:checked ~ span { background: var(--apple);  color: #fff; border-color: #5a7840; box-shadow: 0 2px 8px rgba(139,158,106,0.4); }
    .flavour-check span:hover { filter: brightness(0.95); }
    .flavour-group-error {
      font-size: 12px;
      color: #c0392b;
      display: none;
      margin-top: 4px;
    }
    .flavour-group-error.visible { display: block; }

    .form-submit {
      width: 100%;
      justify-content: center;
      padding: 16px;
      font-size: 16px;
      margin-top: 8px;
      border-radius: 12px;
    }
    .form-submit:disabled { opacity: 0.6; pointer-events: none; }

    /* Success state */
    .order-success {
      background: var(--white);
      border-radius: 24px;
      padding: 64px 48px;
      text-align: center;
      box-shadow: 0 8px 40px rgba(61,36,20,0.10);
    }
    .success-icon { font-size: 56px; margin-bottom: 20px; animation: float 3s ease-in-out infinite; }
    .order-success h3 {
      font-family: var(--serif);
      font-size: 32px;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 14px;
    }
    .order-success p { font-size: 16px; line-height: 1.8; color: var(--brown-mid); max-width: 420px; margin-inline: auto; }

    @media (max-width: 640px) {
      .form-row { grid-template-columns: 1fr; }
      .order-form { padding: 32px 24px; }
    }

    /* ── Scroll animations ─────────────────────────────────────── */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }

    /* ── Responsive ────────────────────────────────────────────── */
    @media (max-width: 1160px) {
      /* Less leftward shift on narrower desktops so the artwork stays on-screen */
      .about-video-wrap { margin-left: -22%; }
    }

    @media (max-width: 1024px) {
      .treats-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }

      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-sub { margin-inline: auto; }
      .hero-actions { justify-content: center; }
      .hero-badges { justify-content: center; }
      .hero-image-wrap { order: -1; }
      .hero-logo-ring { width: min(300px, 85vw); }
      /* (The label pool and video stain are attached to their own elements,
         so they follow the stacked mobile layout automatically.) */

      .about { padding: 60px 0; }
      .about-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-accent-card { right: 16px; bottom: -20px; }
      .about-content .section-label,
      .about-content .section-heading,
      .about-content .divider { text-align: center; margin-inline: auto; }
      .about-content .divider { margin-left: auto; }
      /* Reset the desktop video-zoom trick — just fill the column on mobile */
      .about-video-wrap { width: 100%; margin-left: 0; }

      .why { padding: 60px 0; }
      .why-inner { grid-template-columns: 1fr; }
      .why-content .section-label,
      .why-content .section-heading { text-align: center; }
      .why-content .divider { margin-inline: auto; }
      .why-text { text-align: center; }
      .why-grid { grid-template-columns: 1fr 1fr; }

      .treats { padding: 60px 0; }
      .treats-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }

      .testimonials { padding: 60px 0; }
      .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }

      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }

      /* Paw divider — fewer, smaller paws on mobile */
      .paw-divider { height: 80px; }

    }

    /* ══════════════════════════════════════════════════════════════
       WATERCOLOR & CURSOR ENHANCEMENTS
    ══════════════════════════════════════════════════════════════ */

    /* ── Paper grain texture overlay on the whole page ───────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: 0.028;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      background-repeat: repeat;
    }

    /* ── Watercolor blobs — organic shapes instead of circles ───── */
    /* Override hero blob shape to feel hand-painted */
    .hero-blob {
      position: absolute;
      filter: blur(70px);
      opacity: 0.22;
      pointer-events: none;
      /* SVG watercolor filter applied via filter property */
    }
    .hero-blob-1 {
      width: 500px; height: 440px;
      top: -80px; right: 8%;
      background: radial-gradient(ellipse 70% 60% at 45% 40%, var(--cheese) 0%, var(--pb) 55%, transparent 100%);
      border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
      animation: blob-morph-1 12s ease-in-out infinite alternate;
    }
    .hero-blob-2 {
      width: 380px; height: 340px;
      bottom: 0px; left: 2%;
      background: radial-gradient(ellipse 65% 55% at 40% 50%, var(--berry) 0%, transparent 100%);
      border-radius: 37% 63% 46% 54% / 48% 55% 45% 52%;
      opacity: 0.15;
      animation: blob-morph-2 15s ease-in-out infinite alternate;
    }
    .hero-blob-3 {
      width: 320px; height: 290px;
      bottom: -30px; right: 18%;
      background: radial-gradient(ellipse 60% 50% at 55% 45%, var(--apple) 0%, transparent 100%);
      border-radius: 54% 46% 37% 63% / 52% 45% 55% 48%;
      opacity: 0.16;
      animation: blob-morph-3 10s ease-in-out infinite alternate;
    }

    @keyframes blob-morph-1 {
      0%   { border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
      33%  { border-radius: 44% 56% 38% 62% / 60% 40% 58% 42%; }
      66%  { border-radius: 70% 30% 60% 40% / 42% 62% 38% 58%; }
      100% { border-radius: 52% 48% 45% 55% / 48% 54% 46% 52%; }
    }
    @keyframes blob-morph-2 {
      0%   { border-radius: 37% 63% 46% 54% / 48% 55% 45% 52%; }
      50%  { border-radius: 60% 40% 55% 45% / 38% 62% 42% 58%; }
      100% { border-radius: 45% 55% 60% 40% / 55% 45% 50% 50%; }
    }
    @keyframes blob-morph-3 {
      0%   { border-radius: 54% 46% 37% 63% / 52% 45% 55% 48%; }
      50%  { border-radius: 40% 60% 58% 42% / 46% 56% 44% 54%; }
      100% { border-radius: 62% 38% 48% 52% / 58% 42% 60% 40%; }
    }

    /* ── Hero decorative rings — softer, more organic ────────────── */
    .hero-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(196,168,130,0.25);
      opacity: 0.6;
      pointer-events: none;
      /* Gentle watercolor-like wobble */
    }
    .hero-ring-1 {
      width: 650px; height: 620px;
      top: -180px; right: -160px;
      border-radius: 56% 44% 60% 40% / 48% 55% 45% 52%;
      animation: ring-drift 18s ease-in-out infinite alternate;
    }
    .hero-ring-2 {
      width: 420px; height: 400px;
      top: -90px; right: -40px;
      opacity: 0.3;
      border-radius: 42% 58% 48% 52% / 55% 45% 60% 40%;
      animation: ring-drift 22s ease-in-out 3s infinite alternate-reverse;
    }
    .hero-ring-3 {
      width: 340px; height: 310px;
      bottom: -80px; left: -70px;
      border-radius: 60% 40% 44% 56% / 52% 48% 55% 45%;
      animation: ring-drift 16s ease-in-out 6s infinite alternate;
    }
    @keyframes ring-drift {
      from { transform: rotate(0deg) scale(1); }
      to   { transform: rotate(8deg) scale(1.04); }
    }

    /* ── Watercolor about image — gentle float only, mask does the shaping ── */
    .about-img-frame img {
      animation: frame-float 7s ease-in-out infinite alternate;
    }
    @keyframes frame-float {
      from { transform: translateY(0)    scale(1); }
      to   { transform: translateY(-10px) scale(1.015); }
    }

    /* ── Watercolor wash dividers between sections ───────────────── */
    .wc-divider {
      position: relative;
      height: 80px;
      overflow: hidden;
      pointer-events: none;
    }
    .wc-divider svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    /* ── Treat cards — painted/organic borders ───────────────────── */
    .treat-card {
      border-radius: 28% 14% 22% 18% / 18% 22% 14% 28%;
      transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-radius 0.4s var(--ease);
    }
    .treat-card:hover {
      border-radius: 18% 22% 16% 24% / 24% 16% 22% 18%;
      transform: translateY(-8px) rotate(-0.5deg);
    }
    /* treat-card-top clips naturally to parent's organic border-radius via overflow:hidden */

    /* ── Testimonial cards — soft watercolor wash ────────────────── */
    .testimonial-card {
      position: relative;
      overflow: hidden;
    }
    .testimonial-card::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      opacity: 0.035;
      pointer-events: none;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    }
    .testimonial-card:nth-child(1) { background: linear-gradient(135deg, #fff 80%, var(--cheese-light) 100%); }
    .testimonial-card:nth-child(2) { background: linear-gradient(135deg, #fff 80%, var(--pb-light)     100%); }
    .testimonial-card:nth-child(3) { background: linear-gradient(135deg, #fff 80%, var(--berry-light)  100%); }

    /* ── Custom paw cursor ───────────────────────────────────────── */
    * { cursor: none !important; }

    #cursor-paw {
      position: fixed;
      width: 30px;
      height: 30px;
      pointer-events: none;
      z-index: 99999;
      transform: translate(-50%, -50%);
      opacity: 0;
      transition: opacity 0.3s, width 0.2s, height 0.2s, color 0.2s;
      color: var(--brown);
      will-change: left, top;
      filter: drop-shadow(0 1px 4px rgba(61,36,20,0.22));
    }
    #cursor-paw svg { width: 100%; height: 100%; display: block; }
    #cursor-paw.hovering {
      width: 42px;
      height: 42px;
      color: var(--pb);
      filter: drop-shadow(0 2px 8px rgba(212,129,58,0.35));
    }
    #cursor-paw.clicking {
      width: 22px;
      height: 22px;
      color: var(--cheese);
      filter: drop-shadow(0 0 10px rgba(232,197,71,0.7));
    }
    #cursor-paw.on-dark {
      color: var(--cream);
      filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
    }
    #cursor-paw.on-dark.hovering {
      color: var(--cheese);
      filter: drop-shadow(0 2px 8px rgba(232,197,71,0.5));
    }

    /* ── About section video ─────────────────────────────────────── */
    .about-video-wrap {
      position: relative;
      width: 140%;
      margin-left: -32%; /* pushed further left, away from the story text */
    }
    .about-video {
      width: 100%;
      display: block;
      /* The clip is 16:9 with black pillarbox bars baked in — force a square
         frame and cover-crop so only the artwork's centre square shows. Its
         background (#F7F0E6, colour-graded by Kelly) sits close enough to the
         site cream that the feather mask below melts it in directly.
         Radial ellipse feathers all four edges; a second linear layer adds
         extra fade ONLY on the right side. The two layers are intersected
         (alpha × alpha) so left/top/bottom stay identical to before. */
      aspect-ratio: 1 / 1;
      object-fit: cover;
      -webkit-mask-image:
        radial-gradient(ellipse 53% 51% at 50% 50%,
          black 0%,
          black 93%,
          rgba(0,0,0,0.65) 97%,
          rgba(0,0,0,0.25) 99%,
          transparent 100%),
        linear-gradient(to right,
          black 0%,
          black 92%,
          rgba(0,0,0,0.65) 96.5%,
          rgba(0,0,0,0.25) 99%,
          transparent 100%);
      -webkit-mask-composite: source-in;
      mask-image:
        radial-gradient(ellipse 53% 51% at 50% 50%,
          black 0%,
          black 93%,
          rgba(0,0,0,0.65) 97%,
          rgba(0,0,0,0.25) 99%,
          transparent 100%),
        linear-gradient(to right,
          black 0%,
          black 92%,
          rgba(0,0,0,0.65) 96.5%,
          rgba(0,0,0,0.25) 99%,
          transparent 100%);
      mask-composite: intersect;
    }

    /* ── Watercolour treat card image tops ───────────────────────── */
    .treat-card-top {
      height: 210px !important;
      position: relative;
      overflow: hidden;
      display: block;
      /* Very pale warm tan — subtle brown cast, light enough that the
         multiply-blended watercolour images stay readable against it. */
      background: #F6EEDD !important;
    }
    .treat-card-top img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      /* Blend the white image bg into the card background */
      mix-blend-mode: multiply;
      transition: transform 0.5s var(--ease);
    }
    .treat-card:hover .treat-card-top img {
      transform: scale(1.06);
    }
    /* The pumpkin, blueberry and apple JPGs were exported with cream
       padding baked around the watercolour art, so the art appears as a
       smaller rectangle inside a visible cream frame. The cheese JPG was
       exported tight. Zoom these three just enough to push the padding
       past the frame edges so every card matches the cheese aesthetic. */
    .treat-card.pb    .treat-card-top img,
    .treat-card.berry .treat-card-top img,
    .treat-card.apple .treat-card-top img {
      transform: scale(1.25);
    }
    .treat-card.pb:hover    .treat-card-top img,
    .treat-card.berry:hover .treat-card-top img,
    .treat-card.apple:hover .treat-card-top img {
      transform: scale(1.32);
    }
    /* All cards share the same cream background so every image blends into
       the card edge identically (matches the seamless cheese card look). */

    /* ── Brush-stroke section divider ────────────────────────────── */
    .divider {
      width: 80px !important;
      height: 7px !important;
      border-radius: 50% 50% 50% 50% / 80% 80% 20% 20% !important;
      background: linear-gradient(to right, transparent 0%, var(--brown-light) 25%, var(--pb) 65%, transparent 100%) !important;
      margin: 20px auto 0 !important;
      transform: rotate(-0.8deg);
      position: relative;
    }
    .divider::after {
      content: '';
      position: absolute;
      width: 50%;
      height: 3px;
      background: linear-gradient(to right, transparent, rgba(196,168,130,0.55), transparent);
      bottom: -5px;
      left: 25%;
      border-radius: 50%;
      transform: rotate(1.2deg);
    }

    /* ── Section watercolour corner washes ───────────────────────── */
    .treats::before {
      content: '';
      position: absolute;
      width: 380px; height: 380px;
      top: -80px; right: -60px;
      border-radius: 52% 48% 40% 60% / 45% 55% 48% 52%;
      background: radial-gradient(ellipse, rgba(232,197,71,0.10) 0%, transparent 70%);
      filter: blur(40px);
      pointer-events: none;
    }
    .treats { position: relative; overflow: hidden; }
    .testimonials::before {
      content: '';
      position: absolute;
      width: 340px; height: 340px;
      bottom: -60px; left: -50px;
      border-radius: 48% 52% 60% 40% / 55% 45% 52% 48%;
      background: radial-gradient(ellipse, rgba(110,159,197,0.12) 0%, transparent 70%);
      filter: blur(40px);
      pointer-events: none;
    }
    .testimonials { position: relative; overflow: hidden; }

    /* ── Paint splash particles ──────────────────────────────────── */
    .paint-particle {
      position: fixed;
      border-radius: 50%;
      pointer-events: none;
      z-index: 99997;
      transform: translate(-50%, -50%) scale(0);
      animation: paint-splash 0.7s var(--ease) forwards;
    }
    @keyframes paint-splash {
      0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.9; }
      60%  { opacity: 0.5; }
      100% { transform: translate(var(--tx), var(--ty)) scale(1); opacity: 0; }
    }

    /* ── Cursor glow that follows mouse in hero ───────────────────── */
    #cursor-glow {
      position: fixed;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(232,197,71,0.10) 0%, transparent 70%);
      mix-blend-mode: multiply;
      transition: opacity 0.4s;
      opacity: 0;
    }
    .hero:hover #cursor-glow { opacity: 1; }

    /* ── Watercolor section transition wave ──────────────────────── */
    .section-wave {
      display: block;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }
    .section-wave svg { display: block; }

    /* ── Mobile overrides — must come AFTER the watercolor section ──
       The watercolor block re-applies mix-blend-mode / masks, so these
       rules need to be declared last to win the cascade. */
    @media (max-width: 768px) {
      .treat-card-top img {
        mix-blend-mode: normal !important;
      }
    }

.cart-region-label { display:block; font-size:12px; font-weight:700; letter-spacing:.06em;
  text-transform:uppercase; color:var(--brown-mid); margin:4px 0 6px; }
.cart-province { width:100%; padding:10px 12px; border:1px solid var(--taupe);
  border-radius:10px; background:var(--white); font:inherit; color:var(--brown); margin-bottom:10px; }
.cart-free-note { font-size:13px; color:var(--pb); font-weight:700; min-height:18px; margin-bottom:8px; }
.cart-free-note.unlocked { color:var(--apple); }
.cart-lines { display:flex; flex-direction:column; gap:6px; margin:6px 0 12px; }
.cart-line { display:flex; justify-content:space-between; font-size:14px; color:var(--brown-mid); }
.cart-line-total { font-size:16px; color:var(--brown); border-top:1px solid var(--taupe);
  padding-top:8px; margin-top:2px; }
.cart-checkout[disabled] { opacity:.55; cursor:not-allowed; }
