/** Shopify CDN: Minification failed

Line 37:0 All "@import" rules must come first

**/
/** Critical CSS for the theme. This file is included on every page. */

/* ============================================================
   PetBoutiq Brand Tokens
   ============================================================ */
:root {
  --cp-sage:        #5C7A6B;
  --cp-sage-dark:   #3D5247;
  --cp-sage-light:  #7B9E87;
  --cp-cream:       #F7F5F0;
  --cp-cream-dark:  #EDE9E1;
  --cp-terracotta:  #C4825A;
  --cp-text:        #2D2D2D;
  --cp-muted:       #8A8A82;
  --cp-border:      #ECEAE5;
  --cp-radius-sm:   10px;
  --cp-radius:      14px;
  --cp-radius-lg:   20px;
  --cp-shadow:      0 2px 8px rgba(0,0,0,0.06);
  --cp-shadow-hover:0 16px 48px rgba(0,0,0,0.12);
  --cp-font-serif:  'Playfair Display', Georgia, serif;
  --cp-font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --cp-transition:  all 0.35s cubic-bezier(.4,0,.2,1);
  --cp-transition-fast: all 0.2s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

/* ============================================================
   Google Fonts
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* Reset styles inspired by https://www.joshwcomeau.com/css/custom-css-reset/ */
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100svh;
  background-color: var(--cp-cream);
  font-family: var(--cp-font-sans);
  color: var(--cp-text);
}

html:has(dialog[scroll-lock][open], details[scroll-lock][open]) {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs);
}

select {
  background-color: var(--color-background);
  color: currentcolor;
}

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground);
}

p {
  text-wrap: pretty;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p:empty {
  display: none;
}

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child + :where(p, h1, h2, h3, h4, h5, h6) {
  margin-block-start: 0;
}

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6) + :has(+ :empty:last-child) {
  margin-block-end: 0;
}

/** Theme styles below */
body {
  font-family: var(--font-primary--family, var(--cp-font-sans));
  background-color: var(--color-background, var(--cp-cream));
  color: var(--color-foreground, var(--cp-text));
}

/* ============================================================
   Global Button Utilities
   ============================================================ */
.cp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; border-radius: var(--cp-radius);
  background: var(--cp-sage); color: #fff;
  font-family: var(--cp-font-sans); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none;
  box-shadow: 0 4px 20px rgba(92,122,107,0.35);
  transition: var(--cp-transition);
}
.cp-btn-primary:hover {
  background: var(--cp-sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(61,82,71,0.4);
}

.cp-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--cp-radius);
  background: #fff; color: var(--cp-sage);
  font-family: var(--cp-font-sans); font-size: 0.95rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--cp-sage);
  transition: var(--cp-transition);
}
.cp-btn-secondary:hover {
  background: var(--cp-sage); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92,122,107,0.3);
}

/* ============================================================
   Global Section Label
   ============================================================ */
.cp-section-label {
  display: inline-block;
  font-family: var(--cp-font-sans);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--cp-sage);
  margin-bottom: 16px;
}

/** Section layout utilities */

/**
 * Setup a grid that enables both full-width and constrained layouts
 * depending on the class of the child elements.
 */
.shopify-section {
  --content-width: min(
    calc(var(--page-width) - var(--page-margin) * 2),
    calc(100% - var(--page-margin) * 2)
  );
  --content-margin: minmax(var(--page-margin), 1fr);
  --content-grid: var(--content-margin) var(--content-width) var(--content-margin);

  position: relative;
  grid-template-columns: var(--content-grid);
  display: grid;
  width: 100%;
}

.shopify-section > * {
  grid-column: 2;
}

.shopify-section > .full-width {
  grid-column: 1 / -1;
}
