/* ========================================
   MARA — Artist Portfolio
   Inspired by Hannah Luen / Shopify style
   ======================================== */

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

:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F0EC;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: rgba(0, 0, 0, 0.1);
  --accent: #D4600A;
  --accent-soft: #F0A86C;
  --pink: #E8668B;
  --red: #B22234;
  --brown: #3D2318;
  --announcement-bg: #2C2C2C;
  --announcement-text: #F0A86C;
  --font-handwriting: 'Caveat', cursive;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, Helvetica Neue, sans-serif;
}

/* ---- Dark Mode ---- */
[data-theme="dark"] {
  --bg: #1A1A1A;
  --bg-alt: #242424;
  --text: #F0EDE8;
  --text-muted: #A0A0A0;
  --border: rgba(255, 255, 255, 0.15);
  --announcement-bg: #111;
  --announcement-text: #F0A86C;
}
[data-theme="dark"] .nav { background: rgba(26,26,26,0.97); border-bottom-color: #333; }
[data-theme="dark"] .nav a { color: #F0EDE8; }
[data-theme="dark"] .footer { background: #111; color: #A0A0A0; }
[data-theme="dark"] .footer__links a { color: #A0A0A0; }
[data-theme="dark"] .footer__links a:hover { color: #F0A86C; }
[data-theme="dark"] .contact { background: #1A1A1A; }
[data-theme="dark"] .contact__inner { background: #1A1A1A; }
[data-theme="dark"] .contact__form button { background: #F0A86C; color: #1A1A1A; border-color: #F0A86C; }
[data-theme="dark"] .contact__form button:hover { background: transparent; color: #F0A86C; border-color: #F0A86C; }
[data-theme="dark"] .about { background: #1A1A1A; }
[data-theme="dark"] input, [data-theme="dark"] textarea { background: #2A2A2A; color: #F0EDE8; border-color: #444; }
[data-theme="dark"] .hero__overlay-box { background: rgba(26, 26, 26, 0.92); }
[data-theme="dark"] .hero__btn { border-color: #F0EDE8; color: #F0EDE8; }
[data-theme="dark"] .hero__btn:hover { background: #F0EDE8; color: #1A1A1A; }
[data-theme="dark"] .collections__card { background: #242424; }

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

img, video, iframe { max-width: 100%; }

/* ---- Page transitions (navigateTo fade) ---- */
#main-content {
  opacity: 1;
  transition: opacity 0.22s ease;
}
#main-content.is-leaving {
  opacity: 0;
}
@media (prefers-reduced-motion: reduce) {
  #main-content { transition: none; }
}

/* ---- Announcement Bar ---- */
.announcement {
  background: var(--announcement-bg);
  color: var(--announcement-text);
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: var(--font-handwriting);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 101;
}

.shop-notice {
  background: #FFF7ED;
  color: #3D2318;
  border-bottom: 1px solid rgba(212, 96, 10, 0.22);
}

.shop-notice[hidden] {
  display: none;
}

.shop-notice__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.45;
}

.shop-notice__inner strong {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  flex-shrink: 0;
}

[data-theme="dark"] .shop-notice {
  background: #2A211C;
  color: #F0EDE8;
  border-bottom-color: rgba(240, 168, 108, 0.28);
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 160;
  background: var(--bg);
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.nav__logo {
  font-family: var(--font-handwriting);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.nav__center {
  display: flex;
  list-style: none;
  gap: 1.8rem;
  flex: 1;
  justify-content: center;
  position: relative;
}

.nav__center a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.nav__center a:hover {
  color: var(--accent);
}

.nav__center a.active {
  color: var(--text);
}

.nav__indicator {
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 0;
  height: 1px;
  background: #1A1A1A;
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
              width 0.36s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.2s ease;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .nav__indicator {
    transition: none;
  }
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.nav__icon {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1.1rem;
  padding: 4px;
  display: flex;
  align-items: center;
}

.mobile-auth {
  display: none;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
}

.hero__bg {
  width: 100%;
  line-height: 0;
}

.hero__bg svg,
.hero__bg img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__overlay-box {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  padding: 3.5rem 4.5rem;
  text-align: center;
  min-width: 380px;
}

.hero__welcome {
  font-family: var(--font-body);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero__btn {
  padding: 0.85rem 2rem;
  border: 1px solid var(--text);
  background: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero__btn:hover {
  background: var(--text);
  color: white;
}

/* ---- Welcome Section ---- */
.welcome-section {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Newsletter ---- */
/* ---- Checkout inputs ---- */
.checkout-input {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  box-sizing: border-box;
}
.checkout-zip-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}

/* ---- Section Common ---- */
.section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section--full {
  max-width: none;
  padding: 5rem 3rem;
}

.section__header {
  margin-bottom: 2.5rem;
}

.section__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section__subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- Gallery / Originals Grid ---- */
.originals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.originals__item {
  cursor: pointer;
}

.originals__item-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.originals__item-image img,
.originals__item-image svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.5s ease;
}

.originals__item:hover .originals__item-image img,
.originals__item:hover .originals__item-image svg {
  transform: scale(1.03);
}

.originals__badge {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: white;
  z-index: 2;
}

.originals__badge--sold {
  background: rgba(0, 0, 0, 0.75);
}

.originals__badge--available {
  background: var(--accent);
}

.originals__item-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.originals__item-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- Fine Art Prints ---- */
.prints__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.prints__card {
  cursor: pointer;
}

.prints__card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prints__card-image img,
.prints__card-image svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

.prints__card:hover .prints__card-image img,
.prints__card:hover .prints__card-image svg {
  transform: scale(1.03);
}

.prints__card-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.prints__card-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- Collections ---- */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.collections__card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.collections__card img,
.collections__card svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.6s ease;
}

.collections__card:hover img,
.collections__card:hover svg {
  transform: scale(1.04);
}

.collections__card-overlay {
  display: none;
}

.collections__card-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-body);
  font-size: 1.8rem;
  color: white;
  font-weight: 700;
}

/* ---- About ---- */
.about {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.about__image img,
.about__image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about__text h3 {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about__text p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

.about__signature {
  font-family: var(--font-handwriting);
  font-size: 2.5rem;
  color: var(--accent);
  margin-top: 1rem;
  display: inline-block;
}

/* ---- Contact ---- */
.contact {
  background: var(--bg-alt);
  padding: 6rem 3rem;
}

.contact__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact__info h3 {
  font-family: var(--font-body);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.contact__info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}

.contact__social {
  display: flex;
  gap: 1rem;
}

.contact__social a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.contact__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212, 96, 10, 0.05);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact__form input,
.contact__form textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 1rem 1.2rem;
  border: 1px solid #ddd;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s ease;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--accent);
}

.contact__form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact__form button {
  align-self: flex-start;
  padding: 0.85rem 2.5rem;
  border: 1px solid var(--text);
  background: var(--text);
  color: white;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact__form button:hover {
  background: transparent;
  color: var(--text);
}

/* ---- Footer ---- */
.footer {
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--accent);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__content {
  max-width: 80vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  transform: scale(0.9);
  transition: transform 0.4s ease;
  overflow-y: auto;
}

.lightbox.active .lightbox__content {
  transform: scale(1);
}

.lightbox__content img,
.lightbox__content svg {
  max-width: 100%;
  max-height: 58vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ---- Theme & Language Toggle ---- */
.nav__theme-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  padding: 0.2rem 0.4rem;
  color: var(--text);
  line-height: 1;
}
.nav__lang-select {
  background: none;
  border: 1px solid #ddd;
  font-family: var(--font-body);
  font-size: 0.78rem;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
  color: var(--text);
}
[data-theme="dark"] .nav__lang-select { border-color: #444; }

/* ---- Scroll Animations ---- */
.slide-in-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .originals__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nav__center {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .announcement {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }

  .nav {
    padding: 1rem 1.5rem;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__center {
    position: fixed;
    top: 0;
    left: unset;
    right: 0;
    width: 75%;
    height: 100vh;
    background: var(--bg);
    color: var(--text);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease, background 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25);
    z-index: 150;
  }

  .nav__center a {
    color: var(--text);
  }

  .mobile-auth {
    border-top-color: var(--text-muted) !important;
    opacity: 1;
  }

  .nav__center.open {
    transform: translateX(0);
  }

  .nav__center a {
    font-size: 1.1rem;
  }

  .nav__indicator {
    display: none;
  }

  .nav__right {
    display: flex;
    gap: 0.5rem;
  }

  .nav__right #auth-links {
    display: none !important;
  }

  .mobile-auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border, rgba(0,0,0,0.1));
  }

  .mobile-auth a {
    font-size: 1.1rem !important;
    color: var(--accent) !important;
  }

  .hero__bg img,
  .hero__bg svg {
    height: 360px;
    object-fit: cover;
  }

  .hero__overlay-box {
    padding: 2rem 1.5rem;
    min-width: auto;
    width: 85%;
  }

  .hero__welcome {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .originals__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .prints__grid {
    grid-template-columns: 1fr;
  }

  .collections__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about {
    padding: 4rem 1.5rem;
  }

  .about__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact {
    padding: 4rem 1.5rem;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Checkout page — stack zip/city, prevent iOS input zoom */
  .checkout-page { padding: 0 1rem 2rem !important; margin-top: 30px !important; }
  .checkout-zip-row { grid-template-columns: 1fr; }
  .checkout-input { font-size: 1rem !important; }

  /* Shop page — tighter padding & full-width filters */
  .page-shop {
    padding: 1.5rem 1rem !important;
  }
  .page-shop h2 {
    font-size: 2.4rem !important;
  }
  .shop-filter-bar {
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
  }
  .shop-filter-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.2rem;
  }
  .shop-filter-select {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
    padding: 0.55rem 0.6rem;
    font-size: 0.85rem;
  }
  .shop-count {
    width: 100%;
    margin-left: 0;
    margin-top: 0.3rem;
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .shop-card__title { font-size: 0.95rem; }
  .shop-card__size, .shop-card__price { font-size: 0.78rem; }
}

@media (max-width: 480px) {
  .shop-grid {
    gap: 0.6rem;
  }
  .shop-card__badge, .shop-card__cat {
    font-size: 0.62rem;
    padding: 0.18rem 0.45rem;
  }
}

/* ---- Shop card (Shop grid) ---- */
.shop-card {
  cursor: pointer;
}
.shop-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
}
.shop-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}
.shop-card:hover .shop-card-img {
  transform: scale(1.04);
}
.shop-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.shop-card__badge {
  position: absolute;
  bottom: 0.7rem;
  left: 0.7rem;
  padding: 0.25rem 0.7rem;
  font-size: 0.7rem;
  color: white;
}
.shop-card__badge--available { background: var(--accent); }
.shop-card__badge--sold { background: rgba(0, 0, 0, 0.6); }
.shop-card__cat {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
[data-theme="dark"] .shop-card__cat { background: rgba(36, 36, 36, 0.92); color: var(--text); }
.shop-card__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text);
}
.shop-card__size {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.shop-card__price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.shop-card__price--sold { color: var(--text-muted); }

/* ---- Shop filters ---- */
.shop-filter-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.shop-filter-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-right: 0.3rem;
}
.shop-filter-select {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  background: var(--bg);
  color: var(--text);
}
[data-theme="dark"] .shop-filter-select { border-color: rgba(255,255,255,0.2); }
.shop-count {
  margin-left: auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 640px) {
  .shop-notice__inner {
    flex-direction: column;
    padding: 0.8rem 1rem;
    gap: 0.35rem;
  }
}
