/* ═════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES — Categories, Lookbook, Newsletter,
   Featured banner, Shop filters, Product detail, About, Contact
   ═════════════════════════════════════════════════════ */

/* ── Categories strip ── */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .cats-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
}
.cat-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(42,40,38,0.6), rgba(42,40,38,0) 50%);
}
.cat-tile span {
  position: absolute;
  inset-inline-start: 16px; bottom: 16px;
  z-index: 2;
  color: var(--bone);
  font-family: var(--f-display);
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
html[dir="rtl"] .cat-tile span { font-family: var(--f-ar); font-size: 16px; letter-spacing: 0; text-transform: none; font-weight: 700; }

/* ── Featured banner ── */
.featured-banner {
  position: relative;
  height: clamp(360px, 60vh, 560px);
  background-size: cover; background-position: center;
  display: flex; align-items: center;
  margin: 0;
  overflow: hidden;
}
.featured-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
}
html[dir="rtl"] .featured-banner::after {
  background: linear-gradient(-90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 60%);
}
.featured-banner .inner {
  position: relative; z-index: 2;
  color: var(--bone);
  max-width: 520px;
}
.featured-banner h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1; letter-spacing: -0.01em;
  margin-bottom: 12px;
}
html[dir="rtl"] .featured-banner h2 { font-family: var(--f-ar); font-weight: 300; line-height: 1.2; }
.featured-banner h2 .it { font-style: italic; }
.featured-banner p {
  font-family: var(--f-display); font-style: italic;
  font-size: 18px; opacity: 0.9; margin-bottom: 24px;
}
html[dir="rtl"] .featured-banner p { font-family: var(--f-ar); font-style: normal; font-size: 16px; line-height: 1.7; }

/* ── Lookbook (Instagram grid) ── */
.lookbook {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 700px) { .lookbook { grid-template-columns: repeat(2, 1fr); } }
.lb-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}
.lb-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.lb-tile:hover img { transform: scale(1.04); }
.lb-tile::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(42,40,38,0.0);
  transition: background .25s var(--ease);
  display: flex; align-items: center; justify-content: center;
}
.lb-tile:hover::after { background: rgba(42,40,38,0.25); }
.lb-tile .ig-mark {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: opacity .25s var(--ease);
  color: var(--bone);
}
.lb-tile:hover .ig-mark { opacity: 1; }

/* ── Newsletter ── */
.newsletter {
  background: var(--cream);
  padding: clamp(64px, 10vw, 120px) var(--gutter);
  text-align: center;
}
.newsletter h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
html[dir="rtl"] .newsletter h2 { font-family: var(--f-ar); font-weight: 300; }
.newsletter p {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted); font-size: 18px;
  max-width: 460px; margin: 0 auto 32px;
}
html[dir="rtl"] .newsletter p { font-family: var(--f-ar); font-style: normal; font-size: 15px; line-height: 1.7; }
.newsletter-form {
  display: flex; gap: 0;
  max-width: 500px;
  margin: 0 auto;
  border-bottom: 1px solid var(--ink);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 4px;
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--ink);
  outline: none;
}
html[dir="rtl"] .newsletter-form input { font-family: var(--f-ar); }
.newsletter-form input::placeholder { color: var(--ink-muted); font-style: italic; }
html[dir="rtl"] .newsletter-form input::placeholder { font-style: normal; }
.newsletter-form button {
  padding: 14px 24px;
  font-family: var(--f-display);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
html[dir="rtl"] .newsletter-form button { font-family: var(--f-ar); font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 700; }

/* ═════════════════════════════════════════════════════
   PAGE: SHOP
   ═════════════════════════════════════════════════════ */
.shop-hero {
  padding: 80px var(--gutter) 40px;
  text-align: center;
  border-bottom: 1px solid var(--line-soft);
}
.shop-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
html[dir="rtl"] .shop-hero h1 { font-family: var(--f-ar); font-weight: 300; }
.shop-hero p {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted); font-size: 18px;
}
html[dir="rtl"] .shop-hero p { font-family: var(--f-ar); font-style: normal; font-size: 15px; }

.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 16px; flex-wrap: wrap;
}
.shop-toolbar .results {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted); font-size: 14px;
}
html[dir="rtl"] .shop-toolbar .results { font-family: var(--f-ar); font-style: normal; }
.shop-toolbar .right { display: flex; gap: 12px; align-items: center; }
.shop-search {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  width: 240px;
  transition: border-color .25s var(--ease);
}
.shop-search:focus-within { border-color: var(--ink); }
.shop-search svg { width: 16px; height: 16px; color: var(--ink-muted); }
.shop-search input {
  border: 0; background: transparent; outline: none; flex: 1;
  font-family: var(--f-display); font-size: 14px;
}
html[dir="rtl"] .shop-search input { font-family: var(--f-ar); }
@media (max-width: 600px) { .shop-search { width: 100%; } }

.shop-select {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-display); font-size: 13px;
  letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; position: relative;
  background: transparent;
  color: var(--ink);
}
html[dir="rtl"] .shop-select { font-family: var(--f-ar); font-size: 13px; letter-spacing: 0; text-transform: none; }
.shop-select:hover { border-color: var(--ink); }

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 40px 0;
}
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; gap: 24px; } }

.shop-filter h4 {
  font-family: var(--f-display);
  font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
html[dir="rtl"] .shop-filter h4 { font-family: var(--f-ar); font-weight: 700; letter-spacing: 0; text-transform: none; font-size: 14px; }
.shop-filter ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.shop-filter ul li button {
  display: flex; justify-content: space-between; width: 100%;
  font-family: var(--f-display);
  font-size: 15px;
  text-align: start;
  color: var(--ink-muted);
  transition: color .25s var(--ease);
  padding: 4px 0;
}
html[dir="rtl"] .shop-filter ul li button { font-family: var(--f-ar); font-size: 14px; }
.shop-filter ul li button:hover, .shop-filter ul li button.active {
  color: var(--ink);
}
.shop-filter ul li button.active { font-weight: 500; }
@media (max-width: 900px) {
  .shop-filter { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 12px; }
  .shop-filter h4 { display: none; }
  .shop-filter ul { flex-direction: row; gap: 8px; }
  .shop-filter ul li button {
    white-space: nowrap;
    border: 1px solid var(--line);
    padding: 8px 16px;
    border-radius: 999px;
  }
  .shop-filter ul li button.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
}

/* ═════════════════════════════════════════════════════
   PAGE: PRODUCT DETAIL
   ═════════════════════════════════════════════════════ */
.pdp { padding: 32px 0 80px; }
.pdp-breadcrumb {
  font-family: var(--f-display);
  font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 16px 0 32px;
}
html[dir="rtl"] .pdp-breadcrumb { font-family: var(--f-ar); font-size: 13px; letter-spacing: 0; text-transform: none; }
.pdp-breadcrumb a { color: var(--ink-muted); }
.pdp-breadcrumb a:hover { color: var(--ink); }
.pdp-breadcrumb .sep { margin: 0 8px; }

.pdp-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
}
@media (max-width: 900px) { .pdp-grid { grid-template-columns: 1fr; gap: 32px; } }

.pdp-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 12px; }
@media (max-width: 600px) { .pdp-gallery { grid-template-columns: 1fr; } }
.pdp-thumbs { display: flex; flex-direction: column; gap: 8px; }
@media (max-width: 600px) { .pdp-thumbs { flex-direction: row; } }
.pdp-thumb {
  width: 80px; height: 100px;
  background-size: cover; background-position: center;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color .25s var(--ease), opacity .25s var(--ease);
  opacity: 0.65;
  flex-shrink: 0;
}
.pdp-thumb.active { border-color: var(--ink); opacity: 1; }
.pdp-thumb:hover { opacity: 1; }
.pdp-main {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 8px;
}
html[dir="rtl"] .pdp-info h1 { font-family: var(--f-ar); font-weight: 300; line-height: 1.25; }
.pdp-sku {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted); font-size: 14px;
  margin-bottom: 24px;
}
html[dir="rtl"] .pdp-sku { font-family: var(--f-ar); font-style: normal; }
.pdp-price {
  font-family: var(--f-display);
  font-size: 24px; font-weight: 500;
  margin-bottom: 24px;
}
html[dir="rtl"] .pdp-price { font-family: var(--f-ar); font-weight: 700; font-size: 22px; }
.pdp-price .old { text-decoration: line-through; color: var(--ink-muted); font-weight: 300; margin-inline-end: 12px; font-size: 18px; }
.pdp-price .now.sale { color: #b54336; }

.pdp-desc {
  font-family: var(--f-display); font-style: italic;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft);
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 28px;
}
html[dir="rtl"] .pdp-desc { font-family: var(--f-ar); font-style: normal; font-size: 15px; line-height: 1.85; }

.pdp-options { margin-bottom: 28px; }
.pdp-option-label {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-display);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 12px;
}
html[dir="rtl"] .pdp-option-label { font-family: var(--f-ar); font-size: 13px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.pdp-option-label .guide {
  font-family: var(--f-display); font-style: italic;
  font-size: 13px; letter-spacing: 0;
  text-transform: none;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--ink-muted);
  cursor: pointer;
}
html[dir="rtl"] .pdp-option-label .guide { font-family: var(--f-ar); font-style: normal; font-weight: 400; }

.pdp-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.pdp-size {
  min-width: 56px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.08em;
  background: transparent;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.pdp-size:hover { border-color: var(--ink); }
.pdp-size.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.pdp-colors { display: flex; gap: 12px; align-items: center; }
.pdp-color {
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  border: 1px solid var(--line);
  transition: transform .2s var(--ease);
}
.pdp-color:hover { transform: scale(1.08); }
.pdp-color.active::after {
  content: ''; position: absolute; inset: -5px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.pdp-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pdp-actions .row { display: flex; gap: 8px; }
.pdp-actions .row .btn { flex: 1; }
.pdp-wish-big {
  width: 56px; height: 56px;
  border: 1px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all .25s var(--ease);
}
.pdp-wish-big:hover { background: var(--cream); }
.pdp-wish-big svg { width: 20px; height: 20px; stroke: var(--ink); fill: none; stroke-width: 1.5; transition: fill .2s var(--ease); }
.pdp-wish-big.active svg { fill: var(--ink); }

.pdp-accordion { border-top: 1px solid var(--line-soft); }
.pdp-acc {
  border-bottom: 1px solid var(--line-soft);
}
.pdp-acc-head {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  font-family: var(--f-display);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  text-align: start;
}
html[dir="rtl"] .pdp-acc-head { font-family: var(--f-ar); font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.pdp-acc-head .icon {
  font-family: var(--f-display); font-size: 22px;
  font-weight: 300;
  transition: transform .25s var(--ease);
}
.pdp-acc.open .pdp-acc-head .icon { transform: rotate(45deg); }
.pdp-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s var(--ease);
}
.pdp-acc.open .pdp-acc-body { max-height: 320px; }
.pdp-acc-body-inner {
  padding: 0 0 20px;
  font-family: var(--f-display); font-style: italic;
  font-size: 15px; line-height: 1.7;
  color: var(--ink-soft);
}
html[dir="rtl"] .pdp-acc-body-inner { font-family: var(--f-ar); font-style: normal; font-size: 14px; line-height: 1.85; }
.pdp-acc-body-inner ul { list-style: none; padding: 0; }
.pdp-acc-body-inner ul li {
  padding: 4px 0; padding-inline-start: 16px;
  position: relative;
}
.pdp-acc-body-inner ul li::before {
  content: ''; position: absolute;
  inset-inline-start: 0; top: 14px;
  width: 6px; height: 1px;
  background: var(--ink-muted);
}

/* ═════════════════════════════════════════════════════
   PAGE: ABOUT
   ═════════════════════════════════════════════════════ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  align-items: center;
  gap: 0;
}
@media (max-width: 800px) { .about-hero { grid-template-columns: 1fr; } }
.about-hero .text { padding: 80px var(--gutter); }
.about-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(40px, 5.4vw, 80px);
  letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 24px;
  white-space: pre-line;
}
html[dir="rtl"] .about-hero h1 { font-family: var(--f-ar); font-weight: 300; line-height: 1.2; }
.about-hero h1 .it { font-style: italic; }
.about-hero p {
  font-family: var(--f-display);
  font-size: 18px; line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px; max-width: 520px;
}
html[dir="rtl"] .about-hero p { font-family: var(--f-ar); font-size: 15px; line-height: 1.85; }
.about-hero .img {
  height: 100%; min-height: 480px;
  background-size: cover; background-position: center;
}

.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: var(--section) 0;
}
@media (max-width: 700px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--cream);
  padding: 48px 36px;
  text-align: center;
  border: 1px solid var(--line);
}
.value-card .num {
  font-family: var(--f-display); font-style: italic;
  font-size: 14px; color: var(--ink-muted);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.value-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
html[dir="rtl"] .value-card h3 { font-family: var(--f-ar); font-weight: 700; font-size: 24px; }
.value-card p {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted); font-size: 16px;
}
html[dir="rtl"] .value-card p { font-family: var(--f-ar); font-style: normal; font-size: 14px; line-height: 1.7; }

.vision-block {
  background: var(--ink);
  color: var(--bone);
  padding: clamp(64px, 12vw, 140px) var(--gutter);
  text-align: center;
}
.vision-block .eyebrow { color: var(--cream); }
.vision-block .eyebrow::before, .vision-block .eyebrow::after { background: var(--cream); }
.vision-block h2 {
  font-family: var(--f-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.3;
  max-width: 760px; margin: 0 auto;
}
html[dir="rtl"] .vision-block h2 { font-family: var(--f-ar); font-weight: 300; font-style: normal; line-height: 1.6; }

/* ═════════════════════════════════════════════════════
   PAGE: CONTACT
   ═════════════════════════════════════════════════════ */
.contact-hero {
  text-align: center;
  padding: 80px var(--gutter) 40px;
}
.contact-hero h1 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 88px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
html[dir="rtl"] .contact-hero h1 { font-family: var(--f-ar); font-weight: 300; }
.contact-hero p {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted); font-size: 18px;
}
html[dir="rtl"] .contact-hero p { font-family: var(--f-ar); font-style: normal; font-size: 15px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 48px 32px;
  text-align: center;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.contact-card:hover { background: var(--bone); border-color: var(--ink); }
.contact-card .icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
}
.contact-card .icon svg { width: 24px; height: 24px; }
.contact-card h3 {
  font-family: var(--f-display);
  font-weight: 400; font-size: 26px;
  margin-bottom: 8px;
}
html[dir="rtl"] .contact-card h3 { font-family: var(--f-ar); font-weight: 700; font-size: 22px; }
.contact-card p {
  font-family: var(--f-display); font-style: italic;
  color: var(--ink-muted); font-size: 15px;
  margin-bottom: 24px;
  flex: 1;
}
html[dir="rtl"] .contact-card p { font-family: var(--f-ar); font-style: normal; font-size: 14px; line-height: 1.6; }
.contact-card .btn { margin-top: auto; }

.hours-block {
  background: var(--ink);
  color: var(--bone);
  padding: 56px;
  text-align: center;
  margin: 40px 0;
}
.hours-block h3 {
  font-family: var(--f-display);
  font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 20px;
}
html[dir="rtl"] .hours-block h3 { font-family: var(--f-ar); font-size: 14px; letter-spacing: 0; text-transform: none; font-weight: 700; }
.hours-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hours-block ul li {
  font-family: var(--f-display); font-style: italic;
  font-size: 18px;
}
html[dir="rtl"] .hours-block ul li { font-family: var(--f-ar); font-style: normal; font-size: 15px; }
