/* ==========================================================================
   PawPicks UK — "warm British dog-lover" redesign
   Indie-magazine feel: dark-on-cream, bold earthy greens, rounded corners,
   soft shadows, hand-drawn paw accents. Plain CSS, no build tooling.
   ========================================================================== */

:root {
  /* Palette — richer, bolder earth tones (all AA against their pairings) */
  --green-900: #1b4332;
  --green-800: #21543e;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-100: #d8f3dc;
  --cream: #fdf6e3;
  --cream-deep: #f6ecd4;
  --paper: #fffdf7;
  --ink: #26261f;
  --ink-soft: #57534a;
  --terracotta: #c65d21;
  --terracotta-deep: #a34a17;
  --honey: #e9b44c;
  --star: #d9822b;
  --border: #e4dcc3;

  --color-primary: var(--green-700);
  --color-primary-light: var(--green-600);
  --color-accent: var(--terracotta);
  --color-bg: var(--cream);
  --color-bg-alt: var(--paper);
  --color-surface: var(--cream-deep);
  --color-text: var(--ink);
  --color-text-light: var(--ink-soft);
  --color-border: var(--border);
  --color-star: var(--star);

  --max-width: 1100px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 2px 10px rgba(38, 38, 31, 0.07);
  --shadow-lift: 0 10px 28px rgba(27, 67, 50, 0.16);

  /* Fonts: expressive system stacks only — zero render-blocking requests */
  --font-body:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-heading:
    "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia,
    "Times New Roman", serif;
}

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--green-800);
  text-decoration: none;
}
a:hover {
  color: var(--terracotta-deep);
  text-decoration: underline;
}

:focus-visible {
  /* Two-layer ring: cream inner layer keeps focus visible on dark
     header/footer where terracotta alone falls under 3:1 contrast. */
  outline: 3px solid var(--terracotta);
  outline-offset: 2px;
  border-radius: 3px;
  box-shadow: 0 0 0 2px var(--cream);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-900);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  background: var(--green-900);
  color: #fff;
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(27, 67, 50, 0.35);
  border-bottom: 3px solid var(--honey);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  text-decoration: none;
}
.site-logo:hover {
  color: #fff;
  text-decoration: none;
}
.site-logo:hover .logo-mark {
  transform: rotate(-8deg);
}
.logo-mark {
  width: 38px;
  height: 38px;
  flex: none;
  transition: transform 0.25s ease;
}
.logo-word {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-word em {
  font-style: normal;
  color: var(--honey);
}
.logo-tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9e4d3;
  margin-top: -0.2rem;
}

.site-nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: #e4f0e8;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.15rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover {
  color: var(--honey);
  border-bottom-color: var(--honey);
  text-decoration: none;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(
      1100px 400px at 85% -10%,
      rgba(233, 180, 76, 0.18),
      transparent 60%
    ),
    linear-gradient(
      140deg,
      var(--green-900) 0%,
      var(--green-700) 70%,
      var(--green-600) 100%
    );
  color: #fff;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}
.hero .container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}
.hero h1 {
  font-size: 2.9rem;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}
.hero p {
  font-size: 1.2rem;
  color: #e9f4ec;
  max-width: 620px;
  margin: 0 auto;
}
.hero .hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 1rem;
}
.hero .hero-kicker svg {
  width: 18px;
  height: 18px;
}
.hero-dog {
  position: absolute;
  right: -20px;
  bottom: -14px;
  width: 240px;
  opacity: 0.16;
  pointer-events: none;
}

/* Scattered paw prints in hero */
.hero-paws {
  position: absolute;
  left: 2%;
  top: 10%;
  width: 120px;
  opacity: 0.12;
  pointer-events: none;
  transform: rotate(-18deg);
}

/* ==========================================================================
   Main / sections
   ========================================================================== */
main {
  padding: 2.5rem 0 1rem;
}

.section-title {
  font-size: 1.65rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
}
.section-lede {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

/* Paw-print section divider */
.paw-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3rem 0 2.5rem;
  color: var(--green-600);
}
.paw-divider::before,
.paw-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.paw-divider::after {
  background: linear-gradient(90deg, var(--border), transparent);
}
.paw-divider svg {
  width: 26px;
  height: 26px;
  flex: none;
}
.paw-divider svg:nth-child(2) {
  transform: rotate(14deg) translateY(-4px);
}
.paw-divider svg:nth-child(3) {
  transform: rotate(-10deg);
}

/* ==========================================================================
   Product cards
   ========================================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.product-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
  border-color: var(--green-600);
}

.product-card h3 {
  font-size: 1.2rem;
  margin: 0.4rem 0 0.4rem;
}
.product-card h3 a {
  color: var(--green-900);
}
.product-card .meta {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 0.35rem 0 0.6rem;
}
.product-card .price {
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--green-800);
  margin-top: auto;
  padding-top: 0.75rem;
}

/* Star ratings — custom look, not default text stars */
.rating {
  display: inline-block;
  color: var(--color-star);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: rgba(217, 130, 43, 0.1);
  border-radius: 999px;
  padding: 0.1rem 0.75rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 0 rgba(163, 74, 23, 0.25);
}

.product-card .pros-cons,
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  margin: 1rem 0;
}
.pros-cons h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.pros h4 {
  color: var(--green-700);
}
.cons h4 {
  color: var(--terracotta-deep);
}
.pros ul,
.cons ul,
.product-card .pros,
.product-card .cons {
  list-style: none;
  font-size: 0.9rem;
  margin: 0;
}
.pros li,
.cons li,
.product-card .pros li,
.product-card .cons li {
  margin-bottom: 0.3rem;
}
.product-card .pros li::before {
  content: "✓ ";
  color: var(--green-700);
  font-weight: 700;
}
.product-card .cons li::before {
  content: "✗ ";
  color: var(--terracotta-deep);
  font-weight: 700;
}

/* CTA buttons */
.cta,
.affiliate-btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.75rem;
  border: 2px solid transparent;
  box-shadow: 0 3px 0 var(--terracotta-deep);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
.cta:hover,
.affiliate-btn:hover {
  background: var(--terracotta-deep);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 rgba(122, 55, 17, 0.9);
}
.cta:active,
.affiliate-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--terracotta-deep);
}

.cta--ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-700);
  box-shadow: none;
}
.cta--ghost:hover {
  background: var(--green-700);
  color: #fff;
  box-shadow: none;
}

/* ==========================================================================
   Badges & tags
   ========================================================================== */
.badge {
  display: inline-block;
  background: var(--honey);
  color: var(--ink);
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 0.35rem;
}
.badge--top {
  background: var(--terracotta);
  color: #fff;
}
.badge--value {
  background: var(--green-700);
  color: #fff;
}

.tag {
  display: inline-block;
  background: var(--cream-deep);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0.3rem 0.4rem 0;
}
.tag-top {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}

/* "Milo tested" badge — the resident Lab×Lurcher's seal of approval */
.milo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green-100);
  border: 1.5px dashed var(--green-600);
  color: var(--green-900);
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0.35rem 0;
}
.milo-badge svg {
  width: 16px;
  height: 16px;
  flex: none;
}

/* ==========================================================================
   Comparison tables
   ========================================================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 2rem 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-alt);
  min-width: 600px;
}
.comparison-table th,
.comparison-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
.comparison-table th {
  background: var(--green-900);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}
.comparison-table tbody tr:nth-child(even) {
  background: var(--cream);
}
.comparison-table tbody tr:hover {
  background: var(--green-100);
}

/* ==========================================================================
   Articles
   ========================================================================== */
.article,
.article-content {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.article-content {
  padding: 0;
}

.article h1,
.article-content h1 {
  font-size: 2.2rem;
  color: var(--green-900);
  margin-bottom: 0.5rem;
  text-wrap: balance;
}
.article h2,
.article-content h2 {
  font-size: 1.55rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--green-800);
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--cream-deep);
}
.article h3,
.article-content h3 {
  font-size: 1.2rem;
  margin: 1.5rem 0 0.5rem;
}
.article p,
.article-content p {
  margin-bottom: 1rem;
}
.article ul,
.article ol,
.article-content ul,
.article-content ol {
  margin: 1rem 0 1rem 1.5rem;
}
.article li,
.article-content li {
  margin-bottom: 0.4rem;
}
.article .meta,
.article-content .meta {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.article hr {
  border: none;
  border-top: 2px dashed var(--border);
  margin: 2.5rem 0;
}

.product-review {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-soft);
}
.product-review h3 {
  margin-top: 0;
}

/* Verdict / quick-answer pull-quote */
.info-box {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--border);
  border-left: 6px solid var(--honey);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  box-shadow: var(--shadow-soft);
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin: 1rem 0 1.5rem;
}
.breadcrumbs a {
  color: var(--color-text-light);
}
.breadcrumbs a:hover {
  color: var(--green-700);
}

/* Affiliate disclosure */
.affiliate-disclosure {
  background: var(--cream-deep);
  border-left: 4px solid var(--honey);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* How-we-test CTA */
.how-we-test-cta {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin: 2.5rem 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 5px solid var(--green-700);
  background: var(--paper);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.how-we-test-cta svg {
  width: 30px;
  height: 30px;
  flex: none;
  color: var(--green-700);
  margin-top: 0.15rem;
}
.how-we-test-cta p {
  margin: 0;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05rem;
  font-family: var(--font-heading);
}
.faq-item summary:hover {
  color: var(--green-700);
}
.faq-item h3 {
  font-size: 1.05rem;
}
.faq-item p {
  margin-top: 0.5rem;
}

/* ==========================================================================
   Homepage extras: trust cards + breed grid
   ========================================================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.trust-card {
  padding: 1.5rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--green-600);
  box-shadow: var(--shadow-soft);
}
.trust-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--green-900);
}
.trust-card p {
  font-size: 0.95rem;
}

.breed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.breed-card {
  padding: 1rem 1.15rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: inherit;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.breed-card:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: var(--green-600);
}
.breed-card strong {
  color: var(--green-900);
  font-family: var(--font-heading);
  font-size: 1.02rem;
}
.breed-card span {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.guides-list {
  list-style: none;
  margin: 1rem 0 !important;
}
.guides-list li {
  padding: 0.55rem 0 0.55rem 1.7rem;
  position: relative;
  border-bottom: 1px dashed var(--border);
}
.guides-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 14px;
  height: 14px;
  background: var(--green-600);
  -webkit-mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12.5c-2.6 0-5.5 1.9-5.5 4.4 0 1.7 1.2 2.6 2.7 2.6 1 0 1.8-.4 2.8-.4s1.8.4 2.8.4c1.5 0 2.7-.9 2.7-2.6 0-2.5-2.9-4.4-5.5-4.4zM7 8.2c-.9-.3-1.9.4-2.2 1.5s.2 2.2 1.1 2.5 1.9-.4 2.2-1.5S7.9 8.5 7 8.2zm10 0c-.9.3-1.4 1.4-1.1 2.5s1.3 1.8 2.2 1.5 1.4-1.4 1.1-2.5S17.9 7.9 17 8.2zM9.8 4.1c-1 .2-1.6 1.4-1.4 2.6s1.2 2 2.2 1.8 1.6-1.4 1.4-2.6-1.2-2-2.2-1.8zm4.4 0c-1-.2-2 .6-2.2 1.8s.4 2.4 1.4 2.6 2-.6 2.2-1.8-.4-2.4-1.4-2.6z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 12.5c-2.6 0-5.5 1.9-5.5 4.4 0 1.7 1.2 2.6 2.7 2.6 1 0 1.8-.4 2.8-.4s1.8.4 2.8.4c1.5 0 2.7-.9 2.7-2.6 0-2.5-2.9-4.4-5.5-4.4zM7 8.2c-.9-.3-1.9.4-2.2 1.5s.2 2.2 1.1 2.5 1.9-.4 2.2-1.5S7.9 8.5 7 8.2zm10 0c-.9.3-1.4 1.4-1.1 2.5s1.3 1.8 2.2 1.5 1.4-1.4 1.1-2.5S17.9 7.9 17 8.2zM9.8 4.1c-1 .2-1.6 1.4-1.4 2.6s1.2 2 2.2 1.8 1.6-1.4 1.4-2.6-1.2-2-2.2-1.8zm4.4 0c-1-.2-2 .6-2.2 1.8s.4 2.4 1.4 2.6 2-.6 2.2-1.8-.4-2.4-1.4-2.6z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.home-cta-row {
  text-align: center;
  margin: 2rem 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--green-900);
  color: #cfe3d6;
  padding: 2.5rem 0 2rem;
  margin-top: 3.5rem;
  font-size: 0.9rem;
  border-top: 4px solid var(--honey);
}
.site-footer a {
  color: #eaf5ee;
  text-decoration: underline;
  text-decoration-color: rgba(233, 180, 76, 0.5);
}
.site-footer a:hover {
  color: var(--honey);
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-signoff {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 340px;
}
.footer-signoff svg {
  width: 52px;
  height: 52px;
  flex: none;
  color: var(--honey);
}
.footer-signoff p {
  margin: 0;
  font-style: italic;
  font-family: var(--font-heading);
}
.footer-signoff .signoff-by {
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #9fc4ad;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero-dog {
    width: 160px;
    opacity: 0.1;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .pros-cons,
  .product-card .pros-cons {
    grid-template-columns: 1fr;
  }
  .site-header .container {
    flex-direction: column;
    text-align: center;
  }
  .site-nav {
    justify-content: center;
  }
  .comparison-table {
    font-size: 0.85rem;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 0.5rem;
  }
  .site-footer .container {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}

/* Shop */
.shop-intro {
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 3rem;
}
.shop-card {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.shop-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.shop-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.shop-card-body h2 {
  font-size: 1.2rem;
  margin: 0;
}
.shop-badge {
  align-self: flex-start;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}
.shop-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: auto;
}
.shop-price-note {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-light);
}
.shop-order-btn {
  display: block;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}
.shop-order-btn:hover {
  background: var(--color-primary-light);
  color: #fff;
  text-decoration: none;
}
.shop-order-btn:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}
.shop-sizes {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}
.shop-sizes th,
.shop-sizes td {
  border: 1px solid var(--color-border);
  padding: 0.6rem 0.9rem;
  text-align: left;
}
.shop-sizes th {
  background: var(--color-bg);
}
.shop-size-tip {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Photos */
.hero-photo {
  margin: 2rem auto 0;
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.hero-photo img {
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}
.hero-photo figcaption {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 0.6rem;
}
.content-photo {
  margin: 1.5rem 0 2rem;
}
.content-photo img {
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}
.content-photo figcaption {
  font-size: 0.85rem;
  color: var(--color-text-light, #555);
  margin-top: 0.5rem;
  font-style: italic;
}
