/*
Theme Name: Sustainable Shortcuts Hermes
Theme URI: https://sustainableshortcuts.com
Author: Karolina Motulewska
Description: Hermes-inspired editorial theme with illustrated category grid and Weimaraner loader
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: ss-hermes
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=EB+Garamond:ital,wght@0,400;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream:  #f5f2eb;
  --cream2: #ede8df;
  --ink:    #1a1410;
  --mid:    #8a7a6a;
  --light:  #d5cec4;
  --red:    #8B1A1A;
  --white:  #fdfbf7;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'EB Garamond', serif;
  cursor: none;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* CURSOR */
#ss-cursor {
  width: 7px; height: 7px;
  background: var(--ink);
  border-radius: 50%;
  position: fixed; pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s, border .2s;
  top: -20px; left: -20px;
}

/* ══ LOADER ══ */
#ss-loader {
  position: fixed; inset: 0; z-index: 9998;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity .9s ease;
}
#ss-loader.out { opacity: 0; pointer-events: none; }

.loader-track {
  position: absolute; bottom: 50%;
  left: 0; right: 0; height: 1px;
  background: var(--light);
}

.dog-run {
  position: absolute; bottom: 50%;
  left: -200px;
  display: flex; align-items: flex-end; gap: 18px;
  animation: doggo 2.2s cubic-bezier(.4,0,.2,1) forwards;
}
@keyframes doggo { 0%{left:-200px} 100%{left:calc(100vw + 40px)} }

.dog-bounce { animation: dbounce .28s ease-in-out infinite alternate; flex-shrink: 0; }
@keyframes dbounce { 0%{transform:translateY(0)} 100%{transform:translateY(-8px)} }

.lb1 { transform-box:fill-box; transform-origin:top center; animation:lb1 .28s ease-in-out infinite alternate; }
.la1 { transform-box:fill-box; transform-origin:top center; animation:la1 .28s ease-in-out infinite alternate; }
@keyframes lb1 { 0%{transform:rotate(-40deg)} 100%{transform:rotate(34deg)} }
@keyframes la1 { 0%{transform:rotate(34deg)} 100%{transform:rotate(-40deg)} }

.dtail { transform-box:fill-box; transform-origin:bottom center; animation:wag .2s ease-in-out infinite alternate; }
@keyframes wag { 0%{transform:rotate(-16deg)} 100%{transform:rotate(16deg)} }

.dear { transform-box:fill-box; transform-origin:top right; animation:ear .28s ease-in-out infinite alternate; }
@keyframes ear { 0%{transform:rotate(-10deg)} 100%{transform:rotate(7deg)} }

.ball-wrapper {
  animation: ballbounce .28s ease-in-out infinite alternate;
  margin-bottom: 4px; flex-shrink: 0;
}
@keyframes ballbounce {
  0%   { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-22px) rotate(30deg); }
}

.loader-brand {
  position: absolute; bottom: calc(50% - 52px);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1rem;
  color: var(--mid); letter-spacing: 0.05em;
}

/* ══ CAT NAV BAR ══ */
.cat-nav {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink);
  padding: 0.65rem 1.2rem;
  border-right: 1px solid var(--light);
  display: block; white-space: nowrap;
  transition: color .2s;
}
.cat-nav a:first-child { border-left: 1px solid var(--light); }
.cat-nav a:hover { color: var(--red); }
.cat-nav a.active { color: var(--red); }

/* ══ TICKER ══ */
.ticker-wrap {
  overflow: hidden;
  border-bottom: 1px solid var(--light);
  padding: 0.75rem 0;
  background: var(--cream);
}
.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: tick 28s linear infinite;
}
.ticker-item {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem; font-weight: 300;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mid); padding: 0 3rem;
}
.ticker-item::after { content: ' ✦'; }
@keyframes tick { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══ HEADER ══ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--ink);
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  max-width: 1300px; margin: 0 auto;
  border-bottom: 1px solid var(--light);
}

.h-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
  width: 160px;
}

.h-left { width: 120px; }
.h-right { width: 120px; display: flex; justify-content: flex-end; }

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 0;
}
.hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--ink); transition: all .3s;
}
.hamburger:hover span { background: var(--red); }

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.6rem; font-weight: 600;
  color: var(--ink); text-align: center; flex: 1;
  letter-spacing: -0.01em; text-decoration: none;
}
.site-logo:hover { color: var(--red); }

.h-subscribe {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--ink);
  padding-bottom: 1px; text-decoration: none;
  transition: color .2s, border-color .2s;
}
.h-subscribe:hover { color: var(--red); border-color: var(--red); }

/* ══ HERO ══ */
.hero {
  height: 92vh; position: relative;
  overflow: hidden; background: var(--ink);
}
.hero img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.15);
  transition: transform 10s ease;
}
.hero:hover img { transform: scale(1.03); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(20,16,10,.62) 100%);
}

.hero-content {
  position: absolute;
  bottom: 3.5rem; left: 3rem; right: 3rem;
  color: var(--white);
}

.hero-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-kicker::before {
  content: ''; width: 1.5rem; height: 1px;
  background: rgba(255,255,255,.5);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1; max-width: 700px;
  margin-bottom: 1.5rem;
}

.hero-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 2px; display: inline-block;
  transition: border-color .2s;
}
.hero-cta:hover { border-color: white; }

/* ══ SECTION LABEL ══ */
.section-label {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 2.5rem;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--light);
}

.section-label-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap; color: var(--ink);
}

.section-label-line { flex: 1; height: 1px; background: var(--light); }

.section-label-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
  white-space: nowrap; transition: color .2s;
}
.section-label-link:hover { color: var(--red); }

/* ══ CATEGORY GRID ══ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px; background: var(--light);
}

.cat-cell {
  background: var(--cream);
  overflow: hidden; position: relative;
  aspect-ratio: 4/5;
  display: flex; flex-direction: column;
  text-decoration: none;
}

.cat-img { flex: 1; overflow: hidden; }
.cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.15);
  transition: transform .8s ease, filter .5s ease;
}
.cat-cell:hover .cat-img img {
  transform: scale(1.08);
  filter: saturate(1.5);
}

.cat-label {
  padding: 0.9rem 1.2rem;
  border-top: 1px solid var(--light);
  background: var(--cream);
}
.cat-label span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  transition: color .2s;
}
.cat-cell:hover .cat-label span { color: var(--red); }

/* ══ EDITORIAL FEATURED ══ */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 65vh;
}

.editorial-img { overflow: hidden; }
.editorial-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.1);
  transition: transform .8s ease;
}
.editorial:hover .editorial-img img { transform: scale(1.04); }

.editorial-text {
  background: var(--cream2);
  padding: 5rem 4rem;
  display: flex; flex-direction: column;
  justify-content: center; position: relative;
}

.editorial-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1.5rem;
}
.editorial-kicker a { color: var(--red); }

.editorial-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.05;
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.editorial-title a { color: var(--ink); transition: color .2s; }
.editorial-title a:hover { color: var(--red); }

.editorial-excerpt {
  font-size: 1.05rem; font-style: italic;
  line-height: 1.7; color: #5a4a3a;
  margin-bottom: 2rem; max-width: 380px;
  border-left: 2px solid var(--red);
  padding-left: 1rem;
}

.editorial-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px; display: inline-block;
  width: fit-content; transition: color .2s, border-color .2s;
}
.editorial-cta:hover { color: var(--red); border-color: var(--red); }

/* ══ STORY LIST ══ */
.story-list {
  max-width: 900px; margin: 0 auto;
  padding: 0 2.5rem;
}

.story-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--light);
  align-items: start;
}

.story-thumb { overflow: hidden; }
.story-thumb a { display: block; overflow: hidden; }
.story-thumb img {
  width: 220px; height: 155px; object-fit: cover;
  filter: saturate(1.1);
  transition: transform .6s ease, filter .4s;
}
.story-thumb img:hover { transform: scale(1.06); filter: saturate(1.5); }

.story-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 0.6rem;
}
.story-cat a { color: var(--red); }

.story-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.6rem;
  font-weight: 600; line-height: 1.15;
  margin-bottom: 0.7rem; letter-spacing: -0.01em;
}
.story-title a { color: var(--ink); transition: color .2s; }
.story-title a:hover { color: var(--red); }

.story-excerpt {
  font-size: 1rem; font-style: italic;
  line-height: 1.6; color: #6a5a4a;
  margin-bottom: 0.8rem;
}

.story-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid);
  margin-bottom: 0.8rem;
}

.story-read {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.story-read:hover { color: var(--red); border-color: var(--red); }

/* ══ SINGLE POST ══ */
.single-header {
  max-width: 680px; margin: 4rem auto 2rem;
  padding: 0 2rem; text-align: center;
}

.single-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem; display: block;
}
.single-cat a { color: var(--red); }

.single-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 600; line-height: 1.05;
  margin-bottom: 1.2rem; letter-spacing: -0.01em;
}

.single-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
  padding-bottom: 2rem; border-bottom: 1px solid var(--light);
}

.single-hero-img {
  max-width: 900px; margin: 2.5rem auto;
  padding: 0 2rem;
}
.single-hero-img img {
  width: 100%; height: 480px; object-fit: cover;
}

.single-content {
  max-width: 660px; margin: 0 auto;
  padding: 0 2rem 5rem;
  font-size: 1.15rem; line-height: 1.85;
  color: #2a1e14;
}
.single-content p { margin-bottom: 1.5rem; }

.single-content p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem; font-weight: 600;
  float: left; line-height: 0.78;
  margin: 0.08em 0.1em 0 0; color: var(--ink);
}

.single-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.6rem;
  text-align: center;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  border-left: none; padding: 1.5rem 0;
  margin: 2.5rem 0; color: var(--ink);
}

.single-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  margin: 2.5rem 0 1rem;
}

.single-content a { color: var(--red); text-decoration: underline; }
.single-content img { width: 100%; margin: 2rem 0; }

/* ══ PAGE TEMPLATE ══ */
.page-header {
  max-width: 680px; margin: 4rem auto 2rem;
  padding: 0 2rem; text-align: center;
  border-bottom: 1px solid var(--light);
  padding-bottom: 2rem;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 3rem; font-weight: 600;
  margin-bottom: 0.5rem;
}
.page-content {
  max-width: 660px; margin: 0 auto;
  padding: 2rem 2rem 5rem;
  font-size: 1.1rem; line-height: 1.8; color: #2a1e14;
}
.page-content p { margin-bottom: 1.5rem; }
.page-content a { color: var(--red); }

/* ══ ARCHIVE ══ */
.archive-header {
  padding: 3rem 2.5rem 1rem;
  max-width: 900px; margin: 0 auto;
}
.archive-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 3rem; font-weight: 600;
}

/* ══ NEWSLETTER ══ */
.nl-section {
  background: var(--ink);
  margin-top: 4rem;
  padding: 5rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.nl-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; color: var(--cream);
  line-height: 1.05; margin-bottom: 1rem;
}

.nl-desc {
  font-size: 1rem; font-style: italic;
  line-height: 1.7; color: rgba(245,242,235,.45);
}

.nl-form { display: flex; flex-direction: column; }

.nl-input {
  width: 100%; padding: 1.1rem 0;
  border: none; border-bottom: 1px solid rgba(245,242,235,.18);
  background: transparent;
  font-family: 'EB Garamond', serif;
  font-size: 1rem; font-style: italic;
  color: var(--cream); outline: none;
  transition: border-color .2s;
}
.nl-input:focus { border-color: rgba(245,242,235,.5); }
.nl-input::placeholder { color: rgba(245,242,235,.28); }

.nl-btn {
  margin-top: 2rem; padding: 1rem;
  background: var(--cream); color: var(--ink);
  border: none; cursor: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: background .2s, color .2s;
}
.nl-btn:hover { background: var(--red); color: var(--cream); }

/* ══ FOOTER ══ */
.site-footer {
  padding: 1.8rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--light);
  background: var(--cream);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.1rem; font-weight: 600;
}

.footer-tagline, .footer-location {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mid);
}

/* ══ PAGINATION ══ */
.ss-pagination {
  display: flex; justify-content: center; gap: 0.5rem;
  padding: 3rem 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  border-top: 1px solid var(--light);
}
.ss-pagination a, .ss-pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid var(--light);
  color: var(--ink); transition: all .2s;
}
.ss-pagination a:hover, .ss-pagination .current {
  background: var(--ink); color: var(--cream);
  border-color: var(--ink);
}

/* ══ MOBILE ══ */
@media (max-width: 768px) {
  .header-inner { padding: 0.9rem 1.2rem; }
  .h-left, .h-right { width: auto; }
  .site-logo { font-size: 1.2rem; }
  .hero-content { left: 1.5rem; right: 1.5rem; bottom: 2rem; }
  .hero-title { font-size: 2.2rem; }
  .section-label { padding: 0.9rem 1.2rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .editorial { grid-template-columns: 1fr; }
  .editorial-img { height: 55vw; }
  .editorial-text { padding: 2.5rem 1.5rem; }
  .story-list { padding: 0 1.2rem; }
  .story-item { grid-template-columns: 1fr; gap: 1rem; }
  .story-thumb img { width: 100%; height: 200px; }
  .nl-section { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2rem; }
  .site-footer { flex-direction: column; gap: 0.7rem; text-align: center; padding: 1.5rem; }
  .single-header { padding: 0 1.2rem; margin: 2rem auto 1rem; }
  .single-title { font-size: 2rem; }
  .single-content { padding: 0 1.2rem 3rem; font-size: 1.05rem; }
  .single-hero-img { padding: 0 1.2rem; }
  .single-hero-img img { height: 250px; }
}

/* ══════════════════════════════
   TOP STORIES SLIDER
══════════════════════════════ */
.slider-wrap {
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--light);
}

.slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 3px;
  background: var(--light);
  padding-bottom: 0;
}
.slider-track::-webkit-scrollbar { display: none; }

.slider-card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 300px;
  background: var(--cream);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: background .3s;
}
.slider-card:hover { background: var(--cream2); }

.slider-img {
  width: 300px;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.slider-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform .6s ease, filter .4s;
}
.slider-card:hover .slider-img img {
  transform: scale(1.06);
  filter: saturate(1.5);
}

.slider-body {
  padding: 1.2rem 1.4rem 1.5rem;
  flex: 1;
}

.slider-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.slider-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.slider-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}

/* SLIDER ARROWS */
.slider-arrows {
  display: flex;
  gap: 0.5rem;
}

.slider-arrow {
  background: none;
  border: 1px solid var(--light);
  color: var(--ink);
  width: 28px; height: 28px;
  font-size: 0.85rem;
  cursor: none;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.slider-arrow:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ══════════════════════════════
   WORLD MAP
══════════════════════════════ */
.world-map-section {
  background: var(--cream2);
  padding: 3rem 2.5rem 2.5rem;
  border-bottom: 1px solid var(--light);
}

.map-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mid);
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.world-map {
  width: 100%;
  height: auto;
  display: block;
}

.map-dot {
  cursor: none;
  transition: opacity .2s;
}
.map-dot:hover { opacity: 0.8; }
.map-dot circle:first-child {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { r: 7; opacity: 0.85; }
  50%       { r: 9; opacity: 0.65; }
}

.map-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}
.map-legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}

/* MAP TOOLTIP */
.map-tooltip-html {
  position: absolute;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1rem;
  pointer-events: none;
  z-index: 10;
  display: none;
  min-width: 160px;
}
.map-tooltip-html .tt-place {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.2rem;
}
.map-tooltip-html .tt-story {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
}

/* ══════════════════════════════
   SHOP — PRINTS
══════════════════════════════ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--light);
  border-bottom: 1px solid var(--light);
}

.shop-item {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  transition: background .3s;
}
.shop-item:hover { background: var(--cream2); }

.shop-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.shop-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transition: transform .8s ease, filter .5s;
}
.shop-item:hover .shop-img img {
  transform: scale(1.06);
  filter: saturate(1.5);
}

.shop-img-placeholder {
  width: 100%; height: 100%;
  background: var(--cream2);
}

.shop-info {
  padding: 1.4rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.shop-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}

.shop-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
}

.shop-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.shop-btn {
  margin-top: 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  display: inline-block;
  width: fit-content;
  transition: color .2s, border-color .2s;
}
.shop-btn:hover { color: var(--red); border-color: var(--red); }

/* MOBILE ADDITIONS */
@media (max-width: 768px) {
  .slider-card { width: 240px; }
  .slider-img { width: 240px; height: 180px; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid .shop-item:last-child { display: none; }
  .world-map-section { padding: 2rem 1.2rem; }
}
