/** Shopify CDN: Minification failed

Line 374:17 Expected "}" to go with "{"

**/
/* =========================================================================
   Studio Takween — design layer  (Bone & Brass)
   Loaded after base.css from snippets/tk-head.liquid, so it wins.
   Dawn root font-size is 62.5%, so 1rem = 10px.

   Product-image blending lives in tk-blend.css, which loads after this file.
   ========================================================================= */

:root {
  --tk-bone:       #F7F4EF;
  --tk-surface:    #FFFFFF;
  --tk-ink:        #1C1B18;
  --tk-muted:      #6E6A62;
  --tk-line:       #E2DCD1;
  --tk-brass:      #B08D4F;
  --tk-brass-soft: #D9C49A;
  --tk-deep:       #232019;
  --tk-sand:       #EDE7DC;
  --tk-stock:      #3F6B4E;

  --tk-track: 0.16em;

  /* Shopify's font files carry Latin only, so Arabic gets its own stack. */
  --tk-font-ar: "Geeza Pro", "Noto Naskh Arabic", "Segoe UI", Tahoma, sans-serif;
}

/* ---------- Typography ---------------------------------------------------- */

body { color: rgba(var(--color-foreground), 0.88); letter-spacing: 0; }

h1, h2, h3, h4, h5,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-family: var(--font-heading-family);
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: pretty;
}

.h0, h1, .h1 { font-size: clamp(3.4rem, 5vw, 6rem); line-height: 1.08; }
h2, .h2      { font-size: clamp(2.8rem, 3.4vw, 4.2rem); line-height: 1.14; }
h3, .h3      { font-size: 2.4rem; line-height: 1.25; }
h4, .h4      { font-size: 1.9rem; line-height: 1.3; }

.rte p, .rte li { font-size: 1.5rem; line-height: 1.65; }

/* The label voice — eyebrows, specs, trust rows, badges, accordions. */
.tk-label,
.tk-eyebrow__en,
.tk-spec-dims,
.tk-trust__text,
.tk-stat__label,
.tk-acc summary {
  font-family: var(--font-body-family);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: var(--tk-track);
  text-transform: uppercase;
}

.caption-with-letter-spacing {
  font-size: 1.1rem;
  letter-spacing: var(--tk-track);
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- The flute — our signature mark, drawn from the logo ---------- */

.tk-flute {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 1.4rem;
  flex: 0 0 auto;
}
.tk-flute span {
  display: block;
  width: 1px;
  background: var(--tk-brass);
}
.tk-flute span:nth-child(1), .tk-flute span:nth-child(5) { height: 55%; }
.tk-flute span:nth-child(2), .tk-flute span:nth-child(4) { height: 78%; }
.tk-flute span:nth-child(3) { height: 100%; }
.tk-flute--lg { height: 2.4rem; gap: 3px; }

/* ---------- Eyebrow — Arabic + English section label -------------------- */

.tk-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0 0 1.6rem;
}
.tk-eyebrow__ar {
  font-family: var(--tk-font-ar);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--tk-brass);
}
.tk-eyebrow__en { color: var(--tk-muted); }
.tk-eyebrow--on-dark .tk-eyebrow__en,
.tk-eyebrow--on-dark .tk-eyebrow__ar { color: var(--tk-brass-soft); }
.tk-eyebrow--center { justify-content: center; }

/* ---------- Rhythm ------------------------------------------------------- */

.tk-section__head { margin-bottom: 4rem; }
.tk-section__head h2 { margin: 0; }

/* ---------- Buttons — squared, ink-filled; brass is never a fill --------
   Dawn draws button borders with a box-shadow on ::after, so that is left
   alone here — overriding it strips the outline off every secondary button. */

.button, .shopify-challenge__button, .customer button {
  font-family: var(--font-body-family);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 5.2rem;
  padding: 0 3.2rem;
}

/* ---------- Cards -------------------------------------------------------- */

.card__heading, .card__heading a {
  font-family: var(--font-heading-family);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.3;
}
.card-information > .card__information { padding-top: 1.4rem; }
.price { font-size: 1.5rem; letter-spacing: 0.01em; }
.price__container .price-item { font-weight: 500; }

/* Collection tiles carry the name only. Descriptions belong on the collection
   page, not truncated mid-sentence inside a tile. */
.collection-list .card__caption { display: none; }
.collection-list .card__heading { font-size: 1.9rem; }

/* Dimensions printed on the card — nobody else in this market does it.
   Rendered from snippets/price.liquid; see the note there. */
.tk-card-dims {
  display: block;
  margin-top: 0.6rem;
  color: var(--tk-muted);
  font-family: var(--font-body-family);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: var(--tk-track);
  text-transform: uppercase;
}

/* Restrained badges — no sale theatre. */
.badge {
  font-size: 1rem;
  letter-spacing: var(--tk-track);
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 0;
}

/* ---------- Trust bar --------------------------------------------------- */

.tk-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem 1.6rem;
}
@media screen and (min-width: 990px) {
  .tk-trust { grid-template-columns: repeat(4, 1fr); gap: 3.2rem; }
}
/* min-width:0 stops grid items refusing to shrink below their content, which
   was clipping the longer labels at phone widths. */
.tk-trust__item { display: flex; align-items: center; gap: 1.4rem; min-width: 0; }
.tk-trust__icon { flex: 0 0 auto; width: 2.6rem; height: 2.6rem; stroke: var(--tk-brass); fill: none; stroke-width: 1.1; }
.tk-trust__text { color: rgba(var(--color-foreground), 0.95); min-width: 0; overflow-wrap: anywhere; }

.tk-trust--pdp {
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--tk-line);
}
@media screen and (min-width: 990px) {
  .tk-trust--pdp { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
}
.tk-trust--pdp .tk-trust__icon { width: 2rem; height: 2rem; }
.tk-trust--pdp .tk-trust__text { font-size: 1rem; }

/* ---------- The workshop band ------------------------------------------ */

.tk-story { display: grid; gap: 4rem; align-items: center; }
@media screen and (min-width: 990px) {
  .tk-story { grid-template-columns: 1.05fr 1fr; gap: 7rem; }
}
.tk-story__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tk-story__body h2 { margin: 0 0 2rem; }
.tk-story__body p { color: rgba(var(--color-foreground), 0.8); max-width: 52ch; }

.tk-stats {
  display: grid; gap: 2.4rem; margin-top: 3.6rem;
  padding-top: 3rem; border-top: 1px solid rgba(217, 196, 154, 0.25);
}
@media screen and (min-width: 750px) { .tk-stats { grid-template-columns: repeat(3, 1fr); } }
.tk-stat__label { color: var(--tk-brass-soft); display: block; margin-bottom: 0.6rem; }
.tk-stat__value { font-family: var(--font-heading-family); font-size: 1.8rem; }

/* ---------- Reviews ------------------------------------------------------ */

.tk-review { margin: 0; padding: 2.8rem; background: var(--tk-surface); border: 1px solid var(--tk-line); }
.tk-review__stars { color: var(--tk-brass); font-size: 1.4rem; letter-spacing: 0.2em; margin-bottom: 1.4rem; }
.tk-review blockquote { margin: 0 0 1.8rem; font-family: var(--font-heading-family); font-size: 1.9rem; line-height: 1.45; }
.tk-review figcaption { display: flex; flex-direction: column; gap: 0.3rem; }
.tk-review__name { font-weight: 500; font-size: 1.4rem; }
.tk-review__meta { color: var(--tk-muted); font-size: 1.3rem; }

/* ---------- Product page ------------------------------------------------ */

.product__title h1, .product__title { font-size: clamp(2.6rem, 3vw, 3.4rem); line-height: 1.15; }
.product__info-container .price { font-size: 2.2rem; }

.tk-spec-dims {
  display: block;
  margin: 1.6rem 0;
  padding: 1.4rem 0;
  border-block: 1px solid var(--tk-line);
  color: var(--tk-ink);
}

.tk-stock {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 1.4rem; color: var(--tk-stock); margin: 0 0 0.6rem;
}
.tk-stock::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; flex: 0 0 auto;
}
.tk-stock--out { color: var(--tk-muted); }
.tk-delivery { font-size: 1.4rem; color: var(--tk-muted); margin: 0; }

.tk-wa {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  width: 100%; min-height: 5.2rem; margin-top: 1rem;
  border: 1px solid #25D366; background: #25D366; color: #FFFFFF;
  font-family: var(--font-body-family);
  font-size: 1.3rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, color .2s;
}
.tk-wa:hover { background: #1DA851; color: #FFFFFF; }
.tk-wa svg { width: 1.8rem; height: 1.8rem; fill: currentColor; }

.tk-acc { border-top: 1px solid var(--tk-line); margin: 0; }
.tk-acc summary {
  list-style: none; cursor: pointer; padding: 1.8rem 0;
  display: flex; align-items: center; justify-content: space-between;
}
.tk-acc summary::-webkit-details-marker { display: none; }
.tk-acc summary::after {
  content: ""; width: 8px; height: 8px; flex: 0 0 auto;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg); margin-inline-start: 1rem; transition: transform .2s;
}
.tk-acc[open] summary::after { transform: rotate(-135deg); }
.tk-acc__body { padding-bottom: 2.4rem; }

.tk-specs { width: 100%; border-collapse: collapse; font-size: 1.4rem; }
.tk-specs th, .tk-specs td { text-align: start; padding: 1.2rem 0; border-bottom: 1px solid var(--tk-line); vertical-align: top; }
.tk-specs th { width: 42%; font-weight: 400; color: var(--tk-muted); }
.tk-specs td { color: var(--tk-ink); }
.tk-specs tr:last-child th, .tk-specs tr:last-child td { border-bottom: 0; }

.tk-made-to-measure {
  margin-top: 2.4rem; padding: 2rem; border: 1px solid var(--tk-line);
  background: var(--tk-sand);
}
.tk-made-to-measure p { margin: 0 0 1rem; font-size: 1.4rem; }

/* ---------- Instagram grid ---------------------------------------------- */

.tk-ig { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
@media screen and (min-width: 750px) { .tk-ig { grid-template-columns: repeat(6, 1fr); } }
.tk-ig a { display: block; position: relative; aspect-ratio: 1; overflow: hidden; background: var(--tk-sand); }
.tk-ig img, .tk-ig svg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tk-ig a:hover img { transform: scale(1.04); }
.tk-ig__sub { color: var(--tk-muted); margin: 0.8rem 0 0; font-size: 1.4rem; }

/* ---------- Workshop / contact ------------------------------------------ */

.tk-showroom { display: grid; gap: 3.2rem; }
@media screen and (min-width: 990px) { .tk-showroom { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; } }

/* Desaturated rather than fully greyscale: a hard grayscale(1) also drained
   the colour out of Google's own location marker, leaving the map with no
   visible pin. This keeps the map quiet without hiding the point of it. */
.tk-showroom__map iframe {
  width: 100%; aspect-ratio: 4/3; border: 0; display: block;
  filter: saturate(0.55);
}

.tk-contact-list { list-style: none; padding: 0; margin: 2.4rem 0 0; }
.tk-contact-list li { padding: 1.2rem 0; border-bottom: 1px solid var(--tk-line); font-size: 1.5rem; }
.tk-contact-list li span { display: block; color: var(--tk-muted); margin-bottom: 0.3rem; font-size: 1.1rem; letter-spacing: var(--tk-track); text-transform: uppercase; }
/* Default link blue is the one colour that does not belong on this page. */
.tk-contact-list a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--tk-brass);
  text-underline-offset: 3px;
  transition: color .2s;
}
.tk-contact-list a:hover { color: var(--tk-brass); }

/* ---------- Footer ------------------------------------------------------ */

/* The flute at architectural scale — a brass pinstripe along the top edge. */
.footer::before {
  content: "";
  display: block;
  height: 2.4rem;
  width: 100%;
  background-image: repeating-linear-gradient(90deg, var(--tk-brass) 0 1px, transparent 1px 9px);
  opacity: 0.4;
}
.footer { border-top: 0; }
.footer__content-bottom { border-top: 1px solid rgba(247, 244, 239, 0.12); }

/* ---------- Floating WhatsApp ------------------------------------------- */

.tk-wa-float {
  position: fixed; right: 1.8rem; bottom: 1.8rem; z-index: 40;
  width: 5.2rem; height: 5.2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--tk-deep); color: var(--tk-bone);
  box-shadow: 0 2px 14px rgba(28, 27, 24, 0.22);
}
.tk-wa-float svg { width: 2.4rem; height: 2.4rem; fill: currentColor; }

/* ---------- RTL scaffolding (Phase E) ----------------------------------- */

[dir="rtl"] .tk-eyebrow { flex-direction: row-reverse; }
[dir="rtl"] .tk-wa-float { right: auto; left: 1.8rem; }
[dir="rtl"] .tk-specs th, [dir="rtl"] .tk-specs td { text-align: right; }

@media (prefers-reduced-motion: reduce) {
  .tk-ig img, .tk-wa, .tk-acc summary::after { transition: none; }
}



/* Lightbox: fit the photo to the screen, not to the modal's width.
   Dawn forces width:100%, which on square images overflows the
   viewport height and reads as an extreme zoom. */
.product-media-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-media-modal__content > *,
.product-media-modal__content img {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 4rem);
  object-fit: contain;
  margin: 0 auto;