/* =================================================================
   Kaffehjørnet — shared stylesheet
   Design tokens
   ================================================================= */
:root {
  /* Brand colours sampled directly from the My Coffee Shop logo */
  --espresso: #4B2A23;       /* logo brown */
  --espresso-light: #7A5249; /* lighter brown for body text */
  --parchment: #F4EBDA;      /* warm page background */
  --cream: #FBF5EA;          /* card surface */
  --logo-cream: #EADCC2;     /* the beige from the logo lettering */
  --copper: #B0512F;         /* terracotta accent, warm against the brown */
  --copper-dark: #8F3E22;
  --sage: #7C7A4E;           /* muted olive for deli/botanical cues */
  --gold: #C8A24E;           /* brass / signage gold */
  --wine: #7C2B2B;
  --ale: #C98B2E;
  --ink: #3A201A;
  --line: rgba(75, 42, 35, 0.16);
  --shadow: 0 14px 30px -16px rgba(75, 42, 35, 0.4);
  --radius: 18px;
  --ff-display: "Fraunces", Georgia, serif;
  --ff-body: "Karla", system-ui, sans-serif;
  --ff-chalk: "Caveat", cursive;
}

/* =================================================================
   Reset & base
   ================================================================= */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--parchment);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--espresso);
}
p { margin: 0 0 1em; }
:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 3px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.section--tight { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.section--dark {
  background: var(--espresso);
  color: var(--parchment);
}
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--card {
  background: var(--cream);
}

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--copper-dark);
  margin-bottom: 0.75rem;
  display: inline-block;
}
.section--dark .eyebrow { color: var(--gold); }

.lead {
  font-size: 1.1rem;
  max-width: 46ch;
  color: var(--espresso-light);
}
.section--dark .lead { color: var(--parchment); opacity: .85; }

/* =================================================================
   Buttons
   ================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn--primary {
  background: var(--copper);
  color: var(--cream);
}
.btn--primary:hover { background: var(--copper-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost {
  border-color: var(--espresso);
  color: var(--espresso);
  background: transparent;
}
.btn--ghost:hover { background: var(--espresso); color: var(--cream); }
.section--dark .btn--ghost { border-color: var(--parchment); color: var(--parchment); }
.section--dark .btn--ghost:hover { background: var(--parchment); color: var(--espresso); }
.chalkboard .btn--ghost { border-color: var(--parchment); color: var(--parchment); }
.chalkboard .btn--ghost:hover { background: var(--parchment); color: var(--espresso); }
.btn--block { width: 100%; justify-content: center; }
.btn--small { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

/* =================================================================
   Header / Nav
   ================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--parchment);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 64px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a {
  text-decoration: none;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--copper);
  transition: right .2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  right: 0;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--espresso);
  color: var(--cream);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}
.cart-link svg { width: 18px; height: 18px; }
.cart-count {
  background: var(--gold);
  color: var(--ink);
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-weight: 800;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; }

/* =================================================================
   Awning divider — signature element
   ================================================================= */
.awning {
  height: 46px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--copper) 0 36px,
    var(--logo-cream) 36px 72px
  );
  -webkit-mask-image: radial-gradient(circle at 18px 100%, transparent 18px, #000 19px);
          mask-image: radial-gradient(circle at 18px 100%, transparent 18px, #000 19px);
  -webkit-mask-size: 36px 100%;
          mask-size: 36px 100%;
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
}
.awning--flip {
  transform: scaleY(-1);
}

/* =================================================================
   Hero
   ================================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0.6em;
}
.hero h1 em {
  font-style: italic;
  color: var(--copper);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}
.hero-tagrow {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--espresso-light);
}
.hero-tagrow span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}
.hero-tagrow svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Shop window illustration */
.shopwindow {
  position: relative;
  background: var(--espresso);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.shopwindow-pane {
  background: linear-gradient(180deg, var(--cream) 0%, var(--parchment) 100%);
  border-radius: 18px;
  padding: 2.5rem 1.5rem 0;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.shelf-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 22px;
}
.shelf-row + .shelf-row {
  border-top: 6px solid var(--espresso-light);
  padding-top: 22px;
}
.open-sign {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 78px;
  height: 78px;
  background: var(--gold);
  color: var(--espresso);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--ff-chalk);
  font-size: 1.3rem;
  font-weight: 700;
  transform: rotate(-8deg);
  box-shadow: var(--shadow);
  border: 2px dashed var(--cream);
}

/* =================================================================
   Shelf-item illustrations (signature motif)
   Used in hero, category cards, and product cards
   ================================================================= */
.shelf-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 60px;
  height: 92px;
  flex-shrink: 0;
}
.shelf-item.shelf-item--sm { width: 46px; height: 72px; }

/* Bottle */
.bottle .neck {
  width: 12px; height: 16px;
  border-radius: 4px 4px 0 0;
  background: var(--espresso-light);
}
.bottle .body {
  width: 36px; height: 60px;
  border-radius: 10px 10px 16px 16px;
  margin-top: -2px;
  position: relative;
  background: var(--sage);
}
.bottle .label {
  position: absolute;
  left: 5px; right: 5px; top: 16px; height: 16px;
  background: var(--cream);
  border-radius: 3px;
}
.bottle--wine .neck, .bottle--wine .body { background: var(--wine); }
.bottle--gin .body { background: var(--sage); }
.bottle--gin .neck { height: 22px; }

/* Coffee bag */
.bag .bag-top {
  width: 46px; height: 14px;
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0% 100%);
  background: var(--espresso-light);
  margin-bottom: -2px;
}
.bag .bag-body {
  width: 46px; height: 50px;
  background: var(--copper);
  border-radius: 4px 4px 12px 12px;
  position: relative;
}
.bag .bag-mark {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  border: 2px solid var(--cream);
  border-radius: 50%;
}

/* Jar */
.jar .lid {
  width: 48px; height: 10px;
  background: var(--espresso-light);
  border-radius: 3px;
}
.jar .jar-body {
  width: 40px; height: 56px;
  background: var(--gold);
  border-radius: 6px 6px 14px 14px;
  margin-top: -2px;
  position: relative;
  overflow: hidden;
}
.jar .jar-body::after {
  content: "";
  position: absolute;
  top: 8px; left: 6px;
  width: 10px; height: 34px;
  background: rgba(255,255,255,.35);
  border-radius: 6px;
}

/* Chocolate bar */
.bar .bar-body {
  width: 54px; height: 36px;
  margin-bottom: 6px;
  background: var(--espresso-light);
  border-radius: 5px;
  background-image:
    repeating-linear-gradient(90deg, transparent 0 12px, var(--parchment) 12px 13px),
    repeating-linear-gradient(0deg, transparent 0 12px, var(--parchment) 12px 13px);
}

/* Beer can */
.can .can-body {
  width: 26px; height: 64px;
  background: var(--ale);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.can .can-body::after {
  content: "";
  position: absolute;
  top: 22px; left: 0; right: 0; height: 14px;
  background: var(--espresso-light);
}

/* Cheese wedge */
.cheese .cheese-body {
  width: 52px; height: 40px;
  background: var(--gold);
  clip-path: polygon(0 100%, 100% 100%, 100% 28%, 48% 0);
  position: relative;
  margin-bottom: 4px;
}
.cheese .cheese-body::before,
.cheese .cheese-body::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--cream);
}
.cheese .cheese-body::before { width: 7px; height: 7px; left: 14px; bottom: 10px; }
.cheese .cheese-body::after { width: 5px; height: 5px; left: 28px; bottom: 18px; }

/* Gift box */
.giftbox .box-body {
  width: 50px; height: 44px;
  background: var(--wine);
  border-radius: 4px;
  position: relative;
}
.giftbox .box-body::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 8px;
  transform: translateX(-50%);
  background: var(--gold);
}
.giftbox .box-body::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -6px;
  height: 8px;
  background: var(--gold);
}

/* =================================================================
   Category grid
   ================================================================= */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.category-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.category-card .shelf-item { margin: 0 auto 1rem; }
.category-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.category-card p { font-size: 0.85rem; color: var(--espresso-light); margin: 0; }

/* =================================================================
   Chalkboard / specials
   ================================================================= */
.chalkboard {
  background: var(--espresso);
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--parchment);
}
.chalkboard h2 {
  color: var(--cream);
  font-family: var(--ff-chalk);
  font-size: 2.6rem;
  transform: rotate(-1.2deg);
}
.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.special-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.special-card .shelf-item--sm { flex-shrink: 0; }
.special-card h3 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.special-card p {
  font-size: 0.85rem;
  color: var(--parchment);
  opacity: .8;
  margin-bottom: 0.5rem;
}
.special-price {
  font-family: var(--ff-chalk);
  font-size: 1.6rem;
  color: var(--gold);
}

/* =================================================================
   Services
   ================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.service-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--copper);
  color: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 22px; height: 22px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.service-card p { font-size: 0.9rem; color: var(--espresso-light); margin: 0; }

/* =================================================================
   Footer
   ================================================================= */
.site-footer {
  background: var(--espresso);
  color: var(--parchment);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.footer-grid h4 {
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-grid p, .footer-grid li {
  font-size: 0.9rem;
  color: var(--parchment);
  opacity: .85;
  margin-bottom: 0.5rem;
}
.footer-grid a { text-decoration: none; color: var(--parchment); opacity: .85; }
.footer-grid a:hover { opacity: 1; text-decoration: underline; }
.footer-logo {
  margin-bottom: 1rem;
  display: inline-flex;
}
.footer-logo img {
  height: 96px;
  width: auto;
  display: block;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 0.8rem;
  opacity: .7;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-list-icon {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.footer-list-icon svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--gold); }

/* =================================================================
   Shop page
   ================================================================= */
.shop-header {
  padding: 3rem 0 1rem;
  text-align: center;
}
.shop-header h1 { font-size: clamp(2.2rem, 4vw, 3rem); }
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0 2.5rem;
}
.filter-btn {
  border: 2px solid var(--line);
  background: var(--cream);
  color: var(--espresso);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all .15s ease;
}
.filter-btn:hover { border-color: var(--copper); }
.filter-btn.is-active {
  background: var(--espresso);
  border-color: var(--espresso);
  color: var(--cream);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.5rem;
  padding-bottom: 4rem;
}
.product-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-art {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--parchment), var(--cream));
}
.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.product-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper-dark);
}
.product-info h3 { font-size: 1.05rem; margin-bottom: 0; }
.product-brand {
  font-size: 0.82rem;
  color: var(--espresso-light);
  margin-bottom: 0.25rem;
}
.product-price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0.25rem 0 0.75rem;
}
.product-card .btn { margin-top: auto; }
.product-card.is-hidden { display: none; }

/* Age notice */
.age-notice {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(118,129,90,0.12);
  border: 1px solid rgba(118,129,90,0.3);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  margin-bottom: 2rem;
}
.age-notice svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--sage); }

/* =================================================================
   Product detail page
   ================================================================= */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0 4rem;
  align-items: flex-start;
}
.product-detail-art {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 24px;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail-art .shelf-item { width: 120px; height: 200px; transform: scale(1.7); }
.product-detail-art .bottle .body { width: 60px; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--espresso-light);
  margin-bottom: 1.5rem;
}
.breadcrumbs a { text-decoration: none; color: var(--copper-dark); font-weight: 700; }
.product-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}
.qty-input {
  display: flex;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.qty-input button {
  background: var(--cream);
  border: none;
  width: 40px; height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--espresso);
}
.qty-input button:hover { background: var(--parchment); }
.qty-input input {
  width: 44px;
  text-align: center;
  border: none;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  -moz-appearance: textfield;
}
.product-detail-list {
  margin: 1.5rem 0;
}
.product-detail-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
}
.product-detail-list svg { width: 18px; height: 18px; color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.related-heading { margin-top: 4rem; }

/* =================================================================
   About / story page
   ================================================================= */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.brand-pill {
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--espresso-light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.value-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.value-card .eyebrow { margin-bottom: 0.5rem; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
.hours-table {
  width: 100%;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}
.hours-table td { padding: 0.4rem 0; border-bottom: 1px solid var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.map-placeholder {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--espresso-light);
  text-align: center;
  padding: 2rem;
}
.map-placeholder svg { width: 36px; height: 36px; color: var(--copper); }

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-size: 0.85rem; font-weight: 700; }
.form-row input,
.form-row textarea {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--copper);
  outline: none;
}

/* =================================================================
   Cart page
   ================================================================= */
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
  align-items: flex-start;
}
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-art {
  width: 70px; height: 70px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cart-item-art .shelf-item { transform: scale(.55); }
.cart-item h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.cart-item p { font-size: 0.85rem; color: var(--espresso-light); margin: 0; }
.cart-item-price { font-family: var(--ff-display); font-weight: 700; white-space: nowrap; }
.cart-item-remove {
  background: none;
  border: none;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.cart-summary {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: sticky;
  top: 100px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.summary-row.total {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
}
.empty-cart {
  text-align: center;
  padding: 4rem 0;
}
.empty-cart .shelf-item { margin: 0 auto 1.5rem; transform: scale(1.4); }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 880px) {
  .hero, .product-detail, .story-grid, .visit-grid, .cart-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-summary { position: static; }
}
@media (max-width: 640px) {
  .container { padding-left: 28px; padding-right: 28px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 56px 1fr; grid-template-rows: auto auto; }
  .cart-item-price, .cart-item-remove { grid-column: 2; justify-self: start; }
}
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* =================================================================
   Google rating + social (added)
   ================================================================= */
.rating-band {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.rating-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
}
.rating-score {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rating-score .num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--espresso);
  line-height: 1;
}
.stars {
  display: inline-flex;
  gap: 2px;
}
.stars svg { width: 20px; height: 20px; }
.rating-text {
  font-size: 0.9rem;
  color: var(--espresso-light);
  max-width: 32ch;
  text-align: left;
}
.rating-text a { color: var(--copper-dark); font-weight: 700; }
.g-logo {
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.1rem;
}
.g-logo .b { color: #4285F4; } .g-logo .r { color: #EA4335; }
.g-logo .y { color: #FBBC05; } .g-logo .g { color: #34A853; }

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-row a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.social-row a:hover { background: rgba(255,255,255,0.18); }
.social-row svg { width: 20px; height: 20px; color: var(--parchment); }

.smiley-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #00843D;
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.smiley-link:hover { background: #006e33; }
.smiley-link svg { width: 20px; height: 20px; }

/* Oil bottle (deli) */
.bottle--oil .neck { height: 20px; background: var(--sage); }
.bottle--oil .body { background: var(--gold); }
.bottle--oil .label { background: var(--espresso-light); }

/* Bread */
.bread .bread-body {
  width: 58px; height: 44px;
  background: var(--copper);
  border-radius: 26px 26px 12px 12px / 30px 30px 12px 12px;
  position: relative;
  margin-bottom: 4px;
}
.bread .bread-body::before,
.bread .bread-body::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 3px; height: 18px;
  background: var(--espresso-light);
  border-radius: 2px;
  transform: rotate(20deg);
}
.bread .bread-body::before { left: 20px; }
.bread .bread-body::after { left: 32px; }

/* =================================================================
   Gift baskets (gaver) — Interflora-style themed hampers
   ================================================================= */
.hero--gaver {
  padding: 3.5rem 0 2rem;
  text-align: center;
}
.hero--gaver h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.hero--gaver .lead { margin: 0 auto; }

.occasion-filter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem 0 0.75rem;
}
.price-filter {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.5rem 0 0.5rem;
}
.price-filter .filter-btn { font-size: 0.8rem; padding: 0.45rem 1.1rem; opacity: 0.9; }

.basket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
  padding: 2.5rem 0 4rem;
}
.basket-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.basket-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.basket-art {
  height: 180px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  padding: 1.5rem 1rem 1.25rem;
  position: relative;
}
.basket-art .shelf-item { transform: scale(.9); }
.basket-ribbon {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--ff-chalk);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--copper);
  padding: 2px 14px;
  border-radius: 999px;
  transform: rotate(-3deg);
}
.basket-info {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.basket-info h3 { font-size: 1.2rem; margin: 0; }
.basket-info .desc { font-size: 0.9rem; color: var(--espresso-light); margin: 0; }
.basket-contents {
  font-size: 0.82rem;
  color: var(--espresso-light);
  margin: 0.25rem 0 0.75rem;
  line-height: 1.5;
}
.basket-price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--espresso);
}
.basket-card .btn { margin-top: auto; }
.basket-card.is-hidden { display: none; }

/* colour themes for the ribbon per basket */
.theme-sweet .basket-art { background: linear-gradient(180deg, #fbe9ec, var(--cream)); }
.theme-sweet .basket-ribbon { background: #b5476a; }
.theme-coffee .basket-art { background: linear-gradient(180deg, #efe0cf, var(--cream)); }
.theme-coffee .basket-ribbon { background: var(--copper-dark); }
.theme-tea .basket-art { background: linear-gradient(180deg, #e3ead9, var(--cream)); }
.theme-tea .basket-ribbon { background: var(--sage); }
.theme-celebrate .basket-art { background: linear-gradient(180deg, #f6ead2, var(--cream)); }
.theme-celebrate .basket-ribbon { background: var(--gold); color: var(--ink); }
.theme-classic .basket-art { background: linear-gradient(180deg, #ece1d8, var(--cream)); }
.theme-classic .basket-ribbon { background: var(--espresso); }
.theme-lux .basket-art { background: linear-gradient(180deg, #e8ddc9, var(--cream)); }
.theme-lux .basket-ribbon { background: var(--wine); }
.theme-beer .basket-art { background: linear-gradient(180deg, #f4e4c1, var(--cream)); }
.theme-beer .basket-ribbon { background: var(--ale); color: var(--ink); }
.theme-fresh .basket-art { background: linear-gradient(180deg, #e0ebdd, var(--cream)); }
.theme-fresh .basket-ribbon { background: #5f7d5a; }

.gaver-cta {
  background: var(--espresso);
  border-radius: 24px;
  padding: 2.5rem;
  color: var(--parchment);
  text-align: center;
  margin-bottom: 3rem;
}
.gaver-cta h2 { color: var(--cream); }
.gaver-cta p { max-width: 52ch; margin: 0 auto 1.25rem; opacity: .88; }

/* =================================================================
   Delivery postcode field (cart)
   ================================================================= */
.zip-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.zip-field label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--espresso);
}
.zip-field input {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--parchment);
  color: var(--ink);
  width: 100%;
}
.zip-field input:focus {
  border-color: var(--copper);
  outline: none;
}
.delivery-note {
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--espresso-light);
  margin: 0 0 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  background: rgba(124,122,78,0.10);
  border: 1px solid rgba(124,122,78,0.25);
}
.delivery-note.is-ok {
  background: rgba(0,132,61,0.10);
  border-color: rgba(0,132,61,0.30);
  color: #0b6e39;
}
.delivery-note.is-error {
  background: rgba(124,43,43,0.10);
  border-color: rgba(124,43,43,0.35);
  color: var(--wine);
}
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* =================================================================
   "Kommer snart" overlay (for shop & gaver in the pre-launch version)
   ================================================================= */
.coming-soon-dim {
  filter: grayscale(0.85) blur(2px);
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
.coming-soon-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(75, 42, 35, 0.45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.coming-soon-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg, 24px);
  box-shadow: 0 30px 60px -20px rgba(75,42,35,0.5);
  max-width: 460px;
  width: 100%;
  text-align: center;
  padding: 3rem 2.5rem;
}
.coming-soon-card .cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.coming-soon-card h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.coming-soon-card p {
  color: var(--espresso-light);
  font-size: 1rem;
  margin-bottom: 1.75rem;
}
.coming-soon-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.coming-soon-logo {
  height: 78px;
  width: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

/* =================================================================
   Real photography (added when shop photos were provided)
   ================================================================= */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--espresso);
  border: 8px solid var(--espresso);
  aspect-ratio: 4 / 3;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-lg, 24px) - 8px);
}
.hero-photo .open-sign {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
}

/* Photo band: full-width strip of a few shop photos */
.photo-band {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 10px;
  margin-top: 2.5rem;
}
.photo-band figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
}
.photo-band figure:first-child { grid-row: span 2; aspect-ratio: auto; }
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.photo-band figure:hover img { transform: scale(1.04); }

/* Story photo */
.story-photo {
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.story-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Two-up photo row (about page) */
.photo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.photo-duo figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.photo-duo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 880px) {
  .photo-band { grid-template-columns: 1fr 1fr; }
  .photo-band figure:first-child { grid-row: auto; aspect-ratio: 4/3; grid-column: span 2; }
}

/* =================================================================
   Embedded Google Map
   ================================================================= */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe {
  display: block;
  width: 100%;
}
