/* ═══════════════════════════════════════
   pages.css — Page-specific layouts
   ═══════════════════════════════════════ */

/* ── HOME: Hero ── */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-fg);
  color: var(--color-white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.hero__subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  color: var(--color-fg);
  padding: 14px 36px;
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 45%,
    rgba(255, 255, 255, 0.35) 55%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.hero__cta:hover::after {
  transform: translateX(100%);
}
.hero__cta:active {
  transform: translateY(0) scale(0.98);
}

/* ── HOME: Featured logos ── */
.featured-in {
  padding: 32px 0;
  border-bottom: 1px solid var(--color-border);
}
.featured-in__label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--color-fg-muted);
  margin-bottom: 20px;
}
.featured-in__press {
  display: block;
  width: 60%;
  margin: 24px auto 0;
  height: auto;
}

/* ── HOME: Bestsellers ── */
.bestsellers { padding: 56px 0; }
.bestsellers__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
}
.bestsellers__header-text { flex: 1; }
.bestsellers__title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.bestsellers__subtitle {
  font-size: 0.875rem;
  color: var(--color-fg-muted);
  margin-bottom: 4px;
}
.bestsellers__trust {
  font-size: 0.8125rem;
  color: var(--color-fg-muted);
  max-width: 42ch;
}
.bestsellers__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.bestsellers__grid::-webkit-scrollbar { display: none; }
.bestsellers__grid .product-card {
  min-width: 260px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media (min-width: 769px) {
  .bestsellers__grid .product-card { min-width: 0; flex: 1; }
}

/* ── HOME: Wallet Upgraded section ── */
.wallet-upgraded { padding: 56px 0; }
.wallet-upgraded__title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.wallet-upgraded__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.wallet-upgraded__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--color-bg-alt);
}
.wallet-upgraded__cta {
  text-align: center;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .wallet-upgraded__grid { grid-template-columns: 1fr; }
}

/* ── HOME: FAQ ── */
.faq { padding: 56px 0; }
.faq__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
@media (max-width: 640px) {
  .faq__grid { grid-template-columns: 1fr; }
}
.faq__more {
  text-align: center;
  margin-top: 20px;
  font-size: 0.875rem;
  color: var(--color-fg-muted);
}
.faq__more a {
  color: var(--color-fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── HOME: Insta Grid ── */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.insta-grid__item {
  aspect-ratio: 1 / 1;
  background: var(--color-bg-alt);
  overflow: hidden;
}
.insta-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.insta-grid__item:hover img { transform: scale(1.05); }
@media (max-width: 640px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════
   PRODUCT PAGE
   ══════════════════════════ */
.pdp { padding: 0 0 60px; }
.pdp__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 960px) {
  .pdp__layout { grid-template-columns: 1fr; }
}

/* Mosaic gallery */
.pdp__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.pdp__gallery-item {
  overflow: hidden;
  background: var(--color-bg-alt);
  cursor: zoom-in;
}
.pdp__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  transition: transform var(--transition-slow);
}
.pdp__gallery-item:hover img { transform: scale(1.04); }
.pdp__gallery-item[data-w="2"] { grid-column: span 2; }
.pdp__gallery-item[data-w="2"] img { aspect-ratio: 2 / 1; }
.pdp__gallery-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  pointer-events: none;
}
.pdp__gallery-item { position: relative; }
/* Video gallery item */
.pdp__gallery-item--video {
  cursor: default;
}
.pdp__gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}
.pdp__gallery-item--video[data-w="2"] .pdp__gallery-video {
  aspect-ratio: 2 / 1;
}
.pdp__video-control {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition-fast), opacity var(--transition-fast);
  opacity: 0.9;
}
.pdp__video-control:hover {
  background: rgba(0, 0, 0, 0.85);
  opacity: 1;
}
.pdp__video-control svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
/* Show play icon when paused */
.pdp__video-control.is-paused svg {
  display: none;
}
.pdp__video-control.is-paused::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid var(--color-white);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 2px;
}

/* Info panel */
.pdp__info {
  padding: 24px 0;
  position: sticky;
  top: calc(var(--header-h) + var(--announce-h) + 24px);
  align-self: start;
}
@media (max-width: 960px) {
  .pdp__info { position: static; padding: 0 0 24px; }
}
.pdp__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: 16px;
}
.pdp__back:hover { color: var(--color-fg); }
.pdp__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.pdp__rating-count { font-size: 0.75rem; color: var(--color-fg-muted); }
.pdp__title {
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.pdp__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.pdp__price-note {
  font-size: 0.8125rem;
  color: var(--color-fg-muted);
  margin-top: 4px;
  margin-bottom: 4px;
}
.pdp__add-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.pdp__add-row .btn { flex: 1; }
.pdp__stock {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pdp__stock-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.pdp__stock-dot--ok { background: var(--color-success); }
.pdp__stock-dot--low { background: var(--color-sale); }
.pdp__subtitle {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 20px 0 12px;
}
.pdp__description {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-fg-muted);
}
.pdp__description p { margin: 0; }
.pdp__description p + p { margin-top: 12px; }
.pdp__note {
  font-size: 0.8125rem;
  color: var(--color-fg-muted);
  margin-top: 12px;
  line-height: 1.5;
}

/* RE:ASSURE™ Warranty box */
.pdp__warranty {
  margin-top: 28px;
  padding: 24px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}
.pdp__warranty-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.pdp__warranty-icon {
  flex-shrink: 0;
}
.pdp__warranty-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pdp__warranty-body {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--color-fg-muted);
}
.pdp__warranty-body a {
  color: inherit;
  text-decoration: underline;
}

/* PDP accordion — card style with +/— text icons */
.pdp__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pdp__accordion-item {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pdp__accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
}
.pdp__accordion-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  width: 24px;
  text-align: center;
  transition: transform var(--transition-fast);
}
/* Show + when closed */
.pdp__accordion-icon::before { content: '+'; }
/* Show — when open */
.pdp__accordion-item.is-open .pdp__accordion-icon::before { content: '\2014'; }
.pdp__accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}
.pdp__accordion-item.is-open .pdp__accordion-body {
  max-height: 800px;
}
.pdp__accordion-body-inner {
  padding: 0 20px 20px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--color-fg-muted);
}
.pdp__accordion-body-inner p { margin: 0; }
.pdp__accordion-body-inner p + p { margin-top: 12px; }
.pdp__accordion-body-inner ul {
  list-style: disc;
  padding-left: 20px;
  margin: 12px 0;
}
.pdp__accordion-body-inner ul li {
  margin-bottom: 6px;
}
.pdp__accordion-body-inner a {
  color: var(--color-fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdp__accordion-body-inner a:hover { color: var(--color-accent); }

.pdp__features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pdp__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
}
.pdp__feature-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Key elements section */
.key-elements { padding: 56px 0 100px; }
.key-elements__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.key-elements__wrapper {
  position: relative;
}
.key-elements__grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.key-elements__grid::-webkit-scrollbar { display: none; }
.key-element {
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.key-element:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.key-element__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.key-element__body { 
  padding: 20px;
}
.key-element__heading {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--color-fg);
}
.key-element__text { 
  font-size: 0.8125rem; 
  color: var(--color-fg-muted); 
  line-height: 1.6; 
}
/* Add to Cart button in key elements */
.key-elements__add-to-cart {
  position: absolute;
  bottom: -60px;
  right: 0;
  z-index: 10;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--transition-base), transform var(--transition-base);
  pointer-events: none;
  min-width: 180px;
}
.key-elements__add-to-cart.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (max-width: 768px) {
  .key-element {
    min-width: 280px;
    max-width: 280px;
  }
  .key-elements__add-to-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    width: auto;
    min-width: auto;
  }
}

/* Material difference */
.material-diff {
  padding: 56px 0;
  text-align: center;
}
.material-diff__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.material-diff__sub {
  font-size: 0.8125rem;
  color: var(--color-fg-muted);
  margin-bottom: 28px;
}

/* Press reviews area */
.press-reviews { padding: 56px 0; border-top: 1px solid var(--color-border); }
.press-reviews__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.press-reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .press-reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
.press-quote {
  border: 1px solid var(--color-border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}
.press-quote__text {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.press-quote__source {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
}

/* Story Behind */
.story-behind__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 640px) {
  .story-behind__grid { grid-template-columns: 1fr; }
}
.story-behind__item {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-fg);
}
.story-behind__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.story-behind__label {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.story-behind__credit {
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.04em;
}

/* Customer reviews */
.reviews-section { padding: 40px 0; border-top: 1px solid var(--color-border); }
.reviews-section__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.reviews-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.reviews-section__summary {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-section__avg {
  font-size: 1.5rem;
  font-weight: 800;
}
.reviews-section__sort select {
  font-size: 0.75rem;
}

/* Explore range */
.explore-range { padding: 56px 0; border-top: 1px solid var(--color-border); }
.explore-range__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
  text-align: center;
}
.explore-range__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 640px) {
  .explore-range__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════
   ABOUT PAGE
   ══════════════════════════ */
.about-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background: var(--color-fg);
  color: var(--color-white);
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.about-hero__content {
  position: relative;
  z-index: 2;
  padding: 40px;
}
.about-hero__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
}
.about-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about-mission {
  padding: 56px 0;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.about-mission__lead {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-fg);
  margin-bottom: 12px;
}
.about-mission p {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.8;
  color: var(--color-fg-muted);
}

.about-section__title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.about-story-intro {
  padding: 32px 0;
}
.about-story-intro__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-fg-muted);
}

.our-story { padding: 56px 0; }
.our-story__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 768px) { .story-cards { grid-template-columns: 1fr; } }
.story-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-fg);
  color: var(--color-white);
}
.story-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.story-card__content {
  position: relative;
  z-index: 2;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.story-card__label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.story-card__heading {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.story-card__text {
  font-size: 0.6875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

.our-dna {
  padding: 80px 0;
  background: var(--color-fg);
  color: var(--color-white);
}
.our-dna__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .dna-grid { grid-template-columns: 1fr; }
}
.dna-item__heading { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.dna-item__text { font-size: 0.8125rem; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 480px; }

.dev-process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
@media (max-width: 768px) {
  .dev-process { grid-template-columns: 1fr; }
}
.dev-process__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}
.dev-process__title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.dev-process__img {
  background: var(--color-bg-alt);
  min-height: 300px;
}
.dev-process__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dev-process__text {
  font-size: 0.8125rem;
  color: var(--color-fg-muted);
  line-height: 1.7;
}

.designed-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
@media (max-width: 768px) { .designed-section { grid-template-columns: 1fr; } }
.designed-section__img {
  background: var(--color-bg-alt);
  min-height: 300px;
}
.designed-section__img img { width: 100%; height: 100%; object-fit: cover; }
.designed-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 40px;
}
.designed-section__title {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.designed-section__text {
  font-size: 0.8125rem;
  color: var(--color-fg-muted);
  line-height: 1.7;
}

.shop-section { padding: 56px 0; text-align: center; }
.shop-section__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.shop-section__cta {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.shop-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .shop-section__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════
   WALLETS (Collection) PAGE
   ══════════════════════════ */

/* Key Differences section */
.key-differences {
  padding: 80px 0;
  text-align: center;
}
.key-differences__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.key-differences__subtitle {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-fg-muted);
  margin-bottom: 40px;
}
.key-differences__table-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.key-differences__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  font-size: 0.875rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.key-differences__table thead {
  background: var(--color-bg-alt);
}
.key-differences__table th {
  padding: 24px 20px;
  border-bottom: 2px solid var(--color-border);
  text-align: center;
  vertical-align: top;
  font-weight: 700;
}
.key-differences__table th:first-child {
  text-align: left;
  border-bottom: 2px solid var(--color-border);
  width: 200px;
}
.key-differences__table th img {
  display: block;
  margin: 0 auto 8px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.key-differences__table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
.key-differences__table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--color-fg);
  vertical-align: middle;
}
.key-differences__table td svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.key-differences__table tbody tr {
  vertical-align: middle;
}
.key-differences__table tbody td {
  min-height: 48px;
  box-sizing: border-box;
}
.key-differences__table tbody tr:last-child td {
  border-bottom: none;
}
.key-differences__table tbody tr:hover {
  background: var(--color-bg-alt);
}
.key-differences__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.key-differences__buttons .btn {
  min-width: 200px;
}

/* Wallets Info section */
.wallets-info {
  padding: 80px 0;
  background: var(--color-bg);
}
.wallets-info__content {
  max-width: 800px;
  margin: 0 auto;
}
.wallets-info__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.wallets-info__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-fg);
}
.wallets-info__text p {
  margin-bottom: 16px;
}
.wallets-info__text p:last-child {
  margin-bottom: 0;
}
.wallets-info__text strong {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Shared page header (wallets, policy pages) */
.page-header,
.collection-header {
  padding: 40px 0 24px;
  border-bottom: 1px solid var(--color-border);
}
.page-header__title,
.collection-header__title {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.page-header__sub,
.collection-header__sub {
  font-size: 0.875rem;
  color: var(--color-fg-muted);
  margin: 0;
}
.collection-header__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-fg-muted);
  margin-bottom: 4px;
}
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.collection-toolbar__count { font-size: 0.75rem; color: var(--color-fg-muted); }
.collection-toolbar select {
  font-size: 0.75rem;
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════
   CART PAGE
   ══════════════════════════ */
.cart-page { padding: 40px 0 80px; }
.cart-page__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
}
@media (max-width: 960px) {
  .cart-page__layout { grid-template-columns: 1fr; }
}
.cart-page__items { border-top: 1px solid var(--color-border); }
.cart-page__summary {
  border: 1px solid var(--color-border);
  padding: 24px;
  align-self: start;
  position: sticky;
  top: calc(var(--header-h) + var(--announce-h) + 24px);
}
.cart-page__summary-title { font-size: 1rem; font-weight: 700; margin-bottom: 16px; }
.cart-page__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  padding: 6px 0;
}
.cart-page__divider { border: none; border-top: 1px solid var(--color-border); margin: 12px 0; }

/* ══════════════════════════
   SUCCESS / CANCEL
   ══════════════════════════ */
.result-page {
  text-align: center;
  padding: 100px 20px;
}
.result-page__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid;
}
.result-page__icon--success { border-color: var(--color-success); color: var(--color-success); }
.result-page__icon--cancel { border-color: var(--color-fg-muted); color: var(--color-fg-muted); }
.result-page__title { font-size: 1.75rem; font-weight: 700; margin-bottom: 12px; }
.result-page__text { font-size: 0.875rem; color: var(--color-fg-muted); line-height: 1.7; margin-bottom: 28px; max-width: 440px; margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════
   REFUND / POLICY PAGES
   ═══════════════════════════════════════ */
.policy-page {
  padding: 0 0 80px;
}
.policy-page__title {
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}
.policy-page:has(.page-header) .policy-page__content {
  padding-top: 32px;
}
.policy-page__content {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-fg);
}
.policy-page__content p {
  margin-bottom: 1em;
}
.policy-page__content p:last-child {
  margin-bottom: 0;
}
.policy-page__content a {
  color: var(--color-fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-page__content a:hover {
  color: var(--color-fg-muted);
}
.policy-page__heading {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.policy-page__content .policy-page__heading:first-of-type {
  margin-top: 1.5em;
}
/* FAQ page: minimal sectioned layout */
.faq-section {
  margin-bottom: 3rem;
  padding: 0;
}
.faq-section:last-of-type {
  margin-bottom: 0;
}
.faq-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #EA8257;
  margin: 0 0 1.25rem;
  padding: 0;
}
.faq-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #EA8257;
  flex-shrink: 0;
}
.faq-section__icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.faq-section__body {
  padding: 0;
}
.faq-block {
  margin-bottom: 1.75rem;
  padding: 0;
}
.faq-block:last-child {
  margin-bottom: 0;
}
.faq-block__q {
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.25em;
  color: var(--color-fg);
  letter-spacing: -0.01em;
}
.faq-block p:not(.faq-block__q) {
  margin: 0;
  color: var(--color-fg-muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}
.faq-page .policy-page__content a,
.faq-page a {
  color: var(--color-fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-page .policy-page__content a:hover,
.faq-page a:hover {
  color: var(--color-fg-muted);
}
.faq-page__contact {
  margin-top: 3rem;
  padding-top: 2rem;
  font-size: 0.9375rem;
  color: var(--color-fg-muted);
  text-align: center;
}
.faq-page__contact a {
  color: var(--color-fg);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-page__lead {
  margin-bottom: 1.5em;
  font-size: 0.9375rem;
  color: var(--color-fg-muted);
}
.policy-page__subheading {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.25em;
  margin-bottom: 0.35em;
}
.policy-page__address {
  margin-top: 0.5em;
  line-height: 1.8;
}
.policy-page__muted {
  margin-top: 2em;
  font-size: 0.875rem;
  color: var(--color-fg-muted);
}
.policy-page__list {
  margin: 0.75em 0 1em;
  padding-left: 1.25em;
}
.policy-page__list li {
  margin-bottom: 0.5em;
}
.policy-page__list li:last-child {
  margin-bottom: 0;
}

/* ── Orders Management Page ── */
.orders-login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f5f5f5;
}
.orders-login__box {
  background: white;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}
.orders-login__box h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.orders-login__box p {
  color: #666;
  margin-bottom: 32px;
  font-size: 0.875rem;
}
.orders-login__box input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}
.orders-login__error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 12px;
}

.orders-header {
  background: #111;
  color: white;
  padding: 20px 0;
  margin-bottom: 32px;
}
.orders-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.orders-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.02em;
}

.orders-container {
  padding: 0 20px 40px;
}

.orders-filters {
  margin-bottom: 24px;
}
.orders-filters__row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.orders-search,
.orders-filter {
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}
.orders-search {
  flex: 1;
  min-width: 200px;
}
.orders-filter {
  min-width: 150px;
}

.orders-table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.orders-table thead {
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
}
.orders-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}
.orders-table td {
  padding: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.orders-table tbody tr:hover {
  background: #f9fafb;
}
.orders-table tbody tr:last-child td {
  border-bottom: none;
}

.orders-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.orders-status--pending {
  background: #fef3c7;
  color: #92400e;
}
.orders-status--confirmed {
  background: #dbeafe;
  color: #1e40af;
}
.orders-status--shipped {
  background: #d1fae5;
  color: #065f46;
}
.orders-status--completed {
  background: #e0e7ff;
  color: #3730a3;
}

.orders-tag {
  display: inline-block;
  padding: 4px 10px;
  background: #f3f4f6;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-right: 6px;
  margin-bottom: 4px;
}

.orders-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.orders-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
}
.orders-modal__content {
  position: relative;
  background: white;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.orders-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orders-modal__close:hover {
  color: #111;
}

.orders-detail-section {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
}
.orders-detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.orders-detail-section h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}
.orders-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.orders-detail-table td {
  padding: 8px 12px;
  border-bottom: 1px solid #f3f4f6;
}
.orders-detail-table td:first-child {
  width: 140px;
  color: #6b7280;
}
.orders-detail-select {
  padding: 6px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
}

.orders-detail-items {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.orders-detail-items thead {
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
}
.orders-detail-items th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}
.orders-detail-items td {
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.orders-detail-items tfoot {
  border-top: 2px solid #e5e7eb;
  background: #f9fafb;
}
.orders-detail-items tfoot td {
  padding: 16px 12px;
  font-weight: 700;
}

.btn--small {
  padding: 6px 12px;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .orders-filters__row {
    flex-direction: column;
  }
  .orders-search,
  .orders-filter {
    width: 100%;
  }
  .orders-table-wrapper {
    overflow-x: scroll;
  }
  .orders-table {
    min-width: 800px;
  }
  .orders-modal__content {
    padding: 20px;
    max-height: 95vh;
  }
}
