/** Shopify CDN: Minification failed

Line 22:7 Expected identifier but found whitespace
Line 22:9 Unexpected "{"
Line 22:19 Expected ":"
Line 23:12 Expected identifier but found whitespace
Line 23:14 Unexpected "{"
Line 23:24 Expected ":"
Line 24:9 Expected identifier but found whitespace
Line 24:11 Unexpected "{"
Line 24:21 Expected ":"
Line 26:12 Expected identifier but found whitespace
... and 12 more hidden warnings

**/
/* =========================================================
   PRK TEX  ·  Shopify Theme  ·  v2 (Editorial Ethnic)
   Handloom · Sarees · Refined · Warm · Serif-led
   ========================================================= */

:root {
  --bg: {{ settings.color_background }};
  --surface: {{ settings.color_surface }};
  --text: {{ settings.color_text }};
  --muted: #6A6055;
  --primary: {{ settings.color_primary }};
  --primary-hover: #7A5A2A;
  --accent: {{ settings.color_accent }};
  --line: {{ settings.color_border }};
  --line-soft: #E9E4DA;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', 'Manrope', system-ui, sans-serif;
  --page-width: {{ settings.page_width }}px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-serif); font-weight: 500; margin: 0; letter-spacing: -0.01em; line-height: 1.05; }
p { margin: 0 0 1em; }
::selection { background: var(--primary); color: #fff; }

.skip-link { position: absolute; left: -9999px; top: 0; padding: .5rem 1rem; background: var(--text); color: #fff; z-index: 999; }
.skip-link:focus { left: 0; }

.container { max-width: var(--page-width); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 18px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; min-width: 160px;
  font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.01em; font-weight: 500;
  border: 1px solid var(--line);
  background: #fff; color: var(--text);
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--text); color: #fff; border-color: var(--text); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn--primary { background: var(--text); color: #fff; border-color: var(--text); }
.btn--primary:hover { background: var(--primary); border-color: var(--primary); }
.btn--ghost { background: transparent; }
.btn--ghost:hover { background: #fff; color: var(--text); border-color: var(--text); }
.btn--sm { padding: 10px 18px; font-size: 13px; min-width: 0; }
.btn--block { width: 100%; }
.btn--light { background: #fff; color: var(--text); }
.btn--light:hover { background: rgba(255,255,255,.92); color: var(--text); border-color: #fff; }

/* ---------- Announcement marquee ---------- */
.marquee-bar {
  background: #EFE9DD; color: var(--text);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden; padding: 10px 0;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.marquee-track { display: inline-flex; gap: 3rem; animation: marquee 40s linear infinite; white-space: nowrap; }
.marquee-item::after { content: '·'; color: var(--primary); margin-left: 3rem; font-weight: 700; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px; padding: 18px 0;
}
.header-left { display: flex; align-items: center; gap: 32px; }
.header-logo a {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--font-sans); font-weight: 700; font-size: 30px; letter-spacing: -0.02em; color: var(--text);
}
.header-logo .logo-tex {
  font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--primary);
  font-size: 30px; margin-left: 2px;
}
.header-nav { display: flex; gap: 26px; align-items: center; }
.header-nav a {
  font-size: 14px; color: var(--text); font-weight: 400; position: relative; padding: 4px 0;
  transition: color .2s ease;
}
.header-nav a:hover { color: var(--primary); }
.header-nav a::after {
  content:''; position:absolute; left:0; right:0; bottom:-2px; height:1px; background: var(--primary);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.header-nav a:hover::after { transform: scaleX(1); }

.header-search {
  display: flex; align-items: center; gap: 10px;
  max-width: 520px; width: 100%; margin: 0 auto;
  padding: 10px 18px;
  background: #F5F1E8; border: 1px solid var(--line-soft);
  border-radius: 999px;
  transition: border-color .2s ease, background .2s ease;
}
.header-search:hover, .header-search:focus-within { border-color: var(--primary); background: #fff; }
.header-search input {
  border: 0; background: transparent; outline: none; flex: 1;
  font-size: 14px; color: var(--text);
}
.header-search input::placeholder { color: var(--muted); }
.header-search .icon { color: var(--muted); }

.header-actions { display: flex; justify-content: flex-end; gap: 6px; align-items: center; }
.header-actions .link-btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px;
  font-size: 14px; color: var(--text); font-weight: 500;
  border-radius: 999px;
  transition: background .2s ease;
}
.header-actions .link-btn:hover { background: var(--line-soft); }
.icon-btn {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; position: relative; transition: background .2s ease;
}
.icon-btn:hover { background: var(--line-soft); }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 18px; height: 18px; padding: 0 5px;
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; border: 2px solid #fff;
}

.mobile-toggle { display: none; }
@media (max-width: 1024px) {
  .header-inner { grid-template-columns: auto auto; gap: 12px; }
  .header-left .header-nav { display: none; }
  .header-search { display: none; }
  .mobile-toggle { display: inline-flex; }
  .header-actions .link-btn span { display: none; }
}

/* ---------- Mobile drawer nav ---------- */
.mobile-nav {
  position: fixed; top: 0; left: 0; height: 100%; width: 84%; max-width: 360px;
  background: var(--surface); border-right: 1px solid var(--line-soft);
  transform: translateX(-100%); transition: transform .35s ease;
  z-index: 60; padding: 24px; overflow-y: auto;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 16px 0; border-bottom: 1px solid var(--line-soft); font-size: 16px; }
.mobile-nav .header-search { display: flex; margin: 16px 0; }
.overlay { position: fixed; inset: 0; background: rgba(20,15,10,.5); opacity: 0; pointer-events: none; transition: opacity .3s ease; z-index: 55; }
.overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 82vh; display: flex; align-items: center;
  background: #C9BFB2; color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,15,10,.35) 0%, rgba(20,15,10,.1) 45%, rgba(20,15,10,0) 70%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; width: 100%; max-width: 620px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: #F5F1E8;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: '✦'; color: var(--accent); }
.hero-title {
  font-family: var(--font-serif); font-weight: 400;
  font-size: clamp(46px, 6.5vw, 96px);
  line-height: 1.02; letter-spacing: -0.015em;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; }
.hero-sub {
  max-width: 460px; font-size: 16px; line-height: 1.7; margin-bottom: 36px;
  color: rgba(255,255,255,.92);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .hero { min-height: 78vh; }
  .hero-media::after { background: linear-gradient(180deg, rgba(20,15,10,.15) 0%, rgba(20,15,10,.55) 70%); }
  .hero-content { padding: 60px 0 40px; }
}

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section--tight { padding: 60px 0; }
.section--soft { background: #FAF6EE; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--primary);
  font-weight: 500; margin-bottom: 12px;
}
.section-title { font-size: clamp(32px, 4vw, 54px); font-weight: 400; }
.section-title em { font-style: italic; color: var(--primary); }
.section-link {
  font-size: 14px; color: var(--text); border-bottom: 1px solid var(--text);
  padding-bottom: 3px; display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s ease, border-color .2s ease;
}
.section-link:hover { color: var(--primary); border-color: var(--primary); }

/* ---------- USP strip ---------- */
.usp-strip {
  background: #FAF6EE;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 28px 0;
}
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: center; }
.usp-item { display: flex; align-items: center; gap: 14px; }
.usp-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #fff; border: 1px solid var(--line-soft); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: var(--primary);
}
.usp-text .usp-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.usp-text .usp-sub { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

/* ---------- Category tiles ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-tile {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 4px; background: #E9E4DA;
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20,15,10,.6) 100%);
}
.cat-tile .cat-label {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  color: #fff; font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  letter-spacing: -0.01em;
}
.cat-tile .cat-count { position: absolute; left: 20px; bottom: 8px; z-index: 2; font-size: 12px; color: rgba(255,255,255,.85); }
@media (max-width: 900px) { .cats { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

/* ---------- Product grid & cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px 24px; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; } }

.product-card {
  position: relative; background: transparent;
  display: flex; flex-direction: column;
  transition: transform .3s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-card__media {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: #EFE9DD;
  border-radius: 4px;
}
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s ease, transform .6s ease; }
.product-card__media img.secondary { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .product-card__media img.secondary { opacity: 1; }
.product-card:hover .product-card__media img.primary { transform: scale(1.04); }
.product-card__badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.badge {
  padding: 5px 12px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  background: #fff; color: var(--text);
  border-radius: 999px;
}
.badge--sale { background: var(--primary); color: #fff; }
.badge--new { background: var(--text); color: #fff; }
.badge--sold { background: var(--muted); color: #fff; }
.product-card__wish {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 36px; height: 36px; background: rgba(255,255,255,.9); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.product-card__wish:hover { background: var(--primary); color: #fff; }
.product-card__body { padding: 14px 4px 6px; display: flex; flex-direction: column; gap: 4px; }
.product-card__brand { font-size: 12px; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }
.product-card__title { font-family: var(--font-serif); font-size: 18px; font-weight: 500; line-height: 1.25; color: var(--text); }
.product-card__price { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.price-current { font-size: 15px; font-weight: 600; color: var(--text); }
.price-compare { text-decoration: line-through; font-size: 13px; color: var(--muted); }
.price-off { color: var(--primary); font-size: 12px; font-weight: 500; }

/* ---------- Editorial split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split > div { padding: 90px 60px; display: flex; flex-direction: column; justify-content: center; }
.split .split-a { background: #EFE9DD; }
.split .split-b { position: relative; overflow: hidden; min-height: 480px; background: #C9BFB2; color: #fff; }
.split .split-b img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split .split-b .split-b__inner { position: relative; z-index: 2; }
.split .split-b::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.5));
}
.split h2 { font-size: clamp(34px, 4vw, 60px); margin-bottom: 16px; }
.split p { max-width: 420px; color: var(--muted); }
.split .split-b p { color: rgba(255,255,255,.9); }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split > div { padding: 60px 24px; } }

/* ---------- Footer ---------- */
.site-footer { background: #F5F1E8; color: var(--text); padding: 80px 0 30px; border-top: 1px solid var(--line-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px; margin-bottom: 60px; }
.footer-brand h3 { font-size: 32px; margin-bottom: 8px; }
.footer-brand h3 em { font-family: var(--font-serif); font-style: italic; color: var(--primary); }
.footer-brand p { color: var(--muted); max-width: 340px; }
.footer-col h5 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: var(--muted); }
.footer-col a:hover { color: var(--primary); }
.newsletter { display: flex; gap: 0; margin-top: 14px; }
.newsletter input {
  flex: 1; padding: 13px 18px; background: #fff; border: 1px solid var(--line-soft); color: var(--text);
  border-radius: 999px 0 0 999px; font-size: 14px;
}
.newsletter input::placeholder { color: var(--muted); }
.newsletter button {
  padding: 0 22px; background: var(--text); color: #fff; border: 1px solid var(--text);
  border-radius: 0 999px 999px 0; font-weight: 500; font-size: 14px;
  transition: background .2s ease;
}
.newsletter button:hover { background: var(--primary); border-color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line-soft); font-size: 12px; color: var(--muted); }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; background: #fff; border: 1px solid var(--line-soft);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.socials a:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1 / -1; } }

/* ---------- Product Detail Page ---------- */
.pdp { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; padding: 40px 0 80px; }
.pdp-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.pdp-gallery img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 4px; }
.pdp-gallery img:first-child { grid-column: 1 / -1; aspect-ratio: 3/3.5; }
.pdp-info { padding-top: 20px; }
.pdp-info h1 { font-size: clamp(28px, 3vw, 42px); font-weight: 400; margin-bottom: 8px; }
.pdp-brand { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.pdp-price { display: flex; align-items: baseline; gap: 14px; margin: 20px 0; }
.pdp-price .price-current { font-size: 26px; font-weight: 600; }
.pdp-sizes { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.size-chip {
  min-width: 52px; height: 44px; padding: 0 14px;
  border: 1px solid var(--line-soft); background: #fff;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500;
  transition: all .2s;
}
.size-chip:hover:not(:disabled), .size-chip.is-active { border-color: var(--text); background: var(--text); color: #fff; }
.size-chip:disabled { opacity: .35; text-decoration: line-through; cursor: not-allowed; }
.pdp-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.pdp-actions .btn { flex: 1; min-width: 180px; }
.pdp-meta { margin-top: 36px; border-top: 1px solid var(--line-soft); padding-top: 8px; font-size: 14px; }
.pdp-meta details { border-bottom: 1px solid var(--line-soft); padding: 18px 0; }
.pdp-meta summary { font-size: 14px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.pdp-meta summary::after { content: '+'; font-size: 18px; color: var(--muted); }
.pdp-meta details[open] summary::after { content: '−'; }
.pdp-meta details p { margin: 12px 0 0; color: var(--muted); line-height: 1.6; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 24px; padding: 20px 0 60px; } .pdp-gallery { grid-template-columns: 1fr; } .pdp-gallery img:first-child { grid-column: 1; } }

/* ---------- Collection page ---------- */
.collection-head { padding: 60px 0 20px; text-align: center; }
.collection-head h1 { font-size: clamp(38px, 5vw, 60px); font-weight: 400; }
.collection-head p { color: var(--muted); max-width: 560px; margin: 12px auto 0; }
.collection-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); margin-bottom: 40px; }
.collection-toolbar select { padding: 10px 16px; border: 1px solid var(--line-soft); background: #fff; font-size: 14px; border-radius: 999px; }
.collection-count { font-size: 13px; color: var(--muted); letter-spacing: 0.06em; }

/* ---------- Cart Drawer ---------- */
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 440px; max-width: 96%;
  background: var(--surface); border-left: 1px solid var(--line-soft);
  transform: translateX(100%); transition: transform .4s ease;
  z-index: 70; display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head { padding: 24px; border-bottom: 1px solid var(--line-soft); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__head h3 { font-size: 24px; font-weight: 500; }
.cart-drawer__body { padding: 24px; flex: 1; overflow-y: auto; }
.cart-drawer__foot { padding: 24px; border-top: 1px solid var(--line-soft); background: #FAF6EE; }
.cart-line { display: grid; grid-template-columns: 80px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.cart-line img { width: 80px; height: 100px; object-fit: cover; border-radius: 4px; }
.cart-line__title { font-family: var(--font-serif); font-size: 16px; font-weight: 500; }
.cart-line__meta { font-size: 12px; color: var(--muted); margin: 4px 0; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line-soft); border-radius: 999px; overflow: hidden; }
.qty button { width: 30px; height: 30px; background: transparent; }
.qty button:hover { background: var(--line-soft); }
.qty span { width: 30px; text-align: center; font-size: 14px; font-weight: 600; }
.cart-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty h3 { font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.cart-empty p { color: var(--muted); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 12px; } .mt-4 { margin-top: 24px; }
.hidden { display: none !important; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
[data-reveal].in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
