@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenir-next-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenir-next-demi.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AvenirNext';
  src: url('../fonts/avenir-next-demi.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #000000;
  --paper: #ffffff;
  --muted: #666666;
  --line: #e5e5e5;
  --line-light: #ececec;
  --headline-xl: clamp(34px, 5.2vw, 64px);
  --headline-lg: clamp(26px, 3.6vw, 42px);
  --headline-md: clamp(24px, 2.8vw, 34px);
  --body: 15px;
  --label: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.omai {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'AvenirNext', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--body);
  line-height: 1.6;
  letter-spacing: 0.01em;
}

body.omai * {
  min-width: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
  margin: 0;
}

p {
  margin: 0 0 1em;
  text-wrap: pretty;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.container-wide {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 12px;
  top: -60px;
  background: #fff;
  padding: 12px 18px;
  border: 1px solid #000;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 12px;
}

/* Announcement Topbar */
.announcement {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 44px;
  transition: all 0.25s ease;
  z-index: 60;
}

.announcement[hidden],
.announcement.is-hidden,
body.has-no-announcement .announcement {
  display: none !important;
}

.announcement-text {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.announcement-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  cursor: pointer;
  padding: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.announcement-close:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
}

.announcement-close svg {
  display: block;
}

/* Site Header */
.site-header {
  position: relative;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  width: min(1440px, calc(100% - 64px));
  margin: auto;
}

.brand {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 20px;
}

.brand img {
  max-width: 150px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #000000;
  padding: 10px 0;
  display: block;
  position: relative;
}

.nav-item > a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* WAA-Studios exact sub-menu: clean vertical text list directly under SHOP without border/card */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  padding: 12px 0 24px;
  background: transparent;
  border: 0;
  box-shadow: none;
  z-index: 100;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: rotate3d(1, 0, 0, -90deg);
  transform-origin: 0 0 0;
  transition: all 0.4s ease;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: rotate3d(0, 0, 0, 0deg);
}

.mega-menu a {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 0;
  color: #000000;
  white-space: nowrap;
  transition: text-decoration 0.2s ease, opacity 0.2s ease;
}

.mega-menu a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #000000;
}

.header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.icon-button {
  border: 0;
  background: none;
  font: inherit;
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  color: #000000;
}

.mobile-only {
  display: none;
}

.search-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 24px max(32px, calc((100vw - 1440px) / 2));
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.search-panel[hidden] {
  display: none;
}

.search-panel label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-panel input,
.catalog-search input {
  flex: 1;
  border: 0;
  border-bottom: 1px solid #000000;
  padding: 12px 0;
  font: inherit;
  font-size: 15px;
  outline: none;
}

.search-panel button,
.catalog-search button {
  border: 0;
  background: #000000;
  color: #ffffff;
  padding: 14px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  background: #f6f6f6;
  overflow: hidden;
}

.hero-media-link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero picture,
.hero img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
}

.hero-copy {
  position: absolute;
  left: max(48px, calc((100vw - 1440px) / 2 + 32px));
  bottom: 11%;
  color: #000000;
  max-width: 620px;
  z-index: 10;
}

.hero-copy p {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 12px;
}

.hero-copy h1 {
  font-size: var(--headline-xl);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
  margin: 0 0 20px;
}

.hero-copy a {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  border-bottom: 2px solid #000000;
  padding-bottom: 4px;
}

.hero-copy a:hover {
  opacity: 0.65;
}

/* Collection / Product Section (Like waa-studios) */
.collection-section {
  padding: 95px 0 110px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 42px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.section-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-head h2 {
  font-size: var(--headline-md);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000000;
}

.section-sub {
  font-size: 17px;
  font-weight: 400;
  color: #111111;
  margin: 0;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.section-head a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  border-bottom: 1px solid #000000;
  padding-bottom: 3px;
  flex-shrink: 0;
  margin-bottom: 4px;
}

.section-head a:hover {
  opacity: 0.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 3/4;
  background: #f7f6f4;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-media img {
  transform: scale(1.02);
}

.product-copy {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.product-copy h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #000000;
}

.product-copy h3 a {
  color: #000000;
}

.product-copy h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.price {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #000000;
}

.price del {
  color: var(--muted);
  font-size: 14px;
  margin-left: 8px;
}

.purchase-link {
  border: 0;
  border-bottom: 1px solid #000000;
  background: none;
  padding: 0 0 3px;
  margin-top: 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.purchase-link:hover {
  opacity: 0.65;
}

.cms-product-purchase-form {
  margin: 0;
}

/* Editorial Campaign Banner */
.editorial-section {
  padding-bottom: 110px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.editorial-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f7f6f4;
}

.editorial-media a {
  display: block;
  width: 100%;
  height: 100%;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.editorial-media:hover img {
  transform: scale(1.02);
}

/* General Pages */
.page {
  padding: 55px 0 110px;
}

.breadcrumb {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 44px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: #000000;
  text-decoration: underline;
}

.page-head {
  text-align: center;
  margin-bottom: 44px;
}

.page-head h1,
.page > h1,
.article-page h1 {
  font-size: var(--headline-lg);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 24px;
}

.catalog-search {
  display: flex;
  width: min(600px, 100%);
  margin: 0 auto 38px;
}

.category-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-nav a {
  color: #666666;
  padding-bottom: 4px;
}

.category-nav a:hover,
.category-nav a.active {
  color: #000000;
  border-bottom: 2px solid #000000;
}

.empty-state {
  padding: 90px 20px;
  text-align: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.pagination-wrap {
  margin-top: 60px;
  overflow: hidden;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.pagination .page-link {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  padding: 0 12px;
}

.pagination .active .page-link {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.pagination .disabled {
  opacity: 0.35;
}

.pagination svg {
  width: 14px !important;
  height: 14px !important;
}

/* Product Detail Page (WAA-Studios exact layout) */
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.9fr);
  gap: 70px;
  align-items: start;
}

.detail-gallery {
  background: #f7f6f4;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  padding-top: 10px;
  position: sticky;
  top: 30px;
  align-self: start;
}

.product-title-area {
  margin-bottom: 8px;
}

.product-title-area h1 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000000;
  margin: 0;
}

.pro-soldold {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888888;
  display: inline-block;
  margin-top: 4px;
}

.detail-price {
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  margin: 0 0 34px;
}

.detail-price del {
  color: var(--muted);
  font-size: 15px;
  margin-left: 10px;
}

.detail-section {
  margin-bottom: 34px;
}

.detail-section h2 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #000000;
}

.detail-specs {
  font-size: 12px;
  line-height: 1.85;
  color: #222222;
}

.variant-quick-toggle {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #666666;
}

.variant-quick-toggle span.active {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spec-desc,
.spec-list,
.spec-extra {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.8;
  color: #222222;
}

.caring-link {
  margin-top: 14px;
  font-size: 12px;
}

.text-link {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 12px;
  color: #000000;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Variant Selector Wrapper (Dropdown Box like waa-studios) */
.variant-selector-wrapper {
  margin-bottom: 28px;
  position: relative;
  width: 100%;
}

.variant-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #000000;
}

.custom-select-box {
  height: 44px;
  border: 1px solid #000000;
  padding: 0 16px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  transition: border-color 0.2s ease;
  user-select: none;
}

.custom-select-box:focus {
  outline: 1px solid #000000;
}

.select-chevron {
  transition: transform 0.25s ease;
}

.variant-selector-wrapper.active .select-chevron {
  transform: rotate(180deg);
}

.custom-select-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #000000;
  z-index: 70;
  max-height: 220px;
  overflow-y: auto;
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.variant-selector-wrapper.active .custom-select-dropdown {
  display: block;
}

.dropdown-option {
  padding: 0 16px;
  height: 42px;
  line-height: 42px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #d6d4cd;
  transition: background 0.15s ease;
  user-select: none;
}

.dropdown-option:last-child {
  border-bottom: 0;
}

.dropdown-option:hover,
.dropdown-option.active {
  background: #f8f8f8;
  font-weight: 500;
}

.opt-status.in-stock {
  font-size: 10px;
  letter-spacing: 0.06em;
  color: #000000;
}

.purchase-area {
  margin-top: 24px;
}

.purchase-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border: 1px solid #000000;
  background: #000000;
  color: #ffffff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
}

.purchase-button:hover {
  background: #222222;
}

.purchase-button:disabled {
  background: #bbbbbb;
  border-color: #bbbbbb;
  cursor: not-allowed;
}

/* Caring Dialog Modal */
.caring-dialog {
  width: min(540px, calc(100% - 32px));
  max-height: 80vh;
  border: 1px solid #000000;
  padding: 36px;
  background: #ffffff;
}

.caring-dialog::backdrop {
  background: rgba(0, 0, 0, 0.4);
}

.caring-close {
  float: right;
  border: 0;
  background: none;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.caring-dialog h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.caring-body h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 18px 0 6px;
}

.caring-body p {
  font-size: 13px;
  line-height: 1.7;
  color: #444444;
  margin: 0 0 12px;
}

.related-section {
  margin-top: 90px;
}

/* News / Journal Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 28px;
}

.news-media {
  display: block;
  aspect-ratio: 4/3;
  background: #f4f4f4;
  margin-bottom: 18px;
  overflow: hidden;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-grid article:hover .news-media img {
  transform: scale(1.02);
}

.news-grid h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
}

.news-grid h2 a {
  color: #000000;
}

.news-grid h2 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-page {
  width: min(840px, calc(100% - 48px));
  margin: auto;
}

.article-hero {
  width: 100%;
  max-height: 750px;
  object-fit: cover;
  margin: 40px 0;
}

.article-page .lead {
  font-size: 20px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 28px;
}

/* Contact Page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
}

.contact-layout form {
  display: grid;
  gap: 22px;
}

.contact-layout label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #222222;
}

.contact-layout input,
.contact-layout textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #000000;
  padding: 12px 0;
  font: inherit;
  font-size: 15px;
  outline: none;
  background: transparent;
}

.contact-layout textarea {
  min-height: 120px;
}

/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  border: 1px solid var(--line);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.review-copy {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  line-clamp: 7;
}

.review-expand {
  align-self: flex-start;
  border: 0;
  border-bottom: 1px solid #000000;
  background: none;
  padding: 0 0 2px;
  margin: 14px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.review-card footer {
  display: flex;
  flex-direction: column;
}

.review-author {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
}

.review-author small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.review-avatar {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
}

.review-avatar > * {
  grid-area: 1/1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.review-avatar-initials {
  display: grid;
  place-items: center;
  background: #eeeeee;
  font-weight: 600;
  font-size: 14px;
}

.review-avatar img {
  display: block;
  object-fit: cover;
}

.review-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: 80vh;
  border: 0;
  padding: 32px;
}

.review-dialog::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.review-dialog-content {
  max-height: 55vh;
  overflow: auto;
  white-space: pre-wrap;
  font-size: 15px;
  line-height: 1.75;
}

.review-dialog-close {
  float: right;
  border: 0;
  background: none;
  font-size: 26px;
  cursor: pointer;
}

/* Site Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 75px 0 35px;
  background: #ffffff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.footer-grid h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 20px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  font-size: 14px;
  line-height: 2.1;
  color: #555555;
  margin: 0;
}

.footer-grid a:hover {
  color: #000000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 55px;
  padding-top: 28px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .mobile-only {
    display: block;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .brand {
    margin-right: 0;
  }
  .primary-nav {
    position: fixed;
    inset: 0 15% 0 0;
    background: #ffffff;
    padding: 60px 28px 40px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    z-index: 999;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }
  .primary-nav.open {
    display: flex;
  }
  .nav-item {
    width: 100%;
  }
  .nav-item > a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    padding: 4px 0;
    color: #000000;
    display: block;
  }
  .nav-close {
    position: absolute;
    right: 20px;
    top: 18px;
    border: 0;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  .mega-menu {
    position: static;
    border: 0;
    padding: 6px 0 10px 14px;
    display: block;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
    min-width: 0;
  }
  .mega-menu::before {
    display: none;
  }
  .mega-menu a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #444444;
    padding: 5px 0;
    display: block;
    white-space: normal;
  }
  .mega-menu a:hover {
    color: #000000;
  }
  .product-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 38px 18px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
  .product-detail {
    grid-template-columns: 1fr;
  }
  .detail-copy {
    position: static;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: 72svh;
  }
}

@media (max-width: 560px) {
  .container,
  .container-wide,
  .article-page,
  .header-inner {
    width: calc(100% - 32px);
  }
  .announcement {
    font-size: 10px;
    letter-spacing: 0.06em;
  }
  .header-inner {
    height: 68px;
  }
  .brand {
    font-size: 24px;
  }
  .hero {
    min-height: calc(100svh - 104px);
  }
  .hero-copy {
    left: 20px;
    right: 20px;
    bottom: 8%;
  }
  .collection-section {
    padding: 65px 0;
  }
  .section-head h2 {
    font-size: 24px;
  }
  .section-sub {
    font-size: 15px;
  }
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 14px;
  }
  .product-copy h3 {
    font-size: 13px;
  }
  .price {
    font-size: 14px;
  }
  .purchase-link {
    font-size: 11px;
  }
  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .editorial-section {
    padding-bottom: 65px;
  }
  .page {
    padding: 40px 0 75px;
  }
  .breadcrumb {
    margin-bottom: 28px;
  }
  .news-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .category-nav {
    justify-content: flex-start;
    gap: 18px;
  }
}

.is-home .site-header {
  position: absolute;
  top: 36px;
  left: 0;
  width: 100%;
  background: transparent;
  border-bottom: 0;
  transition: top 0.25s ease;
}

body.has-no-announcement.is-home .site-header,
body.has-no-announcement .is-home .site-header {
  top: 0;
}

.is-home .hero {
  min-height: calc(100svh - 36px);
  transition: min-height 0.25s ease;
}

body.has-no-announcement.is-home .hero,
body.has-no-announcement .is-home .hero {
  min-height: 100svh;
}

.mobile-only[data-menu-toggle]::before {
  content: '☰';
  font-size: 22px;
}

.mobile-only[data-menu-toggle] span {
  display: none;
}
