/* ==========================================================================
   ONHIZM — Inner Page Styles
   ========================================================================== */

/* ---------- Active nav ---------- */
.nav-link--active {
  color: var(--accent) !important;
}

.nav-link--active::after {
  width: 100% !important;
}

/* ---------- Page Hero (Lookbook) ---------- */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.7) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 0.8rem;
}

.page-hero__content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ==========================================================================
   LOOKBOOK PAGE
   ========================================================================== */

.lookbook-page {
  padding: 5rem 0;
}

.lb-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.lb-row--full {
  grid-template-columns: 1fr;
}

.lb-row--two {
  grid-template-columns: 1fr 1fr;
}

.lb-row--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.lb-row--four {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.lb-row--wide-left {
  grid-template-columns: 1.6fr 1fr;
}

.lb-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.lb-row--full .lb-item {
  aspect-ratio: 21 / 9;
}

.lb-row--two .lb-item {
  aspect-ratio: 4 / 5;
}

.lb-row--three .lb-item {
  aspect-ratio: 3 / 4;
}

.lb-row--wide-left .lb-item:first-child {
  aspect-ratio: 16 / 10;
}

.lb-row--wide-left .lb-item:last-child {
  aspect-ratio: 3 / 4;
}

.lb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.lb-item:hover img {
  transform: scale(1.04);
}

.lb-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--ease);
}

.lb-item:hover .lb-item__caption {
  opacity: 1;
  transform: translateY(0);
}

.lb-item__caption p {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox__content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.lightbox__close:hover {
  opacity: 1;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.lightbox__nav:hover {
  opacity: 1;
}

.lightbox__nav--prev {
  left: 1rem;
}

.lightbox__nav--next {
  right: 1rem;
}

.lightbox__info {
  margin-top: 1.2rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lightbox__name {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.lightbox__link {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

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

/* Lookbook CTA */
.lookbook-cta {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.lookbook-cta__inner {
  text-align: center;
}

.lookbook-cta__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   CULTURE PAGE — Celebrity Carousel
   ========================================================================== */

.culture-section {
  padding: 5rem 0;
}

/* Lookbook row system */
.lb-row {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.lb-row--two {
  grid-template-columns: 1fr 1fr;
}

.lb-row--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.culture-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.culture-card--big {
  aspect-ratio: 3 / 4;
}

.culture-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.culture-card:hover img {
  transform: scale(1.04);
}

.culture-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.culture-card--big .culture-card__name {
  font-size: 1.3rem;
}

.culture-card__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

.culture-card__handle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 300;
}

.culture-card__handle a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.culture-card__handle a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   SHOP PAGE
   ========================================================================== */

.shop-page {
  padding-top: 140px;
  padding-bottom: 5rem;
}

.shop-page__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.shop-page__header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

.shop-page__count {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.shop-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.shop-filters__cats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn--active {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.sort-select {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.sort-select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
}

.product-card__tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Badges */
.product-card__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
}

.product-card__badge--sold {
  background: var(--border);
  color: var(--text-muted);
}

.product-card--sold .product-card__media img {
  opacity: 0.6;
  filter: grayscale(20%);
}

.product-card--sold .product-card__price {
  color: var(--text-muted);
}

.product-card {
  position: relative;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-hero {
  padding-top: 180px;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}

.about-hero__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 700px;
}

/* About split */
.about-section {
  padding: 6rem 0;
}

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

.about-grid__media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-grid__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.about-grid__media:hover img {
  transform: scale(1.03);
}

.about-grid__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.about-grid__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Values */
.about-values {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.about-values__num {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

.about-values__item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}

.about-values__item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Full width image break */
.about-image-break {
  width: 100%;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.about-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Mission */
.about-mission {
  padding: 6rem 0;
}

.about-mission__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-mission__inner blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 1.5rem 0;
  color: var(--text);
}

.about-mission__inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

/* About CTA */
.about-cta {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}

.about-cta__inner {
  text-align: center;
}

.about-cta__inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.about-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   SIZING PAGE
   ========================================================================== */

.sizing-page {
  padding-top: 140px;
  padding-bottom: 5rem;
}

.sizing-page__header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.sizing-page__header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.sizing-page__header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Tables */
.sizing-table-wrap {
  margin-bottom: 3.5rem;
}

.sizing-table-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.sizing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.sizing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.sizing-table thead {
  border-bottom: 1px solid var(--border);
}

.sizing-table th {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  text-align: left;
  padding: 0.8rem 1.5rem 0.8rem 0;
}

.sizing-table td {
  padding: 0.9rem 1.5rem 0.9rem 0;
  color: var(--text);
  font-weight: 400;
  border-bottom: 1px solid rgba(34, 34, 34, 0.5);
}

.sizing-table tbody tr:hover td {
  color: var(--accent);
}

.sizing-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
}

/* How to measure */
.sizing-how {
  padding: 3rem 0;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.sizing-how h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.sizing-how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.sizing-how__item h4 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.sizing-how__item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* Contact */
.sizing-contact {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.sizing-contact p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
}

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

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

/* ==========================================================================
   POLICY PAGE
   ========================================================================== */

.policy-page {
  padding-top: 140px;
  padding-bottom: 5rem;
}

.policy-page__header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.policy-page__header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.policy-page__header p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

.policy-content {
  max-width: 720px;
}

.policy-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.policy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-block h2 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.policy-block p {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}

.policy-block p:last-child {
  margin-bottom: 0;
}

.policy-block strong {
  color: var(--text);
  font-weight: 500;
}

.policy-block ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0;
}

.policy-block ul li {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
  padding-left: 1.2rem;
  position: relative;
}

.policy-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.policy-block a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

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

.policy-block--contact {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.policy-contact-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.policy-contact-links a {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

.product-page {
  padding-top: 140px;
  padding-bottom: 5rem;
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.product-page__gallery {
  position: sticky;
  top: 120px;
}

.product-page__main-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
}

.product-page__main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page__thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.product-page__thumb {
  width: 72px;
  height: 96px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s var(--ease);
  background: var(--bg-card);
}

.product-page__thumb--active {
  border-color: var(--accent);
}

.product-page__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-page__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.product-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.product-page__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.product-page__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.product-page__badge--sold {
  background: var(--border);
  color: var(--text-muted);
}

.product-page__badge--limited {
  background: var(--accent);
  color: var(--bg);
}

.product-page__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.8;
}

.product-page__tag {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Color picker on product page */
.product-page__colors {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-page__colors-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-page__swatches {
  display: flex;
  gap: 0.75rem;
}

.product-page__swatches .color-swatch {
  width: 28px;
  height: 28px;
}

/* Size selector */
.product-page__sizes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-page__sizes-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-page__size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-btn {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.size-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.size-btn--active {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.size-btn--soldout,
.size-btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

.product-page__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.product-page__actions .btn {
  width: 100%;
}

.btn--disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  pointer-events: none;
}

.product-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  transition: color 0.3s var(--ease);
}

.product-page__back:hover {
  color: var(--accent);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media screen and (max-width: 768px) {

  /* Page Hero */
  .page-hero {
    height: 55svh;
    min-height: 320px;
    margin-top: 55px;
  }

  .page-hero__content h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .page-hero__content p {
    font-size: 0.88rem;
  }

  /* Culture lookbook */
  .culture-section {
    padding: 3rem 0;
  }

  .lb-row {
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }

  .lb-row--two {
    grid-template-columns: 1fr 1fr;
  }

  .lb-row--three {
    grid-template-columns: 1fr 1fr;
  }

  .lb-row--three .culture-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .culture-card__overlay {
    padding: 1.5rem 1rem;
  }

  .culture-card--big .culture-card__name {
    font-size: 1rem;
  }

  .culture-card__name {
    font-size: 0.85rem;
  }

  .culture-card__handle {
    font-size: 0.72rem;
  }

  /* Lookbook */
  .lookbook-page {
    padding: 2.5rem 0;
  }

  .lb-row {
    margin-bottom: 0.75rem;
    gap: 0.75rem;
  }

  .lb-row--two {
    grid-template-columns: 1fr;
  }

  .lb-row--three {
    grid-template-columns: 1fr 1fr;
  }

  .lb-row--wide-left {
    grid-template-columns: 1fr;
  }

  .lb-row--full .lb-item {
    aspect-ratio: 16 / 10;
  }

  .lb-row--two .lb-item,
  .lb-row--wide-left .lb-item,
  .lb-row--wide-left .lb-item:first-child,
  .lb-row--wide-left .lb-item:last-child {
    aspect-ratio: 4 / 5;
  }

  .lb-row--three .lb-item {
    aspect-ratio: 3 / 4;
  }

  .lb-item__caption {
    opacity: 1;
    transform: translateY(0);
    padding: 1.2rem;
  }

  .lb-item__caption p {
    font-size: 0.75rem;
  }

  .lightbox__nav {
    font-size: 2rem;
    width: 44px;
    height: 44px;
  }

  .lightbox__nav--prev {
    left: 0.5rem;
  }

  .lightbox__nav--next {
    right: 0.5rem;
  }

  .lightbox__info {
    flex-direction: column;
    gap: 0.8rem;
  }

  .lookbook-cta {
    padding: 3rem 0;
  }

  .lookbook-cta__inner .btn {
    width: 100%;
  }

  /* Product Detail */
  .product-page {
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .product-page__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-page__gallery {
    position: static;
  }

  .product-page__main-img {
    margin: 0 -1.25rem;
    border-radius: 0;
  }

  .product-page__thumbs {
    padding: 0;
    gap: 0.5rem;
  }

  .product-page__thumb {
    width: 64px;
    height: 84px;
    min-width: 64px;
  }

  .product-page__actions .btn,
  .product-page__details .btn,
  .product-page__details #addToCartBtn {
    min-height: 52px;
    width: 100%;
    font-size: 0.75rem;
  }

  .product-page__back {
    margin-bottom: 1rem;
  }

  /* Product detail variant + swatch sizing */
  .product-page .variant-btn {
    padding: 0.6rem 1rem;
    min-height: 40px;
    font-size: 0.62rem;
  }

  .product-page .color-swatch {
    width: 28px;
    height: 28px;
  }

  .product-page .color-swatch::after {
    inset: -4px;
  }

  /* Shop */
  .shop-page {
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .shop-page__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .shop-filters {
    gap: 0.75rem;
  }

  .filter-btn {
    font-size: 0.6rem;
    padding: 0.4rem 0.8rem;
  }

  .sort-select {
    font-size: 0.6rem;
    padding: 0.4rem 1.8rem 0.4rem 0.8rem;
  }

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

  .product-card__badge {
    font-size: 0.5rem;
    padding: 0.25rem 0.6rem;
    top: 0.5rem;
    left: 0.5rem;
  }

  /* About */
  .about-hero {
    padding-top: 110px;
    padding-bottom: 2.5rem;
  }

  .about-hero__content h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .about-section {
    padding: 3.5rem 0;
  }

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

  .about-grid__media {
    margin: 0 -1.25rem;
    border-radius: 0;
    aspect-ratio: 4 / 5;
  }

  .about-grid__content p {
    font-size: 0.9rem;
  }

  .about-values {
    padding: 3rem 0;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image-break {
    height: 35svh;
    min-height: 250px;
  }

  .about-mission {
    padding: 3.5rem 0;
  }

  .about-cta {
    padding: 3rem 0;
  }

  .about-cta__buttons {
    flex-direction: column;
    width: 100%;
  }

  .about-cta__buttons .btn {
    width: 100%;
  }

  /* Policy */
  .policy-page {
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .policy-page__header {
    margin-bottom: 2.5rem;
  }

  .policy-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .policy-block--contact {
    padding: 2rem 1.25rem;
  }

  .policy-contact-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  /* Sizing */
  .sizing-page {
    padding-top: 100px;
    padding-bottom: 3rem;
  }

  .sizing-page__header {
    margin-bottom: 2.5rem;
  }

  .sizing-page__header p {
    font-size: 0.88rem;
  }

  .sizing-table-wrap {
    margin-bottom: 2.5rem;
  }

  .sizing-table {
    font-size: 0.82rem;
    min-width: 420px;
  }

  .sizing-table th {
    font-size: 0.6rem;
    padding: 0.6rem 1rem 0.6rem 0;
  }

  .sizing-table td {
    padding: 0.7rem 1rem 0.7rem 0;
  }

  .sizing-how {
    padding: 2rem 0;
  }

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

  .sizing-contact {
    padding: 1.5rem;
  }

  .sizing-contact p {
    font-size: 0.82rem;
  }
}

@media screen and (max-width: 480px) {
  .lb-row--three {
    grid-template-columns: 1fr;
  }

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

  /* Single column — cards are wide enough for variant pickers again */
  .product-card .variant-picker {
    display: flex;
  }

  .lb-row--three {
    grid-template-columns: 1fr;
  }

  .lb-row--three .culture-card:last-child {
    max-width: 100%;
  }

  .lb-row--two {
    grid-template-columns: 1fr;
  }

  .sizing-how__grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 360px) {
  .page-hero {
    min-height: 280px;
  }

  .page-hero__content h1 {
    font-size: 1.8rem;
  }

  .about-hero__content h1 {
    font-size: 1.6rem;
  }
}
