/*
Theme Name: WOW!CHA
Theme URI: https://wowcha.tokyo/
Author: Rim Entertainment Inc.
Author URI: https://rimentertainment.tokyo/
Description: Custom theme for WOW!CHA — Authentic Japanese Tea, Tokyo Street Style.
Version: 2.0.0
License: All Rights Reserved
Text Domain: wowcha
*/

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 60px; }

/* ===== BRAND TOKENS ===== */
:root {
  /* Color System (semantic naming) */
  --color-primary: #101010;
  --color-bg: #FAFAFA;
  --color-text: #101010;
  --color-text-inverse: #FAFAFA;
  --color-accent: #12d9e8;

  /* Fonts */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', 'Noto Sans JP', sans-serif;

  /* Typography — 4 sizes: caption / body / sub-heading / display(clamp) */
  --text-sm: 14px;
  --text-base: 20px;
  --text-lg: 28px;
  --text-xl: 48px;
  --text-2xl: 76px;

  /* Spacing — 8pt grid */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-base: 24px;
  --space-lg: 32px;
  --space-xl: 56px;
  --space-2xl: 88px;
  --space-3xl: 120px;
}

html { scroll-behavior: smooth; font-size: var(--text-base); }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.778; /* 18px × 1.778 = 32px (8の倍数) */
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--color-primary);
  color: var(--color-bg);
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* Bebas Neue ascender compensation — visually align section padding */
.about-title,
.menu-title,
.location-title,
.shop-title,
.contact-title {
  margin-top: -0.22em;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-base);
}

.section-dark {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.section-dark + .section-dark { padding-top: 0; }
.section-light + .section-light { padding-top: 0; }

.section-light {
  background: var(--color-bg);
  color: var(--color-text);
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-primary);
}

body.admin-bar nav {
  top: 32px;
}

.nav-logo svg {
  width: 140px;
  height: auto;
  transition: opacity 0.3s;
}

.nav-logo:hover svg { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--color-text-inverse);
  transition: opacity 0.3s;
}

.nav-links a:hover { opacity: 0.6; }

/* ===== ABOUT ===== */
.about {
  padding: var(--space-2xl) 0;
  padding-top: calc(var(--space-3xl) + 48px);
}

.about-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 6vw, var(--text-2xl));
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
}

.about-body {
  font-size: var(--text-base);
  line-height: 2;
  max-width: 640px;
  font-weight: 300;
}

.about-body p + p {
  margin-top: var(--space-base);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0,0,0,0.1);
}

.about-feature-num {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  line-height: 1;
  margin-bottom: var(--space-xs);
  opacity: 0.15;
}

.about-feature-title {
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.about-feature-desc {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.714; /* 14px × 1.714 ≈ 24px (4の倍数) */
}

/* ===== MENU ===== */
.menu {
  padding: var(--space-2xl) 0;
}

.menu-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.menu-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 6vw, var(--text-2xl));
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}

.menu-size-note {
  font-size: var(--text-base);
  font-weight: 300;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.02em;
}

.menu-subtitle {
  font-size: var(--text-sm);
  font-weight: 300;
  margin-bottom: var(--space-xl);
  letter-spacing: 0.05em;
}

.menu-category {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.06em;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.menu-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.menu-item-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-img-placeholder {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item-img-placeholder svg {
  display: none;
}

.menu-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px var(--space-base);
  background: rgba(0,0,0,0.65);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.03em;
  line-height: 1;
}

.menu-item-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  opacity: 0.7;
  display: block;
  margin-top: 4px;
}


.menu-item-note {
  font-size: var(--text-base);
  font-weight: 300;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.menu-item-tags {
  display: flex;
  gap: var(--space-xs);
}

.menu-tag {
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px var(--space-sm);
  border: 1px solid rgba(255,255,255,0.3);
}


/* ===== LOCATION ===== */
.location {
  padding: var(--space-2xl) 0;
}

.location-label {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.location-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 6vw, var(--text-2xl));
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
}

.location-body {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2;
  max-width: 640px;
  margin-bottom: var(--space-xl);
}

.location-areas {
  display: flex;
  gap: var(--space-base);
  margin-bottom: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: var(--space-sm);
}

.location-areas::-webkit-scrollbar {
  height: 4px;
}

.location-areas::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
}

.location-areas::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
}

.location-area {
  flex: 0 0 320px;
  text-align: center;
  scroll-snap-align: start;
  border: 1px solid rgba(0,0,0,0.08);
}

.location-area-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: rgba(0,0,0,0.06);
}

div.location-area-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: rgba(0,0,0,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-area-text {
  padding: var(--space-base);
}

.location-area-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.06em;
  padding: var(--space-sm) 0;
}

.location-area-jp {
  font-size: var(--text-sm);
}

/* CTA — Instagram link */
.location-cta {
  display: flex;
  align-items: center;
  gap: var(--space-base);
  padding: 20px 28px;
  background: transparent;
  border: 1px solid var(--color-text);
  color: var(--color-text);
  max-width: 480px;
  transition: background 0.3s, color 0.3s;
}

.location-cta:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.location-cta-ig-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.location-cta-text {
  flex: 1;
}

.location-cta-title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.08em;
  line-height: 1;
  display: block;
}

.location-cta-arrow {
  font-family: var(--font-display);
  font-size: 24px;
  transition: transform 0.3s;
}

.location-cta:hover .location-cta-arrow {
  transform: translateX(4px);
}

/* ===== CONTACT PAGE ===== */
.contact-page {
  padding: var(--space-2xl) 0;
  padding-top: calc(var(--space-3xl) + 48px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-page .contact-title {
  text-align: center;
  width: 100%;
}

.contact-page .contact-body {
  max-width: 640px;
  margin-bottom: var(--space-xl);
  text-align: center;
}

.contact-privacy {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  display: inline;
}

.contact-privacy a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  max-width: 640px;
  width: 100%;
}

/* ===== THANKS PAGE ===== */
.thanks-page {
  padding: var(--space-2xl) 0;
  padding-top: calc(var(--space-3xl) + 48px);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== ACCORDION SMALL TEXT ===== */
.accordion-body-sm p {
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.accordion-body-sm p:last-child {
  margin-bottom: 0;
}

.section-dark .accordion-title {
  border-bottom-color: rgba(255,255,255,0.3);
}

/* ===== SHOP + CONTACT (2-column on desktop) ===== */
.shop-contact {
  padding: var(--space-2xl) 0;
}

.shop-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.shop-contact-col {
  display: flex;
  flex-direction: column;
}

.shop-title, .contact-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 6vw, var(--text-2xl));
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
  text-align: center;
}

.shop-body, .contact-body {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2;
  margin-bottom: var(--space-lg);
}

.cta-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.06em;
  padding: var(--space-sm) var(--space-xl);
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  transition: all 0.3s;
  margin-top: auto;
  text-align: center;
}

.cta-btn:hover {
  background: var(--color-accent);
  color: var(--color-text);
}

.contact-note {
  font-size: var(--text-sm);
  font-weight: 300;
  margin-top: var(--space-lg);
  line-height: 1.714;
}

/* ===== ACCORDION ===== */
.accordion {
  border: none;
}

.accordion-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  line-height: 1.286; /* 28px × 1.286 = 36px (4の倍数) */
  letter-spacing: 0.06em;
  padding: var(--space-sm) 0;
  border-bottom: 2px solid var(--color-text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.accordion-title::-webkit-details-marker { display: none; }

.accordion-title::after {
  content: '+';
  font-family: var(--font-display);
  font-size: var(--text-lg);
  transition: transform 0.3s;
}

.accordion[open] .accordion-title::after {
  content: '−';
}

.accordion-body {
  padding-top: var(--space-lg);
}

/* ===== LEGAL ===== */
.legal {
  padding: var(--space-base) 0 0;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.legal-table th,
.legal-table td {
  text-align: left;
  padding: var(--space-sm) 0;
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.778; /* 18px × 1.778 = 32px (8の倍数) */
  border-bottom: 1px solid rgba(0,0,0,0.08);
  vertical-align: top;
}

.legal-table th {
  width: 200px;
  font-weight: 500;
  padding-right: var(--space-lg);
  white-space: nowrap;
}

/* ===== PRIVACY ===== */
.privacy {
  padding: 0 0 var(--space-lg);
}

.privacy-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-text);
}

.privacy-section {
  margin-bottom: var(--space-lg);
}

.privacy-section:last-child {
  margin-bottom: 0;
}

.privacy-section-title {
  font-weight: 500;
  font-size: var(--text-base);
  margin-bottom: var(--space-xs);
}

.privacy-section-body {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2;
}

/* ===== FOOTER ===== */
footer {
  padding: var(--space-sm) 0;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: var(--color-text-inverse);
  text-align: center;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  transition: opacity 0.3s;
}

.footer-links a:hover { opacity: 0.6; }

/* ===== RESPONSIVE: Tablet ===== */
@media (max-width: 1024px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-base);
  }
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-inverse);
  margin: 5px 0;
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  padding-top: 80px;
}

.mobile-overlay.active {
  display: flex;
}

.mobile-overlay a {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.08em;
  color: var(--color-text-inverse);
  transition: opacity 0.3s;
}

.mobile-overlay a:hover {
  opacity: 0.6;
}

.contact-body br.mobile-br {
  display: none;
}

/* ===== RESPONSIVE: Mobile ===== */
@media (max-width: 768px) {
  nav {
    padding: var(--space-sm) var(--space-base);
    justify-content: center;
    padding-top: max(var(--space-sm), env(safe-area-inset-top));
  }

  .nav-logo svg {
    width: 150px;
  }

  .nav-links {
    display: none;
  }

  .container {
    padding: 0 var(--space-base);
  }

  .about {
    padding: 40px 0 40px;
    padding-top: calc(48px + 68px);
  }

  .menu, .location {
    padding: 40px 0 48px;
  }

  .shop-contact {
    padding: 40px 0 32px;
  }


  .contact-page {
    padding: 40px 0 48px;
    padding-top: calc(48px + 68px);
  }

  .shop-contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: var(--space-base);
  }

  .menu-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 var(--space-base);
    margin: 0 calc(-1 * var(--space-base));
    scrollbar-width: none;
  }

  .menu-grid::-webkit-scrollbar {
    display: none;
  }

  .menu-item {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    border-radius: 6px;
  }

  .menu-item-info {
    padding: 14px 20px;
  }

  .menu-item-name {
    font-size: 22px;
  }

  .menu-item-price {
    font-size: 26px;
  }

  .menu-item-desc {
    font-size: 16px;
    margin-top: 3px;
  }

  .location-areas {
    margin-left: calc(-1 * var(--space-base));
    margin-right: calc(-1 * var(--space-base));
    padding-left: var(--space-base);
    padding-right: var(--space-base);
  }

  .location-area {
    flex: 0 0 85vw;
  }

  .location-cta {
    max-width: 100%;
    padding: 16px 20px;
    gap: var(--space-sm);
  }

  .location-cta-ig-icon {
    width: 28px;
    height: 28px;
  }

  .location-cta-title {
    font-size: 22px;
  }

  .cta-btn {
    display: inline-block;
    text-align: center;
    text-indent: 0.06em;
    padding: var(--space-sm) var(--space-xl);
    margin-top: var(--space-lg);
  }

  .shop-contact-col {
    text-align: center !important;
    align-items: center !important;
  }

  .legal-table th {
    width: 120px;
    font-size: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .legal-table td {
    font-size: var(--text-sm);
  }

  .legal {
    padding: var(--space-base) 0 0;
  }

  .legal-table {
    margin-bottom: var(--space-sm);
  }

  .privacy {
    padding: 0 0 var(--space-lg);
  }

  footer {
    padding: 32px 0;
  }

  .footer-links {
    display: none;
  }

  .contact-body br.mobile-br,
  .contact-note br.mobile-br {
    display: block;
  }

  .about-body,
  .about-feature-desc,
  .location-body,
  .location-cta-desc,
  .shop-body,
  .contact-body,
  .contact-note,
  .privacy-section-body,
  .legal-table td {
    font-size: 16px;
    font-weight: 300;
  }

  .about-title,
  .menu-title,
  .location-title,
  .shop-title,
  .contact-title {
    margin-bottom: 24px;
  }

  .menu-title {
    margin-bottom: 4px;
  }

  .menu-size-note {
    margin-bottom: 0;
  }

  .menu-category {
    margin-top: var(--space-base);
  }

  .legal-title,
  .privacy-title,
  .privacy-section-title {
    margin-bottom: 24px;
  }

  .about-body {
    margin-bottom: 0;
  }

  .about-body br {
    display: none;
  }

  .location-body,
  .shop-body,
  .contact-body {
    margin-bottom: 24px;
  }

  .contact-body {
    text-align: center;
    margin-bottom: 8px;
  }


  .about-features {
    margin-top: 24px;
    padding-top: 24px;
  }

  .location-areas {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .location-area {
    flex: 0 0 240px;
  }


  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    padding-bottom: 4px;
    border-bottom: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .legal-table td {
    padding-top: 0;
    padding-bottom: var(--space-base);
  }
}

/* ===== SHOP PAGE ===== */
.shop-page {
  padding: var(--space-xl) 0;
  padding-top: calc(var(--space-xl) + 48px);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.shop-page > .container {
  width: 100%;
}

.shop-page-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-xl), 6vw, var(--text-2xl));
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-lg);
  margin-top: -0.22em;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.gallery-main {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.gallery-main img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gallery-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: rgba(0,0,0,0.2);
}

.gallery-placeholder-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
  color: rgba(0,0,0,0.3);
}

.gallery-thumbs {
  display: flex;
  gap: var(--space-xs);
}

.gallery-thumb {
  flex: 1;
  aspect-ratio: 1;
  border: 2px solid rgba(255,255,255,0.15);
  background: #fff;
  cursor: pointer;
  padding: 4px;
  transition: border-color 0.3s;
}

.gallery-thumb.active {
  border-color: #fff;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}

.thumb-placeholder svg {
  width: 20px;
  height: 20px;
  stroke: rgba(0,0,0,0.25);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
}

.product-name {
  line-height: 1;
}

.product-logo {
  width: 160px;
  height: auto;
}

.price-note {
  font-size: 16px;
  font-weight: 300;
}

.product-sub {
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-top: 4px;
  color: #fff;
}

.product-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.04em;
  color: #fff;
}

.product-desc {
  font-size: var(--text-base);
  font-weight: 300;
  line-height: 2;
}

.product-details {
  margin-top: 4px;
}

.product-detail-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-base);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.product-detail-row dt {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.8;
  width: 120px;
  flex-shrink: 0;
}

.product-detail-row dd {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.buy-btn {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  letter-spacing: 0.06em;
  padding: 16px var(--space-xl);
  border: none;
  color: #0F1111;
  background: #FFD814;
  border-radius: 0;
  text-align: center;
  transition: background 0.3s;
  margin-top: auto;
  cursor: pointer;
}

.buy-btn:hover {
  background: #F7CA00;
  color: #0F1111;
}

.product-promo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #FFD814;
}

.howto-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.howto-link:hover {
  opacity: 0.7;
}

.shop-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-top: var(--space-lg);
  transition: opacity 0.3s;
}

.shop-back:hover {
  opacity: 0.6;
}

.shop-back-arrow {
  transition: transform 0.3s;
}

.shop-back:hover .shop-back-arrow {
  transform: translateX(-4px);
}

/* Shop page responsive */
@media (max-width: 768px) {
  .shop-page {
    padding: 40px 0 48px;
    padding-top: calc(48px + 68px);
  }

  .product-card {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .gallery-main {
    padding: var(--space-lg);
  }

  .gallery-main img {
    max-width: 280px;
  }

  .product-logo {
    width: 130px;
  }

  .product-desc {
    font-size: 16px;
  }

  .buy-btn {
    padding: var(--space-sm) var(--space-base);
  }
}
