/** Shopify CDN: Minification failed

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

**/
/* ============================================================
   Richpet Header — rp-header.css
   Matches richpet-homepage-f.html design exactly
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;1,9..144,400&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --rph-base:  #f1ecde;
  --rph-pine:  #0c4a38;
  --rph-pine3: #09362b;
  --rph-green: #1c7a56;
  --rph-green2:#228960;
  --rph-sage:  #e9e4d6;
  --rph-card:  #f7f2e8;
  --rph-ivory: #f9f5eb;
  --rph-muted: #6b6557;
  --rph-muted2:#a09b94;
  --rph-line:  rgba(12,74,56,0.10);
  --rph-line2: rgba(12,74,56,0.06);
  --rph-maxw:  1280px;
}

/* ═══════════════════════════════
   HEADER CORE
═══════════════════════════════ */
.rph-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(241,236,222,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--rph-line2);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  font-family: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Subtle scale-down when scrolled past top */
.rph-header.is-scrolled {
  background: rgba(241,236,222,0.96);
  box-shadow: 0 2px 16px rgba(12,74,56,0.06);
}
.rph-header.is-scrolled .rph-nav-in {
  height: 56px;
}
.rph-header.is-scrolled .rph-logo-img {
  height: 36px;
}
.rph-header.is-scrolled .rph-ib {
  width: 34px;
  height: 34px;
}
.rph-header.is-scrolled .rph-nav-btn {
  font-size: 13px;
}

.rph-nav-in {
  display: flex;
  align-items: center;
  height: 66px;
  max-width: var(--rph-maxw);
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,48px);
  transition: height 0.3s ease;
}

/* ── Logo ── */
.rph-logo {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--rph-pine);
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.rph-logo:hover { color: var(--rph-pine); }
.rph-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height 0.3s ease;
}
.rph-logo-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

/* ── Nav links (desktop) ── */
.rph-nav-links {
  display: flex;
  gap: 0;
  margin-left: 36px;
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.rph-nav-item {
  position: relative;
}
.rph-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--rph-pine);
  padding: 2px 13px 2px 0;
  position: relative;
  display: block;
  line-height: 1;
  transition: font-size 0.3s ease;
}
.rph-nav-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--rph-green);
  border-radius: 2px;
  transition: width 0.28s;
}
.rph-nav-item.open .rph-nav-btn::after { width: calc(100% - 13px); }

/* ── Right icons ── */
.rph-nav-r {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.rph-ib {
  background: none;
  border: none;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rph-pine);
  transition: background 0.2s, width 0.3s ease, height 0.3s ease;
  text-decoration: none;
  position: relative;
  flex-shrink: 0;
}
.rph-ib:hover { background: rgba(12,74,56,0.07); }
.rph-ib svg { flex-shrink: 0; }

/* Cart count */
.rph-cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--rph-pine);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Burger — only on mobile */
.rph-burger { display: none; }

@media (max-width: 880px) {
  .rph-nav-links { display: none; }
  .rph-burger { display: flex; }
}

/* ═══════════════════════════════
   MEGA MENU
═══════════════════════════════ */
.rph-mega-backdrop {
  position: fixed;
  inset: 0;
  top: 66px;
  z-index: 58;
  background: rgba(12,74,56,0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.rph-mega-backdrop.show { opacity: 1; pointer-events: auto; }

.rph-mega-wrap {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}
.rph-mega-menu {
  display: none;
  background: var(--rph-ivory);
  border-bottom: 1px solid var(--rph-line2);
  box-shadow: 0 20px 56px rgba(12,74,56,0.13);
  pointer-events: auto;
}
.rph-mega-menu.open {
  display: block;
  animation: rphMegaIn 0.22s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes rphMegaIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}
.rph-mega-in {
  display: grid;
  grid-template-columns: 1fr 196px;
  gap: 36px;
  padding: 28px clamp(16px,4vw,48px) 32px;
  max-width: var(--rph-maxw);
  margin: 0 auto;
  align-items: start;
}
.rph-mega-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
}
.rph-mega-cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.rph-mega-group { margin-bottom: 20px; }
.rph-mega-group:last-child { margin-bottom: 0; }
.rph-mega-lbl {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--rph-muted2);
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--rph-line2);
  margin-bottom: 2px;
}
.rph-mega-prod {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rph-line2);
  text-decoration: none;
}
.rph-mega-prod:last-child { border-bottom: none; }
.rph-mega-pimg {
  width: 48px; height: 48px;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--rph-sage);
  border: 1px solid var(--rph-line2);
}
.rph-mega-pimg img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.rph-mega-pname {
  font-size: 13px; font-weight: 600;
  color: var(--rph-pine); display: block;
  margin-bottom: 1px; transition: color 0.18s;
}
.rph-mega-prod:hover .rph-mega-pname { color: var(--rph-green); }
.rph-mega-psub { font-size: 11.5px; color: var(--rph-muted); line-height: 1.3; }

.rph-mega-tlink {
  display: block; padding: 9px 0;
  border-bottom: 1px solid var(--rph-line2);
  text-decoration: none;
}
.rph-mega-tlink:last-child { border-bottom: none; }
.rph-mega-tname {
  font-size: 13px; font-weight: 600;
  color: var(--rph-pine); display: block;
  margin-bottom: 1px; transition: color 0.18s;
}
.rph-mega-tlink:hover .rph-mega-tname { color: var(--rph-green); }
.rph-mega-tsub { font-size: 11.5px; color: var(--rph-muted); line-height: 1.3; }

.rph-mega-right { display: flex; flex-direction: column; gap: 14px; }
.rph-mega-feat {
  border-radius: 14px; overflow: hidden;
  background: var(--rph-sage); aspect-ratio: 3/4;
}
.rph-mega-feat img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rph-mega-cta {
  font-family: "Fraunces", serif;
  font-size: 18px; font-weight: 400;
  color: var(--rph-pine);
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; line-height: 1.25; transition: color 0.2s;
}
.rph-mega-cta:hover { color: var(--rph-green); }
.rph-mega-cta svg { transition: transform 0.2s; flex-shrink: 0; color: var(--rph-green); }
.rph-mega-cta:hover svg { transform: translateX(4px); }

@media (max-width: 880px) {
  .rph-mega-wrap, .rph-mega-backdrop { display: none; }
}

/* ═══════════════════════════════
   MOBILE MENU
═══════════════════════════════ */
.rph-mm {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--rph-base);
  transform: translateX(110%);
  transition: transform 0.5s cubic-bezier(0.7,0,0.2,1);
  padding: 26px 26px 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Hanken Grotesk", sans-serif;
}
.rph-mm.open { transform: none; }

.rph-mm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  flex-shrink: 0;
}
.rph-mm-tabs {
  display: flex;
  border-bottom: 1px solid var(--rph-line2);
  margin-bottom: 24px;
  flex-shrink: 0;
}
.rph-mm-tab {
  background: none; border: none; cursor: pointer;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--rph-muted);
  padding: 0 0 13px; margin-right: 22px;
  position: relative; transition: color 0.2s;
}
.rph-mm-tab.on { color: var(--rph-pine); }
.rph-mm-tab.on::after {
  content: "";
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--rph-green); border-radius: 2px;
}
.rph-mm-panel { display: none; overflow-y: auto; flex: 1; }
.rph-mm-panel.on { display: block; }
.rph-mmt-group { margin-bottom: 26px; }
.rph-mmt-lbl {
  font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; color: var(--rph-muted2);
  display: block; padding-bottom: 8px;
  border-bottom: 1px solid var(--rph-line2); margin-bottom: 2px;
}
.rph-mmt-link {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 0; border-bottom: 1px solid var(--rph-line2);
  text-decoration: none; color: inherit;
}
.rph-mmt-link:last-child { border-bottom: none; }
.rph-mmt-txt { flex: 1; min-width: 0; }
.rph-mmt-link b {
  font-size: 15px; color: var(--rph-pine);
  display: block; margin-bottom: 2px; font-weight: 600;
}
.rph-mmt-link span { font-size: 12.5px; color: var(--rph-muted); line-height: 1.4; }
.rph-mmt-img {
  width: 46px; height: 46px; border-radius: 10px;
  overflow: hidden; flex-shrink: 0;
  background: var(--rph-sage); border: 1px solid var(--rph-line2);
}
.rph-mmt-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.rph-mmt-icon {
  width: 46px; height: 46px; border-radius: 10px; flex-shrink: 0;
  background: rgba(34,137,96,0.09); border: 1px solid var(--rph-line2);
  display: flex; align-items: center; justify-content: center;
  color: var(--rph-green);
}
.rph-mmt-showall {
  font-family: "Fraunces", serif; font-size: 20px;
  color: var(--rph-pine); display: flex; align-items: center; gap: 9px;
  text-decoration: none; margin-top: 8px; padding-top: 18px;
  border-top: 1px solid var(--rph-line2);
}

/* ── Override Dawn section-header for our header ── */
.section-header { position: sticky; top: 0; z-index: 60; }
.header-wrapper {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.section-header .header { display: none !important; }