/*
Theme Name: Drape Pro
Theme URI: https://theaurastyle.shop/
Author: Mayur Ingale
Description: Production-ready Aura Style fashion affiliate WordPress theme with dynamic outfit posts, ACF affiliate fields, reel embeds, and premium animated lookbook design.
Version: 2.5.8
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: drape-pro
*/

:root {
  --bg: #F5F0EA;
  --bg-dark: #0E0E0E;
  --text: #111111;
  --text-light: #F5F0EA;
  --muted: #8A8279;
  --accent: #C6975B;
  --accent-rose: #C47D7D;
  --accent-slate: #7D92A6;
  --card-bg: #FFFFFF;
  --border: #DDD5CA;
  --glass: rgba(255,255,255,0.55);
  --glass-border: rgba(255,255,255,0.25);
  --shadow-soft: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-lift: 0 16px 60px rgba(0,0,0,0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --content: 1400px;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
}
::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input { font-family: inherit; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245,240,234,0.7);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  height: 64px;
  background: rgba(245,240,234,0.94);
  box-shadow: 0 1px 30px rgba(0,0,0,0.05);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  display: inline-flex;
  align-items: center;
}
.logo img { max-height: 42px; width: auto; }
.logo::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.logo:hover::after { transform: scaleX(1); transform-origin: left; }
.nav { display: flex; align-items: center; gap: 40px; }
.nav .drape-menu { display: flex; gap: 40px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.3s;
}
.nav a:hover, .nav a.active { color: var(--text); }
.nav a.active::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.nav-sub {
  padding: 10px 28px;
  border-radius: 50px;
  background: var(--text);
  color: var(--text-light) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-sub::before { display: none !important; }
.nav-sub:hover { background: var(--accent) !important; color: #fff !important; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px 0; border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.ticker {
  margin-top: 76px;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}
.ticker-track { display: inline-flex; animation: marquee 30s linear infinite; }
.ticker-item {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0 48px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ticker-item .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero {
  position: relative;
  min-height: calc(100vh - 112px);
  display: flex;
  align-items: center;
  padding: 0 48px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; opacity: 0.12; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245,240,234,0.95) 40%, rgba(245,240,234,0.7) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 50px;
  background: rgba(198,151,91,0.1);
  border: 1px solid rgba(198,151,91,0.2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
  animation: fadeSlide 1s var(--ease) 0.2s both;
}
.hero-tag .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -2px;
  margin: 0 0 32px;
  animation: fadeSlide 1s var(--ease) 0.4s both;
}
.hero h1 .line2 { display: block; font-style: italic; font-weight: 700; color: var(--accent); margin-top: 4px; }
.hero h1 .stroke-text { -webkit-text-stroke: 1.5px var(--text); color: transparent; }
.hero-desc { font-size: 17px; color: var(--muted); max-width: 500px; line-height: 1.8; font-weight: 300; margin: 0 0 48px; animation: fadeSlide 1s var(--ease) 0.6s both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeSlide 1s var(--ease) 0.8s both; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: all 0.4s var(--ease);
}
.btn-fill { background: var(--text); color: var(--text-light); position: relative; overflow: hidden; }
.btn-fill::before { content: ''; position: absolute; inset: 0; background: var(--accent); transform: translateX(-101%); transition: transform 0.4s var(--ease); }
.btn-fill:hover::before { transform: translateX(0); }
.btn-fill span { position: relative; z-index: 1; }
.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.hero-stats { position: absolute; right: 48px; bottom: 80px; display: flex; gap: 48px; z-index: 2; animation: fadeSlide 1s var(--ease) 1s both; }
.stat { text-align: center; }
.stat-num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; line-height: 1; color: var(--text); }
.stat-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 2; animation: fadeSlide 1s var(--ease) 1.2s both; }
.scroll-hint span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 48px; background: var(--border); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 50%; background: var(--accent); animation: scrollDown 2s ease infinite; }
@keyframes scrollDown { 0% { top: -50%; } 100% { top: 100%; } }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.sec-head {
  padding: 100px 48px 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: var(--content);
  margin: 0 auto;
  gap: 32px;
  flex-wrap: wrap;
}
.sec-label, .section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::before, .section-label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
.sec-head h2, .archive-head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0;
}
.sec-head h2 em { font-style: italic; font-weight: 600; }
.sec-head p { color: var(--muted); font-size: 15px; max-width: 380px; margin: 12px 0 0; font-weight: 300; }
.sec-tabs { display: flex; gap: 6px; padding: 4px; border-radius: 50px; background: rgba(0,0,0,0.04); }
.sec-tab { padding: 10px 24px; border-radius: 50px; font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; background: transparent; border: 0; color: var(--muted); cursor: pointer; transition: all 0.3s; }
.sec-tab:hover { color: var(--text); }
.sec-tab.active { background: var(--text); color: var(--text-light); }

.outfit-container { max-width: var(--content); margin: 0 auto; padding: 0 48px 80px; }
.outfit-magazine { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.outfit-magazine .oc:nth-child(8n+1) { grid-column: span 5; }
.outfit-magazine .oc:nth-child(8n+2) { grid-column: span 4; }
.outfit-magazine .oc:nth-child(8n+3) { grid-column: span 3; }
.outfit-magazine .oc:nth-child(8n+4) { grid-column: span 3; }
.outfit-magazine .oc:nth-child(8n+5) { grid-column: span 5; }
.outfit-magazine .oc:nth-child(8n+6) { grid-column: span 4; }
.outfit-magazine .oc:nth-child(8n+7) { grid-column: span 4; }
.outfit-magazine .oc:nth-child(8n+8) { grid-column: span 4; }
.archive-grid .oc { grid-column: span 3; }
.oc {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.5s var(--ease);
  cursor: pointer;
  min-width: 0;
}
.oc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.oc-img { position: relative; width: 100%; aspect-ratio: 4/5; overflow: hidden; background: #e8ded2; }
.oc-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease), filter 0.7s var(--ease); filter: saturate(0.9); }
.oc:hover .oc-img img { transform: scale(1.06); filter: saturate(1.1); }
.oc-img::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50%; background: linear-gradient(transparent, rgba(0,0,0,0.4)); opacity: 0; transition: opacity 0.4s; pointer-events: none; }
.oc:hover .oc-img::after { opacity: 1; }
.oc-badge { position: absolute; top: 16px; left: 16px; padding: 6px 16px; border-radius: 50px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; backdrop-filter: blur(12px); z-index: 2; }
.badge-w { background: rgba(196,125,125,0.85); color: #fff; }
.badge-m { background: rgba(125,146,166,0.85); color: #fff; }
.badge-hot { background: rgba(198,151,91,0.9); color: #fff; }
.oc-save { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: var(--glass); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; z-index: 3; }
.oc-save:hover { background: #fff; transform: scale(1.1); }
.oc-save svg { width: 16px; height: 16px; }
.oc-quick { position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 2; opacity: 0; transform: translateY(12px); transition: all 0.4s var(--ease); }
.oc:hover .oc-quick { opacity: 1; transform: translateY(0); }
.oc-quick-btn { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 14px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text); transition: all 0.3s; }
.oc-quick-btn:hover { background: var(--accent); color: #fff; }
.oc-quick-btn svg { width: 14px; height: 14px; }
.oc-info { padding: 22px 24px 26px; }
.oc-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; line-height: 1.1; font-weight: 600; margin: 0 0 6px; }
.oc-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.oc-meta span { font-size: 12px; color: var(--muted); }
.oc-meta .price { font-weight: 700; color: var(--accent); }
.oc-meta .divider { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.oc-note { color: var(--muted); font-size: 14px; margin: 0 0 14px; }
.oc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.oc-tags span { padding: 4px 14px; border-radius: 50px; background: rgba(0,0,0,0.04); font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }
.empty-state { grid-column: 1 / -1; padding: 34px; border-radius: var(--radius); background: rgba(255,255,255,0.5); color: var(--muted); border: 1px dashed var(--border); }

.editorial { background: var(--bg-dark); padding: 80px 48px; position: relative; overflow: hidden; }
.editorial::before { content: 'STYLE'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Cormorant Garamond', serif; font-size: clamp(120px, 20vw, 300px); font-weight: 700; font-style: italic; -webkit-text-stroke: 1px rgba(255,255,255,0.04); color: transparent; white-space: nowrap; pointer-events: none; }
.editorial-inner { max-width: var(--content); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.editorial h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 300; color: var(--text-light); line-height: 1.15; margin: 0; }
.editorial h2 em { font-weight: 700; font-style: italic; color: var(--accent); }
.editorial p { color: rgba(255,255,255,0.5); font-size: 16px; font-weight: 300; line-height: 1.8; margin-top: 24px; max-width: 500px; }
.editorial-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ed-stat { padding: 32px; border-radius: var(--radius); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); backdrop-filter: blur(8px); }
.ed-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 300; color: var(--accent); line-height: 1; }
.ed-stat-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; font-weight: 500; }

.reels { padding-bottom: 100px; }
.reels-grid { max-width: var(--content); margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.reel { position: relative; aspect-ratio: 9/16; border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.5s var(--ease); background: #111; }
.reel:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-lift); }
.reel:nth-child(even) { margin-top: 40px; }
.reel-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.reel-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; filter: saturate(0.8); }
.reel-grad-1 { background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460); }
.reel-grad-2 { background: linear-gradient(135deg, #2d1b2e, #3d1c3e, #4a1942); }
.reel-grad-3 { background: linear-gradient(135deg, #1b2d1e, #1c3d28, #194a2e); }
.reel-grad-4 { background: linear-gradient(135deg, #2d2a1b, #3d351c, #4a3f19); }
.reel-grad-5 { background: linear-gradient(135deg, #1b252d, #1c303d, #193c4a); }
.reel-play { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.4s; z-index: 2; }
.reel:hover .reel-play { background: rgba(255,255,255,0.2); transform: scale(1.1); }
.reel-play svg { width: 20px; height: 20px; fill: #fff; margin-left: 3px; }
.reel-bottom { position: absolute; bottom: 0; left: 0; right: 0; padding: 60px 16px 18px; background: linear-gradient(transparent, rgba(0,0,0,0.6)); color: #fff; z-index: 2; }
.reel-title { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.reel-views { font-size: 10px; opacity: 0.72; display: flex; align-items: center; gap: 6px; }
.reel-views svg { width: 12px; height: 12px; fill: #fff; opacity: 0.6; }
.reel-ig { position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 50px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); display: flex; align-items: center; gap: 6px; z-index: 2; }
.reel-ig svg { width: 14px; height: 14px; fill: #fff; }
.reel-ig span { font-size: 10px; font-weight: 700; color: #fff; letter-spacing: 0.5px; }

/* Single outfit article */
.single-outfit-main { max-width: 1220px; margin: 0 auto; padding: 80px 48px 90px; }
.outfit-blog-shell { background: rgba(255,255,255,0.38); border: 1px solid rgba(0,0,0,0.045); border-radius: 34px; box-shadow: var(--shadow-soft); overflow: hidden; }
.blog-hero { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; padding: 56px; align-items: center; }
.blog-hero-img { position: relative; border-radius: 26px; overflow: hidden; background: #e8ded2; box-shadow: var(--shadow-lift); }
.blog-hero-img img { width: 100%; aspect-ratio: 4/5; display: block; object-fit: cover; transition: transform 0.75s var(--ease), filter 0.75s var(--ease); }
.blog-hero-img:hover img { transform: scale(1.055); filter: saturate(1.08); }
.blog-kicker { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.blog-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 6vw, 76px); font-weight: 400; line-height: 1.02; letter-spacing: -1px; margin: 0 0 18px; }
.blog-intro { color: var(--muted); font-size: 17px; line-height: 1.85; margin: 0 0 24px; max-width: 640px; }
.affiliate-note, .disclosure { padding: 14px 18px; border-radius: 16px; background: rgba(198,151,91,0.1); border: 1px solid rgba(198,151,91,0.18); font-size: 13px; color: #6f5535; margin-bottom: 24px; line-height: 1.7; }
.blog-ctas, .affiliate-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.affiliate-btn, .affiliate-buttons a, .reel-open-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 999px; background: var(--text); color: var(--text-light); font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; transition: all 0.3s; border: 0; }
.affiliate-btn.secondary { background: transparent; color: var(--text); border: 1px solid var(--border); }
.affiliate-btn:hover, .affiliate-buttons a:hover, .reel-open-btn:hover { transform: translateY(-3px); background: var(--accent); color: #fff; box-shadow: 0 12px 34px rgba(198,151,91,0.24); }
.blog-body { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 44px; padding: 0 56px 60px; }
.blog-copy h2, .article-section h2 { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 600; line-height: 1.1; margin: 32px 0 12px; }
.blog-copy p, .blog-copy li, .article-copy p, .article-copy li { color: #393531; font-size: 16px; line-height: 1.85; }
.blog-copy p, .article-copy p { margin: 0 0 18px; }
.blog-copy ul, .article-copy ul { padding-left: 22px; margin: 12px 0 22px; }
.shop-card, .reel-card, .details-card { background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 24px; padding: 24px; box-shadow: var(--shadow-soft); margin-bottom: 18px; }
.shop-card h3, .reel-card h3, .details-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 27px; margin: 0 0 12px; }
.shop-list { display: grid; gap: 10px; }
.shop-list a { display: flex; justify-content: space-between; gap: 16px; padding: 14px 16px; border-radius: 14px; background: rgba(0,0,0,0.035); color: var(--text); font-size: 14px; transition: all 0.25s; }
.shop-list a:hover { background: rgba(198,151,91,0.14); color: var(--accent); transform: translateX(4px); }
.ig-embed-wrap, .reel-box { border-radius: 20px; overflow: hidden; background: linear-gradient(135deg,#2d1b2e,#4a1942); color: #fff; padding: 18px; }
.ig-embed-wrap blockquote, .ig-embed-wrap iframe, .reel-box blockquote, .reel-box iframe { width: 100% !important; min-width: 0 !important; max-width: 100% !important; margin: 0 auto !important; }
.ig-placeholder { min-height: 360px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.ig-placeholder strong { display: block; font-size: 18px; margin-bottom: 8px; }
.ig-placeholder span { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.6; }
.similar-section { max-width: var(--content); margin: 0 auto; padding: 0 48px 90px; }

.archive-head { max-width: var(--content); margin: 0 auto; padding: 90px 48px 40px; }
.archive-grid { max-width: var(--content); margin: 0 auto; padding: 0 48px 90px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.page-wrap { max-width: 920px; margin: 0 auto; padding: 80px 48px; }
.page-wrap h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5vw, 70px); font-weight: 400; }
.page-content { font-size: 17px; color: #393531; }

.newsletter { max-width: var(--content); margin: 0 auto; padding: 0 48px 100px; }
.nl-card { padding: 80px 64px; border-radius: 32px; background: var(--bg-dark); position: relative; overflow: hidden; text-align: center; }
.nl-card::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(198,151,91,0.08) 120deg, transparent 240deg); animation: nlSpin 12s linear infinite; }
@keyframes nlSpin { 100% { transform: rotate(360deg); } }
.nl-content { position: relative; z-index: 2; }
.nl-card h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--text-light); margin: 0 0 12px; line-height: 1.15; }
.nl-card h2 em { font-weight: 700; font-style: italic; color: var(--accent); }
.nl-card p { color: rgba(255,255,255,0.45); font-size: 15px; margin: 0 auto 40px; max-width: 420px; }
.nl-form { display: flex; gap: 12px; max-width: 500px; margin: 0 auto; }
.nl-form input { flex: 1; padding: 16px 24px; border-radius: 50px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 14px; outline: none; transition: all 0.3s; }
.nl-form input::placeholder { color: rgba(255,255,255,0.3); }
.nl-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.nl-form button { padding: 16px 36px; border-radius: 50px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border: 0; cursor: pointer; transition: all 0.3s; white-space: nowrap; }
.nl-form button:hover { background: #d4a766; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(198,151,91,0.3); }

.footer { background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.04); }
.footer-inner { max-width: var(--content); margin: 0 auto; padding: 72px 48px 36px; display: grid; grid-template-columns: 2.5fr 1fr 1fr 1fr; gap: 56px; }
.f-brand p { color: rgba(255,255,255,0.35); font-size: 14px; line-height: 1.8; max-width: 320px; margin-top: 20px; }
.f-brand .logo { color: var(--text-light); display: inline-block; }
.footer h4 { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin: 0 0 24px; }
.footer a { display: block; color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 400; margin-bottom: 14px; transition: all 0.3s; }
.footer a:hover { color: var(--accent); transform: translateX(4px); }
.f-bottom { max-width: var(--content); margin: 0 auto; padding: 28px 48px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.2); }

.rv { opacity: 0; transform: translateY(36px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.rv.vis { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
  .rv { opacity: 1 !important; transform: none !important; }
  .cursor-dot { display: none; }
}

@media (max-width: 1024px) {
  .outfit-magazine .oc:nth-child(n), .archive-grid .oc { grid-column: span 6; }
  .editorial-inner, .blog-hero, .blog-body { grid-template-columns: 1fr; }
  .reels-grid { grid-template-columns: repeat(3, 1fr); }
  .reel:nth-child(even) { margin-top: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
}
@media (max-width: 768px) {
  .header { padding: 0 20px; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--bg); padding: 40px 24px; gap: 24px; z-index: 999; align-items: flex-start; }
  .nav.open .drape-menu { flex-direction: column; align-items: flex-start; gap: 24px; }
  .nav-toggle { display: block; }
  .hero { padding: 0 24px; min-height: 90vh; }
  .hero h1 { font-size: clamp(48px, 16vw, 78px); }
  .sec-head { padding: 72px 24px 40px; flex-direction: column; align-items: flex-start; }
  .outfit-container, .reels-grid, .newsletter, .similar-section, .archive-grid { padding-left: 24px; padding-right: 24px; }
  .outfit-magazine { gap: 16px; }
  .outfit-magazine .oc:nth-child(n), .archive-grid .oc { grid-column: span 12; }
  .editorial { padding: 60px 24px; }
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .single-outfit-main { padding: 48px 18px 70px; }
  .blog-hero, .blog-body { padding: 28px; gap: 26px; }
  .blog-ctas, .affiliate-buttons { flex-direction: column; }
  .affiliate-btn, .affiliate-buttons a { width: 100%; }
  .nl-card { padding: 48px 28px; border-radius: 24px; }
  .nl-form { flex-direction: column; }
  .footer-inner { padding: 48px 24px; grid-template-columns: 1fr; gap: 36px; }
  .f-bottom { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
  .cursor-dot { display: none; }
}


/* image robustness fix */
.oc-img img { display:block; width:100%; height:100%; object-fit:cover; background:#efe7dc; }
.oc-info { min-height: 168px; }
.oc-note { color: var(--muted); font-size: 14px; line-height: 1.7; margin: 0 0 14px; }
.empty-state { grid-column: 1 / -1; padding: 28px; border-radius: 24px; background: rgba(0,0,0,0.03); color: var(--muted); }

/* testimonials */
.testimonials { max-width: var(--content); margin: 0 auto; padding: 0 48px 100px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 24px; padding: 28px; box-shadow: var(--shadow-soft); }
.testimonial-card .stars { color: var(--accent); letter-spacing: 4px; margin-bottom: 14px; font-size: 14px; }
.testimonial-card p { color: #393531; font-size: 15px; line-height: 1.85; margin-bottom: 18px; }
.testimonial-author strong { display:block; font-size: 15px; }
.testimonial-author span { color: var(--muted); font-size: 13px; }

/* follow section */
.follow-section { max-width: var(--content); margin: 0 auto; padding: 0 48px 100px; }
.follow-head { padding-left: 0; padding-right: 0; }
.follow-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.follow-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 28px; padding: 30px; box-shadow: var(--shadow-soft); }
.follow-top { display:flex; gap:16px; align-items:flex-start; margin-bottom:20px; }
.follow-avatar { width:56px; height:56px; border-radius:50%; background: rgba(196,125,125,0.15); color:#b05f5f; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:22px; flex-shrink:0; }
.follow-avatar-men { background: rgba(125,146,166,0.15); color:#587086; }
.follow-top h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; margin: 0 0 6px; }
.follow-top p { color: var(--muted); font-size: 15px; line-height: 1.75; margin:0; }
.follow-list { list-style: none; padding:0; margin:0 0 24px; display:grid; gap: 12px; }
.follow-list li { padding: 12px 14px; border-radius: 14px; background: rgba(0,0,0,0.035); font-size: 14px; color:#393531; }
.follow-btn { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:14px 22px; border-radius:999px; background:#111; color:#fff; font-size:11px; font-weight:800; letter-spacing:1.7px; text-transform:uppercase; }
.follow-btn:hover { background: var(--accent); color:#fff; transform: translateY(-3px); }

@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .follow-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .testimonials, .follow-section { padding-left:24px; padding-right:24px; padding-bottom:60px; }
}


/* Instagram native embed support v2.2 */
.reels-grid-embed {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}
.reel-embed-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.reel-embed-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
}
.reel-embed-frame {
  aspect-ratio: 9 / 16;
  background: linear-gradient(135deg,#2d1b2e,#4a1942);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-embed-frame .ig-embed-native,
.reel-embed-frame blockquote,
.reel-embed-frame iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}
.reel-embed-frame blockquote {
  transform-origin: top center;
}
.reel-card-meta {
  padding: 18px;
}
.reel-card-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin: 0 0 10px;
}
.reel-card-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ig-placeholder {
  width: 100%;
  height: 100%;
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.ig-placeholder strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 8px;
}
.ig-placeholder span {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.7;
}
.reel-box-native {
  max-width: 560px;
}
.ig-embed-native {
  width: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}
.ig-embed-native blockquote,
.ig-embed-native iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}
.ig-preview-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg,#2d1b2e,#4a1942);
  color: #fff;
}
.ig-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.95);
}
.ig-preview-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.65));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 24px;
}
.ig-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  font-size: 22px;
}
.ig-copy {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .reels-grid-embed { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .reels-grid-embed { grid-template-columns: 1fr; }
}


/* v2.3 Premium TheAuraStyle header refresh */
.header {
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  height: 68px;
  padding: 0 18px 0 24px;
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.78);
  border: 1px solid rgba(17,17,17,0.08);
  box-shadow: 0 18px 55px rgba(17,17,17,0.10);
  backdrop-filter: blur(26px) saturate(1.35);
}
.admin-bar .header { top: 46px; }
.header.scrolled {
  height: 62px;
  background: rgba(255, 251, 246, 0.92);
  box-shadow: 0 18px 60px rgba(17,17,17,0.14);
}
.aura-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  letter-spacing: 0;
  text-transform: none;
  min-width: 170px;
}
.aura-logo::after { display: none; }
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.8px;
}
.logo-sub {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--accent);
}
.nav {
  gap: 10px;
  padding-left: 10px;
}
.nav a,
.nav .drape-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(17,17,17,0.58);
}
.nav a:hover,
.nav .drape-menu > li > a:hover {
  background: rgba(198,151,91,0.12);
  color: #111;
}
.nav a.active::before { display: none; }
.nav-sub {
  min-height: 46px !important;
  padding: 0 24px !important;
  background: #111 !important;
  color: #fff !important;
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}
.ticker { margin-top: 0; padding-top: 96px; }
.home .ticker, .single-outfit .ticker, .post-type-archive-outfit .ticker { padding-top: 96px; }
body:not(.home) .ticker { padding-top: 96px; }

/* v2.3 single outfit Instagram embed fix */
.reel-card-native {
  overflow: hidden;
}
.ig-single-native {
  aspect-ratio: auto;
  min-height: 420px;
  background: #fff;
  padding: 0;
  border-radius: 22px;
  display: block;
}
.ig-single-native .ig-embed-native {
  width: 100%;
  min-height: 420px;
  display: block;
}
.ig-single-native blockquote.instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  background: #fff !important;
}
.ig-single-native iframe {
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 auto !important;
  display: block !important;
}
.reel-card-native .ig-preview-card {
  min-height: 420px;
}
.reel-open-btn {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

@media (max-width: 782px) {
  .admin-bar .header { top: 60px; }
}
@media (max-width: 768px) {
  .header {
    top: 10px;
    width: calc(100% - 20px);
    height: 62px;
    padding: 0 14px 0 18px;
  }
  .logo-main { font-size: 25px; }
  .logo-sub { font-size: 9px; letter-spacing: 2px; }
  .nav.open {
    top: 82px;
    left: 10px;
    right: 10px;
    bottom: auto;
    border-radius: 24px;
    background: rgba(255,251,246,.96);
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    padding: 20px;
  }
  .nav.open a {
    width: 100%;
    justify-content: center;
  }
  .ticker, .home .ticker, .single-outfit .ticker, .post-type-archive-outfit .ticker, body:not(.home) .ticker {
    padding-top: 82px;
  }
  .ig-single-native { min-height: 360px; }
}


/* v2.4 9:16 vertical post image system + Aura Style logo */
.drape-wordmark,
.logo.drape-wordmark {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text);
  min-width: auto;
  display: inline-flex;
  align-items: center;
}
.drape-wordmark::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.drape-wordmark:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* All outfit cards now use reel/post-friendly 9:16 proportion */
.oc-img,
.outfit-img,
.reel-embed-frame,
.ig-preview-card {
  aspect-ratio: 9 / 16 !important;
}
.oc-img img,
.outfit-img img,
.ig-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Single outfit image also follows 9:16 because your generated posts are mostly reels */
.blog-hero-img img,
.single-image-wrap img,
.single-hero img {
  aspect-ratio: 9 / 16 !important;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Make taller 9:16 cards look premium instead of oversized */
.outfit-magazine {
  align-items: start;
}
.oc {
  height: auto;
}
.oc-info {
  min-height: 180px;
}

/* For native Instagram embed card alignment */
.ig-single-native,
.ig-single-native .ig-embed-native,
.reel-card-native .ig-preview-card {
  min-height: 560px;
}

@media (max-width: 768px) {
  .drape-wordmark,
  .logo.drape-wordmark {
    font-size: 22px;
    letter-spacing: 6px;
  }

  .ig-single-native,
  .ig-single-native .ig-embed-native,
  .reel-card-native .ig-preview-card {
    min-height: 480px;
  }
}


/* v2.4.1 force reel embedded sections to 9:16 */
.reel-box,
.reel-card,
.reel-card-native {
  width: 100%;
}

.reel-box-native,
.reel-card-native .ig-embed-wrap,
.ig-single-native,
.ig-single-native .ig-embed-native,
.reel-embed-frame {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16 !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.ig-single-native blockquote.instagram-media,
.ig-single-native iframe,
.reel-embed-frame blockquote.instagram-media,
.reel-embed-frame iframe,
.ig-embed-native blockquote.instagram-media,
.ig-embed-native iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 100% !important;
  min-height: 100% !important;
  margin: 0 auto !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}

.ig-embed-native,
.ig-embed-native > div,
.ig-embed-wrap {
  width: 100%;
  height: 100%;
}

.reel-open-btn {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .reel-box-native,
  .reel-card-native .ig-embed-wrap,
  .ig-single-native,
  .ig-single-native .ig-embed-native,
  .reel-embed-frame,
  .reel-open-btn {
    max-width: 100%;
  }
}


/* v2.4.5 Aura Style naming update */
.aura-style-wordmark,
.logo.aura-style-wordmark,
.aura-style-footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.aura-style-wordmark::after,
.aura-style-footer-logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}

.aura-style-wordmark:hover::after,
.aura-style-footer-logo:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.similar-section .outfit-magazine {
  grid-template-columns: repeat(10, 1fr);
}

.similar-section .outfit-magazine .oc:nth-child(1),
.similar-section .outfit-magazine .oc:nth-child(2),
.similar-section .outfit-magazine .oc:nth-child(3),
.similar-section .outfit-magazine .oc:nth-child(4),
.similar-section .outfit-magazine .oc:nth-child(5) {
  grid-column: span 2;
}

@media (max-width: 1180px) {
  .similar-section .outfit-magazine .oc:nth-child(n) {
    grid-column: span 5;
  }
}

@media (max-width: 768px) {
  .aura-style-wordmark,
  .logo.aura-style-wordmark,
  .aura-style-footer-logo {
    font-size: 19px;
    letter-spacing: 3px;
  }

  .similar-section .outfit-magazine {
    grid-template-columns: 1fr;
  }

  .similar-section .outfit-magazine .oc:nth-child(n) {
    grid-column: auto;
  }
}


/* v2.4.7 medium outfit image sizing + top outfit links */

/* Homepage / archive outfit cards: uniform medium cards instead of oversized magazine blocks */
.outfit-container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.outfit-magazine {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 22px !important;
}

.outfit-magazine .oc,
.outfit-magazine .oc:nth-child(n),
.archive-grid .oc,
.archive-grid .oc:nth-child(n) {
  grid-column: auto !important;
}

.oc-img {
  aspect-ratio: 9 / 14 !important;
  max-height: 480px;
}

.oc-info {
  min-height: 150px !important;
  padding: 18px !important;
}

.oc-info h3 {
  font-size: 22px !important;
}

.oc-note {
  font-size: 13px !important;
}

/* Single outfit hero image: medium, not oversized */
.blog-hero {
  grid-template-columns: 420px minmax(0, 1fr) !important;
  gap: 44px !important;
  align-items: center !important;
}

.blog-hero-img {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.blog-hero-img img {
  aspect-ratio: 9 / 14 !important;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: cover;
}

/* Top affiliate/outfit links before the blog starts */
.top-outfit-links {
  margin: 0 56px 36px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.top-outfit-links-copy span {
  display: block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.top-outfit-links-copy strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.12;
  color: var(--text);
}

.top-outfit-links-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.top-outfit-links-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--text);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.top-outfit-links-actions a:hover {
  transform: translateY(-3px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 34px rgba(198,151,91,0.24);
}

/* Similar outfits stay compact/medium */
.similar-section {
  max-width: 1180px !important;
}

.similar-section .outfit-magazine {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.similar-section .oc-img {
  max-height: 390px;
}

.similar-section .oc-info h3 {
  font-size: 18px !important;
}

.similar-section .oc-info {
  min-height: 135px !important;
  padding: 15px !important;
}

@media (max-width: 1100px) {
  .outfit-magazine {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .blog-hero {
    grid-template-columns: 360px minmax(0, 1fr) !important;
  }

  .blog-hero-img {
    max-width: 360px;
  }

  .similar-section .outfit-magazine {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 860px) {
  .outfit-magazine,
  .similar-section .outfit-magazine {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .blog-hero {
    grid-template-columns: 1fr !important;
  }

  .blog-hero-img {
    max-width: 380px;
  }

  .top-outfit-links {
    margin: 0 24px 30px;
    grid-template-columns: 1fr;
  }

  .top-outfit-links-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .outfit-magazine,
  .similar-section .outfit-magazine {
    grid-template-columns: 1fr !important;
  }

  .oc-img {
    max-height: 520px;
  }

  .blog-hero-img {
    max-width: 100%;
  }

  .top-outfit-links-actions a {
    width: 100%;
  }
}


/* v2.4.8: Shop Main Look scrolls to Shop the Outfit + Pinterest outfit collection */
html {
  scroll-padding-top: 96px;
}

#shop-the-outfit {
  scroll-margin-top: 105px;
}

/* Make the hero CTA clearly behave like an internal jump */
.blog-ctas .affiliate-btn[href="#shop-the-outfit"] {
  cursor: pointer;
}

/* Pinterest-style single outfit preview section */
.pinterest-collection {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px 90px;
}

.pinterest-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 46px;
  align-items: center;
  padding: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(198,151,91,0.13), transparent 36%),
    rgba(255,255,255,0.58);
  border: 1px solid rgba(0,0,0,0.055);
  box-shadow: var(--shadow-soft);
}

.pinterest-copy h2 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.04;
}

.pinterest-copy h2 em {
  color: var(--accent);
  font-style: italic;
}

.pinterest-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.pin-look {
  width: 100%;
}

.pin-image {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 26px;
  background: #e8ded2;
  box-shadow: var(--shadow-lift);
}

.pin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.pin-image:hover img {
  transform: scale(1.045);
  filter: saturate(1.08);
}

.pin-look-info {
  padding-top: 18px;
  text-align: center;
}

.pin-look-info h3 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.12;
}

.pin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--text);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
}

.pin-button:hover {
  transform: translateY(-3px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 34px rgba(198,151,91,0.24);
}

@media (max-width: 900px) {
  .pinterest-card {
    grid-template-columns: 1fr;
  }

  .pin-look {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .pinterest-collection {
    padding: 0 24px 64px;
  }

  .pinterest-card {
    padding: 24px;
  }

  .pin-look {
    max-width: 100%;
  }

  .pin-button {
    width: 100%;
  }
}


/* v2.4.9 real Pinterest Collection section */
.pinterest-collection-board {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 48px 90px;
}

.pin-collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.pin-item-card {
  min-width: 0;
}

.pin-item-image {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 26px;
  background: #e8ded2;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0,0,0,0.045);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.pin-item-image:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lift);
}

.pin-item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.65s var(--ease), filter 0.65s var(--ease);
}

.pin-item-image:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.pin-item-overlay {
  position: absolute;
  inset: auto 14px 14px;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.pin-item-overlay::before {
  content: '';
  position: absolute;
  inset: -90px -14px -14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.58));
  z-index: -1;
  opacity: 0.92;
}

.pin-get-look {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  backdrop-filter: blur(14px);
  transition: all 0.3s var(--ease);
}

.pin-get-look:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.pin-disabled {
  background: rgba(255,255,255,0.78);
  color: rgba(17,17,17,0.45);
  pointer-events: none;
}

@media (max-width: 1100px) {
  .pin-collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .pinterest-collection-board {
    padding: 0 24px 70px;
  }

  .pin-collection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .pin-collection-grid {
    grid-template-columns: 1fr;
  }
}


/* v2.5.0 collection detail pages + homepage caps */
.section-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--text);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.section-view-all:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(198,151,91,0.24);
}
.collection-page-main {
  max-width: var(--content);
  margin: 0 auto;
  padding: 90px 48px 100px;
}
.collection-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: end;
  padding: 58px;
  margin-bottom: 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(198,151,91,0.14), transparent 34%),
    rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.055);
  box-shadow: var(--shadow-soft);
}
.collection-hero h1 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -1px;
}
.collection-hero p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.collection-search {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.collection-search input {
  flex: 1 1 220px;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.82);
  padding: 0 18px;
  color: var(--text);
  outline: none;
}
.collection-search input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(198,151,91,0.10);
}
.collection-search button,
.collection-clear {
  min-height: 50px;
  border-radius: 999px;
  border: 0;
  background: var(--text);
  color: var(--text-light);
  padding: 0 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  cursor: pointer;
}
.collection-clear {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.collection-outfit-grid,
.collection-pin-grid {
  margin-bottom: 44px;
}
.collection-pagination {
  margin: 36px 0 70px;
  display: flex;
  justify-content: center;
}
.collection-pagination ul {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.collection-pagination a,
.collection-pagination span {
  min-width: 44px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}
.collection-pagination .current {
  background: var(--text);
  color: var(--text-light);
}
.collection-engage {
  margin-top: 74px;
}
.compact-pin-grid,
.compact-related-grid,
.similar-section .compact-related-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 18px !important;
}
.compact-related-grid .oc,
.compact-related-grid .oc:nth-child(n),
.similar-section .compact-related-grid .oc:nth-child(n) {
  grid-column: auto !important;
}
.compact-related-grid .oc-img {
  max-height: 390px;
}
.compact-related-grid .oc-info {
  min-height: 135px !important;
  padding: 15px !important;
}
.compact-related-grid .oc-info h3 {
  font-size: 18px !important;
}
@media (max-width: 1100px) {
  .collection-hero {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .collection-search {
    justify-content: flex-start;
  }
  .compact-pin-grid,
  .compact-related-grid,
  .similar-section .compact-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .collection-page-main {
    padding: 70px 24px 80px;
  }
  .collection-hero {
    padding: 28px;
    border-radius: 26px;
  }
  .collection-search input,
  .collection-search button,
  .collection-clear {
    width: 100%;
  }
  .compact-pin-grid,
  .compact-related-grid,
  .similar-section .compact-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 480px) {
  .compact-pin-grid,
  .compact-related-grid,
  .similar-section .compact-related-grid {
    grid-template-columns: 1fr !important;
  }
}


/* v2.5.2 stable homepage layout fix */
.home .editorial {
  margin-top: 20px;
  margin-bottom: 90px;
}


/* v2.5.3 Outfit Group Number search */
.oc-group {
  position: absolute;
  top: 56px;
  left: 16px;
  z-index: 2;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.88);
  color: var(--text);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.32);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.collection-search-note {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(198,151,91,0.12);
  color: #6f5535;
  border: 1px solid rgba(198,151,91,0.22);
  font-size: 13px;
  line-height: 1.5;
}

.collection-search-note strong {
  color: var(--text);
}

@media (max-width: 560px) {
  .oc-group {
    top: 52px;
    left: 12px;
    font-size: 9px;
    padding: 5px 10px;
  }

  .collection-search-note {
    border-radius: 16px;
  }
}


/* v2.5.4 gender-scoped outfit group badge */
.oc-group {
  max-width: calc(100% - 32px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* v2.5.5 simplified outfit detail page: outfit + links only */
.single-outfit-simple .blog-hero {
  padding-bottom: 38px;
}

.single-outfit-simple .top-outfit-links {
  margin-bottom: 42px;
}

.outfit-simple-body {
  padding: 0 56px 58px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.outfit-simple-card {
  height: 100%;
  margin: 0;
}

.outfit-simple-body .details-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
}

.outfit-simple-body .details-card h3,
.outfit-simple-body .reel-card h3 {
  margin-top: 0;
}

.outfit-simple-body .reel-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .outfit-simple-body {
    grid-template-columns: 1fr;
    padding: 0 28px 42px;
  }
}

@media (max-width: 560px) {
  .single-outfit-simple .blog-hero {
    padding-bottom: 26px;
  }

  .outfit-simple-body {
    padding: 0 20px 34px;
  }
}


/* v2.5.6 price removed from frontend */
.oc-meta .price,
.oc-meta .price + .divider {
  display: none !important;
}


/* v2.5.8 move group label below outfit image */
.oc-img .oc-group {
  display: none !important;
}

.oc-group-inline {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(198,151,91,0.12);
  color: #6f5535;
  border: 1px solid rgba(198,151,91,0.22);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}

.oc-info .oc-group {
  position: static !important;
  display: inline-flex !important;
  margin: 0 0 10px !important;
}

@media (max-width: 560px) {
  .oc-group-inline {
    font-size: 9px;
    padding: 6px 10px;
  }
}
