/* ============================================================
   ArishaTrends — Main Theme Stylesheet
   Child of Twenty Twenty-Four
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────── */
:root {
  --mehroon:        #5A1020;
  --mehroon-light:  #7a1a2e;
  --mehroon-pale:   #f9f0f2;
  --mehroon-mist:   #fdf5f6;
  --white:          #ffffff;
  --off-white:      #FAF8F8;
  --text:           #111111;
  --text-mid:       #444444;
  --text-muted:     #888888;
  --border:         #e8e2e2;
  --border-light:   #f0eaea;
  --shadow:         0 2px 24px rgba(90,16,32,0.07);
  --shadow-hover:   0 8px 40px rgba(90,16,32,0.14);
  --radius:         4px;
  --radius-lg:      10px;
  --font-display:   'Playfair Display', serif;
  --font-body:      'Jost', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body) !important;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--mehroon); border-radius: 2px; }

/* Override TwentyTwentyFour defaults */
.wp-site-blocks { padding: 0 !important; }
.wp-block-group.has-global-padding { padding-inline: 0 !important; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-display) !important; }
p, a, button, input, label, select, textarea { font-family: var(--font-body) !important; }

/* ── Announcement Bar ───────────────────────────────── */
.at-announce-bar {
  background: var(--mehroon);
  color: white;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 201;
}
.at-announce-bar span { opacity: 0.9; }
.at-announce-bar .sep { opacity: 0.3; }

/* ── Site Header ────────────────────────────────────── */
.at-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s;
}
.at-header.scrolled { box-shadow: 0 2px 20px rgba(90,16,32,0.08); }
.at-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem;
}

/* Logo */
.at-logo {
  font-family: var(--font-display) !important;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.at-logo em { color: var(--mehroon); font-style: italic; font-weight: 400; }

/* Desktop nav */
.at-nav { flex: 1; display: flex; justify-content: center; }
.at-nav ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0; padding: 0;
}
.at-nav ul li { display: inline-flex; }
.at-nav ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
  padding: 0.35rem 1rem;
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}
.at-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--mehroon);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.at-nav ul li a:hover,
.at-nav ul li.current-menu-item > a { color: var(--mehroon); }
.at-nav ul li a:hover::after,
.at-nav ul li.current-menu-item > a::after { transform: scaleX(1); }

/* Header icons */
.at-header-icons { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.at-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1.05rem;
  position: relative;
  transition: color 0.2s;
  padding: 0.3rem;
  display: flex; align-items: center;
  text-decoration: none;
}
.at-icon-btn:hover { color: var(--mehroon); }
.at-cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--mehroon);
  color: white;
  font-size: 0.5rem;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

/* Hamburger */
.at-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.at-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.at-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.at-hamburger.open span:nth-child(2) { opacity: 0; }
.at-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer menu */
.at-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: white;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  overflow-y: auto;
}
.at-mobile-menu.open { display: flex; }
.at-mobile-menu a {
  text-decoration: none;
  font-size: 1.1rem;
  font-family: var(--font-display) !important;
  color: var(--text);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s;
}
.at-mobile-menu a:hover { color: var(--mehroon); }

/* ── Buttons ────────────────────────────────────────── */
.at-btn {
  font-family: var(--font-body) !important;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.at-btn-primary { background: var(--white); color: var(--mehroon); border: 1px solid var(--mehroon); padding: 0.85rem 2.2rem; }
.at-btn-primary:hover { background: var(--mehroon); color: white; }
.at-btn-secondary { background: transparent; color: var(--text-mid); border: 1px solid var(--border); padding: 0.85rem 2.2rem; }
.at-btn-secondary:hover { border-color: var(--mehroon); color: var(--mehroon); }
.at-btn-solid { background: var(--mehroon); color: white; border: 1px solid var(--mehroon); padding: 0.85rem 2.2rem; }
.at-btn-solid:hover { background: var(--mehroon-light); }

/* ── Section Utilities ──────────────────────────────── */
.at-section { padding: 6rem 0; }
.at-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.at-sec-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mehroon); font-weight: 500; display: block; margin-bottom: 0.9rem;
}
.at-sec-title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400; color: var(--text); line-height: 1.2;
}
.at-sec-title em { color: var(--mehroon); font-style: italic; }
.at-sec-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3rem; }
.at-sec-link {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mehroon); text-decoration: none; font-weight: 500;
  display: flex; align-items: center; gap: 0.4rem; transition: gap 0.2s;
}
.at-sec-link:hover { gap: 0.8rem; }

/* ── Marquee ────────────────────────────────────────── */
.at-marquee {
  background: var(--mehroon-pale);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 0.9rem 0; overflow: hidden; white-space: nowrap;
}
.at-marquee-track { display: inline-block; animation: atMarquee 28s linear infinite; }
.at-marquee-track span { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mehroon); margin: 0 2.5rem; font-weight: 500; }
.at-marquee-track .dot { opacity: 0.4; margin: 0 1rem; }
@keyframes atMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Hero ───────────────────────────────────────────── */
.at-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 75vh;
  overflow: hidden;
}
.at-hero-left {
  background: var(--off-white);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 3.5rem 4rem 5rem;
}
.at-hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--mehroon); font-weight: 500; margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.at-hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--mehroon); }
.at-hero-title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 400; line-height: 1.12; color: var(--text); margin-bottom: 1.2rem;
}
.at-hero-title em { color: var(--mehroon); font-style: italic; display: block; }
.at-hero-sub {
  font-size: 0.88rem; color: var(--text-muted); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 2.5rem; font-weight: 300;
}
.at-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.at-hero-stats { margin-top: 3rem; display: flex; gap: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.at-stat-num { font-family: var(--font-display) !important; font-size: 1.7rem; font-weight: 400; color: var(--mehroon); display: block; }
.at-stat-lbl { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.at-hero-right { position: relative; overflow: hidden; }
.at-hero-right img { width: 100%; height: 100%; object-fit: cover; object-position: 65% center; filter: brightness(0.95) saturate(0.9); }
.at-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(250,248,248,0.18) 0%, transparent 35%); }

/* ── Collections Grid ───────────────────────────────── */
.at-collections-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.at-coll-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); cursor: pointer; aspect-ratio: 3/4; transition: all 0.35s; }
.at-coll-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.at-coll-card.featured { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.at-coll-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.at-coll-card:hover img { transform: scale(1.05); }
.at-coll-inner {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,4,8,0.72) 0%, rgba(17,4,8,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem;
}
.at-coll-tag { font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; font-weight: 500; }
.at-coll-name { font-family: var(--font-display) !important; font-size: 1.1rem; font-weight: 500; color: white; margin-bottom: 0.3rem; }
.at-coll-card.featured .at-coll-name { font-size: 1.6rem; }
.at-coll-count { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.at-coll-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.8rem; transition: all 0.25s;
}
.at-coll-card:hover .at-coll-arrow { background: white; border-color: white; color: var(--mehroon); }

/* ── Product Cards ──────────────────────────────────── */
.at-products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.at-product-card { cursor: pointer; border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.at-prod-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--off-white); margin-bottom: 1rem; position: relative; aspect-ratio: 3/4; }
.at-prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); }
.at-product-card:hover .at-prod-img img { transform: scale(1.06); }
.at-prod-badge { position: absolute; top: 12px; left: 12px; font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.28rem 0.75rem; border-radius: 20px; font-weight: 600; z-index: 2; }
.at-badge-new { background: var(--mehroon); color: white; }
.at-badge-sale { background: #f0e6e8; color: var(--mehroon); }
.at-badge-best { background: #111; color: white; }
.at-prod-wish { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: white; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.85rem; transition: all 0.2s; opacity: 0; z-index: 2; }
.at-product-card:hover .at-prod-wish { opacity: 1; }
.at-prod-wish:hover { background: var(--mehroon-pale); border-color: var(--mehroon); }
.at-prod-name { font-family: var(--font-display) !important; font-size: 1rem; font-weight: 400; color: var(--text); margin-bottom: 0.25rem; }
.at-prod-sub { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.at-prod-prices { display: flex; align-items: center; gap: 0.6rem; }
.at-prod-price { font-size: 0.9rem; font-weight: 500; color: var(--text); }
.at-prod-old { font-size: 0.82rem; color: var(--text-muted); text-decoration: line-through; }
.at-prod-add { margin-top: 0.8rem; width: 100%; background: transparent; color: var(--mehroon); border: 1px solid var(--mehroon); padding: 0.6rem; font-family: var(--font-body) !important; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: var(--radius); transition: all 0.22s; font-weight: 500; }
.at-prod-add:hover { background: var(--mehroon); color: white; }

/* WooCommerce product card overrides */
.woocommerce ul.products li.product { font-family: var(--font-body) !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: var(--font-display) !important; font-size: 1rem !important; font-weight: 400 !important; }
.woocommerce ul.products li.product .price { color: var(--text) !important; font-weight: 500; }
.woocommerce ul.products li.product .button { background: transparent !important; color: var(--mehroon) !important; border: 1px solid var(--mehroon) !important; border-radius: var(--radius) !important; font-family: var(--font-body) !important; font-size: 0.72rem !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; transition: all 0.22s !important; }
.woocommerce ul.products li.product .button:hover { background: var(--mehroon) !important; color: white !important; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button { background: var(--mehroon) !important; color: white !important; border-radius: var(--radius) !important; font-family: var(--font-body) !important; letter-spacing: 0.1em !important; text-transform: uppercase !important; font-size: 0.78rem !important; }
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--mehroon-light) !important; }
.woocommerce-message, .woocommerce-info { border-top-color: var(--mehroon) !important; }
.woocommerce-message::before, .woocommerce-info::before { color: var(--mehroon) !important; }
.woocommerce span.onsale { background: var(--mehroon) !important; border-radius: var(--radius) !important; }
.woocommerce .star-rating span { color: var(--mehroon) !important; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span { color: var(--mehroon) !important; border-color: var(--border) !important; }
.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current { background: var(--mehroon) !important; color: white !important; }

/* ── Feature Banner ─────────────────────────────────── */
.at-feature-banner { position: relative; overflow: hidden; min-height: 500px; display: flex; align-items: center; }
.at-feature-bg { position: absolute; inset: 0; }
.at-feature-bg img { width: 100%; height: 100%; object-fit: cover; }
.at-feature-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(90,16,32,0.93) 0%, rgba(90,16,32,0.75) 50%, rgba(90,16,32,0.3) 100%); }
.at-feature-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.at-feat-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 1rem; display: block; }
.at-feat-title { font-family: var(--font-display) !important; font-size: clamp(2rem,3vw,3rem); font-weight: 400; color: white; line-height: 1.15; margin-bottom: 1.4rem; }
.at-feat-title em { font-style: italic; opacity: 0.7; }
.at-feat-text { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 2rem; }
.at-feat-points { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2.5rem; padding: 0; }
.at-feat-points li { font-size: 0.82rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 0.7rem; }
.at-feat-points li::before { content: '✓'; color: rgba(255,255,255,0.5); font-size: 0.7rem; width: 18px; height: 18px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.at-feat-img { border-radius: var(--radius-lg); overflow: hidden; height: 360px; }
.at-feat-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Why Us ─────────────────────────────────────────── */
.at-why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border-light); }
.at-why-item { background: white; padding: 3rem 2.5rem; transition: background 0.25s; }
.at-why-item:hover { background: var(--mehroon-mist); }
.at-why-ico { font-size: 1.6rem; margin-bottom: 1.2rem; width: 52px; height: 52px; border-radius: var(--radius); background: var(--mehroon-pale); display: flex; align-items: center; justify-content: center; }
.at-why-title { font-family: var(--font-display) !important; font-size: 1.1rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--text); }
.at-why-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; }

/* ── Shop The Look ──────────────────────────────────── */
.at-stl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.at-stl-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 480px; display: flex; align-items: flex-end; padding: 2rem; cursor: pointer; }
.at-stl-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s ease; }
.at-stl-card:hover img { transform: scale(1.04); }
.at-stl-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,4,8,0.75) 0%, transparent 55%); }
.at-stl-info { position: relative; z-index: 2; background: rgba(255,255,255,0.95); border-radius: var(--radius); padding: 1.2rem 1.5rem; width: 100%; }
.at-stl-look { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mehroon); margin-bottom: 0.3rem; }
.at-stl-name { font-family: var(--font-display) !important; font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; }
.at-stl-price { font-size: 0.85rem; color: var(--text-mid); display: flex; justify-content: space-between; align-items: center; }

/* ── Reviews ────────────────────────────────────────── */
.at-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.at-review-card { background: white; border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-light); transition: box-shadow 0.3s; }
.at-review-card:hover { box-shadow: var(--shadow); }
.at-stars { color: #c4965a; font-size: 0.8rem; letter-spacing: 0.12em; margin-bottom: 1rem; }
.at-review-text { font-family: var(--font-display) !important; font-size: 1rem; font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 1.5rem; }
.at-reviewer { display: flex; align-items: center; gap: 0.8rem; }
.at-reviewer-avi { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.at-reviewer-avi img { width: 100%; height: 100%; object-fit: cover; }
.at-reviewer-name { font-size: 0.85rem; font-weight: 500; color: var(--text); }
.at-reviewer-tag { font-size: 0.72rem; color: var(--text-muted); }
.at-verified { font-size: 0.65rem; color: #2a9d5c; background: #edf7f1; padding: 0.18rem 0.5rem; border-radius: 10px; margin-left: 0.4rem; }

/* ── Instagram Grid ─────────────────────────────────── */
.at-insta-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; }
.at-insta-tile { aspect-ratio: 1; overflow: hidden; cursor: pointer; position: relative; }
.at-insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.at-insta-tile:hover img { transform: scale(1.08); }
.at-insta-tile:hover .at-insta-overlay { opacity: 1; }
.at-insta-overlay { position: absolute; inset: 0; background: rgba(90,16,32,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.at-insta-overlay span { color: white; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }

/* ── Newsletter ─────────────────────────────────────── */
.at-newsletter { background: var(--text); padding: 6rem 0; text-align: center; }
.at-nl-label { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 1rem; display: block; }
.at-nl-title { font-family: var(--font-display) !important; font-size: clamp(2rem,3vw,3rem); font-weight: 400; color: white; margin-bottom: 0.5rem; }
.at-nl-title em { color: rgba(255,255,255,0.5); font-style: italic; }
.at-nl-sub { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-bottom: 2.5rem; letter-spacing: 0.1em; }
.at-nl-form { display: flex; gap: 0; max-width: 460px; margin: 0 auto; }
.at-nl-input { flex: 1; padding: 0.95rem 1.4rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: white; font-family: var(--font-body) !important; font-size: 0.85rem; border-radius: var(--radius) 0 0 var(--radius); outline: none; }
.at-nl-input::placeholder { color: rgba(255,255,255,0.3); }
.at-nl-input:focus { border-color: rgba(255,255,255,0.3); }
.at-nl-btn { background: var(--mehroon); color: white; border: 1px solid var(--mehroon); padding: 0.95rem 2rem; font-family: var(--font-body) !important; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; border-radius: 0 var(--radius) var(--radius) 0; font-weight: 500; transition: background 0.2s; }
.at-nl-btn:hover { background: var(--mehroon-light); }
.at-nl-note { font-size: 0.72rem; color: rgba(255,255,255,0.25); margin-top: 1.2rem; }

/* ── Footer ─────────────────────────────────────────── */
.at-footer { background: var(--text); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 0 2rem; }
.at-footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 4rem; margin-bottom: 3.5rem; }
.at-footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; margin-bottom: 1.4rem; margin-top: 0.8rem; }
.at-footer-social { display: flex; gap: 0.8rem; }
.at-soc-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.75rem; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.at-soc-btn:hover { border-color: var(--mehroon); color: white; background: var(--mehroon); }
.at-footer-col h5 { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 1.2rem; font-weight: 600; }
.at-footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; padding: 0; }
.at-footer-col a { text-decoration: none; font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.at-footer-col a:hover { color: rgba(255,255,255,0.8); }
.at-footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.at-footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin: 0; }
.at-pay-badges { display: flex; gap: 0.5rem; }
.at-pay-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; padding: 0.3rem 0.6rem; font-size: 0.65rem; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }

/* ── Cart Drawer ────────────────────────────────────── */
.at-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 500; opacity: 0; visibility: hidden; transition: all 0.3s; }
.at-cart-overlay.open { opacity: 1; visibility: visible; }
.at-cart-drawer { position: fixed; right: 0; top: 0; bottom: 0; width: 420px; background: white; z-index: 501; transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; box-shadow: -8px 0 40px rgba(0,0,0,0.12); }
.at-cart-drawer.open { transform: translateX(0); }
.at-cart-head { padding: 1.5rem 1.8rem; border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.at-cart-head h3 { font-family: var(--font-display) !important; font-size: 1.2rem; font-weight: 500; }
.at-cart-close { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--text-muted); transition: color 0.2s; }
.at-cart-close:hover { color: var(--mehroon); }
.at-cart-body { flex: 1; overflow-y: auto; padding: 1.5rem 1.8rem; }
.at-cart-item { display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border-light); }
.at-cart-item-img { width: 80px; height: 80px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.at-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.at-cart-item-info { flex: 1; }
.at-cart-item-name { font-family: var(--font-display) !important; font-size: 0.95rem; margin-bottom: 0.25rem; }
.at-cart-item-sub { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.at-cart-item-row { display: flex; justify-content: space-between; align-items: center; }
.at-qty { display: flex; align-items: center; border: 1px solid var(--border); border-radius: var(--radius); }
.at-qty-btn { background: none; border: none; width: 28px; height: 28px; cursor: pointer; font-size: 0.9rem; color: var(--text-mid); display: flex; align-items: center; justify-content: center; transition: color 0.2s; }
.at-qty-btn:hover { color: var(--mehroon); }
.at-qty-num { font-size: 0.82rem; width: 28px; text-align: center; }
.at-cart-item-price { font-size: 0.9rem; font-weight: 500; }
.at-cart-remove { background: none; border: none; font-size: 0.7rem; color: var(--text-muted); cursor: pointer; margin-top: 0.5rem; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; display: block; }
.at-cart-remove:hover { color: var(--mehroon); }
.at-cart-foot { padding: 1.5rem 1.8rem; border-top: 1px solid var(--border-light); background: var(--off-white); }
.at-cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.at-cart-subtotal span { font-size: 0.85rem; color: var(--text-muted); }
.at-cart-subtotal strong { font-family: var(--font-display) !important; font-size: 1.1rem; }
.at-cart-free { font-size: 0.75rem; color: #2a9d5c; background: #edf7f1; padding: 0.5rem 0.8rem; border-radius: var(--radius); margin-bottom: 1.2rem; text-align: center; }
.at-cart-actions { display: flex; flex-direction: column; gap: 0.6rem; }

/* ── Page Hero ──────────────────────────────────────── */
.at-page-hero { background: var(--off-white); padding: 5rem 2rem; text-align: center; }
.at-page-hero h1 { font-family: var(--font-display) !important; font-size: clamp(2.4rem,4vw,3.5rem); font-weight: 400; }

/* ── Mobile Bottom Nav ──────────────────────────────── */
.at-mobile-bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; z-index: 300; background: white; border-top: 1px solid var(--border-light); display: none; grid-template-columns: repeat(5,1fr); padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom)); }
.at-mob-item { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; padding: 0.4rem 0; text-decoration: none; transition: color 0.2s; }
.at-mob-item.active, .at-mob-item:hover { color: var(--mehroon); }
.at-mob-icon { font-size: 1.1rem; }

/* ── Toast ──────────────────────────────────────────── */
.at-toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--text); color: white; padding: 0.8rem 1.6rem; border-radius: 100px; font-size: 0.8rem; z-index: 999; opacity: 0; transition: all 0.3s; pointer-events: none; white-space: nowrap; }
.at-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Shop Page Filter Sidebar ───────────────────────── */
.at-shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; }
.at-filter-sidebar h3 { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--text); margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--border-light); }
.at-filter-group { margin-bottom: 2rem; }
.at-filter-group label { display: flex; align-items: center; gap: 0.6rem; font-size: 0.83rem; color: var(--text-mid); cursor: pointer; padding: 0.3rem 0; }
.at-filter-group input[type=checkbox] { accent-color: var(--mehroon); width: 14px; height: 14px; }
.at-price-range { width: 100%; accent-color: var(--mehroon); }

/* ── Single Product Page ────────────────────────────── */
.woocommerce div.product .product_title { font-family: var(--font-display) !important; font-size: clamp(1.8rem,3vw,2.5rem) !important; font-weight: 400 !important; line-height: 1.2 !important; color: var(--text) !important; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--text) !important; font-size: 1.2rem !important; font-weight: 500 !important; }
.woocommerce div.product .woocommerce-product-rating .star-rating { color: var(--mehroon) !important; }
.woocommerce div.product form.cart .single_add_to_cart_button { background: var(--mehroon) !important; border-radius: var(--radius) !important; font-family: var(--font-body) !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; font-size: 0.82rem !important; padding: 1rem 2.5rem !important; transition: background 0.2s !important; }
.woocommerce div.product form.cart .single_add_to_cart_button:hover { background: var(--mehroon-light) !important; }
.woocommerce .product_meta { font-size: 0.82rem; color: var(--text-muted); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { border-color: var(--mehroon) !important; color: var(--mehroon) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { font-family: var(--font-body) !important; letter-spacing: 0.08em; }

/* ── About Page ─────────────────────────────────────── */
.at-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.at-about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.at-about-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Contact Form ───────────────────────────────────── */
.at-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.at-contact-card { background: var(--off-white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--border-light); margin-bottom: 1.2rem; }
.at-contact-card h3 { font-family: var(--font-display) !important; font-size: 1rem; font-weight: 500; margin-bottom: 0.4rem; }
.at-contact-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.at-form label { display: block; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--text-mid); margin-bottom: 0.5rem; }
.at-form input, .at-form textarea, .at-form select { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: var(--radius); font-family: var(--font-body) !important; font-size: 0.88rem; color: var(--text); background: white; outline: none; transition: border-color 0.2s; margin-bottom: 1.4rem; }
.at-form input:focus, .at-form textarea:focus, .at-form select:focus { border-color: var(--mehroon); }
.at-form textarea { resize: vertical; min-height: 130px; }
.at-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Animations ─────────────────────────────────────── */
@keyframes atFadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.at-hero-left > * { animation: atFadeUp 0.7s ease both; }
.at-hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.at-hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.at-hero-left > *:nth-child(3) { animation-delay: 0.32s; }
.at-hero-left > *:nth-child(4) { animation-delay: 0.44s; }
.at-hero-left > *:nth-child(5) { animation-delay: 0.56s; }

/* ── Admin bar offset ───────────────────────────────── */
.admin-bar .at-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .at-header { top: 46px; } }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .at-collections-grid { grid-template-columns: repeat(3,1fr); }
  .at-products-grid { grid-template-columns: repeat(3,1fr); }
  .at-footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 960px) {
  .at-nav { display: none !important; }
  .at-hamburger { display: flex !important; }
  .at-hero { grid-template-columns: 1fr; min-height: auto; }
  .at-hero-right { min-height: 360px; }
  .at-hero-left { padding: 3.5rem 2rem 2.5rem; }
  .at-feature-content { grid-template-columns: 1fr; gap: 2.5rem; }
  .at-why-grid { grid-template-columns: repeat(2,1fr); }
  .at-stl-grid { grid-template-columns: 1fr; }
  .at-reviews-grid { grid-template-columns: 1fr 1fr; }
  .at-insta-grid { grid-template-columns: repeat(3,1fr); }
  .at-collections-grid { grid-template-columns: repeat(2,1fr); }
  .at-products-grid { grid-template-columns: repeat(2,1fr); }
  .at-mobile-bottom-nav { display: grid; }
  body { padding-bottom: 60px; }
  .at-cart-drawer { width: 100%; }
  .at-footer-top { grid-template-columns: 1fr 1fr; }
  .at-shop-layout { grid-template-columns: 1fr; }
  .at-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .at-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .at-hero-stats { gap: 1.5rem; }
  .at-why-grid { grid-template-columns: 1fr; }
  .at-reviews-grid { grid-template-columns: 1fr; }
  .at-announce-bar { font-size: 0.62rem; gap: 1rem; }
  .at-section { padding: 4rem 0; }
  .at-hero-btns { flex-direction: column; }
  .at-footer-top { grid-template-columns: 1fr; }
  .at-nl-form { flex-direction: column; }
  .at-nl-input { border-right: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); margin-bottom: 0.5rem; }
  .at-nl-btn { border-radius: var(--radius); }
  .at-feat-img { display: none; }
  .at-collections-grid { grid-template-columns: 1fr 1fr; }
  .at-products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .at-form-row { grid-template-columns: 1fr; }
}
