:root {
    --bg: #fff8e6;
    --ink: #1a1a1a;
    --accent: #ff7a59;   /* bright coral */
    --accent-2: #33d6a6; /* minty green */
    --accent-3: #7a8cff; /* periwinkle */
    --card: #ffffff;
    --ring: rgba(0,0,0,0.08);
  }
  
  * { box-sizing: border-box; }
  
  html, body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(135deg, var(--bg), #fff0cc 60%);
  }
  
  /* HEADER + FOOTER background */
  .site-header, .site-footer {
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
    color: #fff;
  }
  
  .site-header {
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .brand { display: grid; gap: .25rem; }
  .logo { color: #fff; text-decoration: none; font-size: 1.25rem; }
  .tagline em { font-style: italic; }
  
  .nav {
    list-style: none;
    display: flex;
    gap: .75rem;
    padding: .5rem 0 0;
    margin: 0;
    flex-wrap: wrap;
  }
  .nav a {
    display: inline-block;
    padding: .4rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    text-decoration: none;
    transition: transform .08s ease, background .2s ease;
  }
  .nav a:hover { transform: translateY(-1px); background: rgba(255,255,255,.28); }
  .nav a[aria-current="page"] { background: rgba(255,255,255,.38); }
  
  /* MAIN */
  main {
    max-width: 980px;
    margin: 2rem auto;
    padding: 0 1rem 3rem;
  }
  h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin: 0 0 1rem; }
  
  /* Card utility */
  .card {
    background: var(--card);
    border-radius: 16px;
    padding: 1rem;
    margin: 1rem 0;
    box-shadow: 0 6px 20px var(--ring);
  }
  
  /* Product rows */
  .product {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
    background: var(--card);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 6px 20px var(--ring);
    margin: 1rem 0;
  }
  
  .product figure { margin: 0; text-align: center; }
  
  /* ✏️ Change these to resize all reptile images */
  .product img {
    width: 180px;   /* change this value to resize width */
    height: 120px;  /* keeps row height consistent */
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }
  
  .product figcaption { margin: .5rem 0 0; font-size: 1rem; }
  .product-body p { margin: 0 0 .5rem; }
  .price { font-weight: 700; }
  
  /* Kits price list */
  .price-list {
    list-style: none;
    padding: 0;
    margin: .5rem 0 0;
  }
  .price-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: .6rem .8rem;
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 4px 14px var(--ring);
    margin: .5rem 0;
  }
  .fine { opacity: .8; font-size: .95rem; }
  
  /* FOOTER */
  .site-footer {
    padding: 1rem;
    text-align: center;
  }
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 .5rem;
    display: flex;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
  }
  .footer-links a {
    color: #fff;
    text-decoration: none;
    background: rgba(255,255,255,.18);
    border-radius: 999px;
    padding: .35rem .7rem;
  }
  .footer-links a:hover { background: rgba(255,255,255,.28); }
  .foot-slogan { margin: .25rem 0; }
  .tiny { opacity: .9; font-size: .875rem; }
  
  /* Footer credit link style */
  .site-footer .tiny a {
    color: inherit;        /* same color as surrounding text */
    text-decoration: none; /* remove underline */
    font: inherit;         /* same font family/size */
  }
  .site-footer .tiny a:hover {
    text-decoration: underline; /* subtle hover effect */
  }
  
  @media (min-width: 720px) {
    .brand { grid-template-columns: 1fr auto; align-items: end; }
    .tagline { justify-self: start; }
    .nav { justify-content: flex-end; }
  }