/* ═══════════════════════════════════════════════════════
   DROP THAT BAG — Blog Article CSS
   Design reference: 404 page + blog homepage
   Applies to: blog/handbag-influencer-guide.html
               blog/how-to-start-your-own-handbag-brand-oem.html
               All future blog article pages
   SEO: zero HTML changes — CSS only
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&display=swap');

/* ── DESIGN TOKENS (exact 404 page) ── */
:root {
  --bg:      #1a0809;
  --coral:   #f04555;
  --gold:    #e8c97a;
  --gold-d:  rgba(232,201,122,0.25);
  --white:   #ffffff;
  --muted:   rgba(255,255,255,0.55);
  --border:  rgba(255,255,255,0.08);
  --text:    rgba(255,255,255,0.85);
  --max:     1200px;
  --post-w:  720px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── BODY ── */
html, body {
  min-height: 100%;
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg);
  color: var(--white);
}
body {
  background-image:
    radial-gradient(ellipse 65% 75% at 90% 85%, rgba(90,15,20,0.85) 0%, transparent 60%),
    radial-gradient(ellipse 45% 50% at 5% 95%, rgba(60,8,12,0.6) 0%, transparent 55%);
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ════════════════════════
   HEADER / NAV
   ════════════════════════ */
.topnav {
  position: relative;
  background: transparent;
  border-bottom: none;
}
.topnav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,201,122,0.28), transparent);
}
.topnav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 32px;
  width: 100%;
}
.brand {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 12px;
  line-height: 1;
}
.brand__title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--coral);
  text-transform: none;
}
.brand__blog {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.topnav nav { display: none; }

/* ════════════════════════
   ARTICLE LAYOUT
   ════════════════════════ */
.post-wrap {
  background: transparent;
  padding: 56px 0 0;
  flex: 1;
}
.post-inner {
  width: min(var(--post-w), calc(100% - 48px));
  margin: 0 auto;
}

/* ════════════════════════
   BREADCRUMB
   ════════════════════════ */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: var(--coral);
  transition: opacity 0.2s;
}
.breadcrumb a:hover { opacity: 0.8; }
.breadcrumb span { color: var(--border); }

/* ════════════════════════
   POST HEADER
   ════════════════════════ */
.post-tag {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.post-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 22px;
}
.post-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.post-meta a { color: var(--muted); }

/* ════════════════════════
   SHARE BAR
   ════════════════════════ */
.share-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 36px;
}
.share-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  border-radius: 999px;
  transition: opacity 0.2s, transform 0.15s;
}
.share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.share-btn svg { width: 13px; height: 13px; fill: currentColor; flex-shrink: 0; }
.share-btn.facebook  { background: #1877F2; }
.share-btn.twitter   { background: #000000; }
.share-btn.whatsapp  { background: #25D366; }
.share-btn.pinterest { background: #E60023; }

/* ════════════════════════
   FEATURED IMAGE
   ════════════════════════ */
.post-img {
  width: 100%;
  border-radius: 16px;
  margin: 0 0 44px;
  object-fit: cover;
  max-height: 480px;
  border: 1px solid var(--border);
}
.post-img-caption {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  font-style: italic;
  margin: -36px 0 44px;
  font-weight: 600;
}

/* ════════════════════════
   POST BODY TYPOGRAPHY
   ════════════════════════ */
.post-body { font-family: 'Nunito', sans-serif; color: var(--text); }
.post-body p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 1.5rem;
  font-weight: 400;
}
.post-body h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin: 2.8rem 0 0.9rem;
  line-height: 1.2;
}
.post-body h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin: 2rem 0 0.6rem;
}
.post-body h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.5rem 0 0.5rem;
}
.post-body a {
  color: var(--coral);
  border-bottom: 1px solid rgba(240,69,85,0.3);
  transition: border-color 0.2s, opacity 0.2s;
  font-weight: 600;
}
.post-body a:hover { border-color: var(--coral); opacity: 0.85; }
.post-body strong { font-weight: 800; color: var(--white); }
.post-body em { font-style: italic; color: var(--gold); }
.post-body ul,
.post-body ol {
  margin: 0 0 1.5rem 1.4rem;
  padding: 0;
}
.post-body ul li,
.post-body ol li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.post-body hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

/* Pull quote */
.pull-quote,
.post-body blockquote {
  border-left: 3px solid var(--coral);
  background: rgba(240,69,85,0.06);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin: 1.8rem 0;
  font-style: italic;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* ════════════════════════
   TABLE OF CONTENTS
   ════════════════════════ */
div.toc {
  background: rgba(232,201,122,0.06);
  border: 1px solid var(--gold-d);
  border-radius: 14px;
  padding: 22px 26px;
  margin: 0 0 2.5rem;
}
div.toc h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
div.toc ol {
  margin: 0;
  padding-left: 1.2rem;
}
div.toc ol li {
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 6px;
  line-height: 1.5;
}
div.toc ol li a {
  color: rgba(255,255,255,0.65);
  border: none;
  transition: color 0.2s;
}
div.toc ol li a:hover { color: var(--white); }

/* ════════════════════════
   CTA BLOCK
   ════════════════════════ */
.blog-footer-cta {
  padding: 72px 24px;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  text-align: center;
}
.blog-footer-box {
  max-width: 560px;
  margin: 0 auto;
  background: transparent;
  border: none;
  padding: 0;
  color: var(--white);
}
.blog-footer-box h3 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0 0 14px;
  line-height: 1.1;
}
.blog-footer-box h3 em { color: var(--gold); font-style: normal; }
.blog-footer-box p {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.72;
  margin: 0 0 32px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: #1A0608;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cta-button:hover { opacity: 0.88; }

/* ════════════════════════
   FOOTER — exact 404
   ════════════════════════ */
.footer,
footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 28px 32px;
  margin-top: auto;
}
.footer-container,
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: none;
  padding: 0;
}
.footer-left,
.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
}
.footer-left a,
.foot-links a,
.foot-links li a {
  color: var(--muted);
  font-family: 'Nunito', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-left a:hover,
.foot-links a:hover { color: var(--white); }
.footer-right,
.foot-social {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-right .follow-label,
.foot-social > span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-right: 4px;
}
.social-link,
.si {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 7px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.social-link:hover,
.si:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
}
.social-link svg, .si svg {
  width: 15px; height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.footer-bottom,
.foot-copy,
footer > .foot-copy {
  max-width: var(--max);
  margin: 14px auto 0;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 600;
  padding: 0;
  border: none;
  background: transparent;
}
.footer-bottom p { color: var(--muted); font-size: 0.73rem; font-weight: 600; }

/* Old DTB footer classes on article pages */
.dtb-footer { background: rgba(0,0,0,0.3) !important; border-top: 1px solid var(--border) !important; }
.dtb-footer-inner {
  max-width: var(--max) !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 0 !important;
  border: none !important;
  grid-template-columns: unset !important;
}
.dtb-fcol h4 {
  color: var(--muted) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
}
.dtb-fcol ul a,
.dtb-fcol p,
.dtb-fcol .dtb-tagline {
  color: var(--muted) !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
}
.dtb-fcol ul a:hover { color: var(--white) !important; }
.dtb-soc {
  width: 30px !important;
  height: 30px !important;
  border-radius: 7px !important;
  border: 1px solid var(--border) !important;
  background: transparent !important;
  color: var(--muted) !important;
}
.dtb-soc:hover {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.28) !important;
  background: rgba(255,255,255,0.05) !important;
}
.dtb-footer-bottom {
  max-width: var(--max) !important;
  margin: 14px auto 0 !important;
  justify-content: center !important;
  border: none !important;
}
.dtb-slogan, .dtb-copy {
  font-family: 'Nunito', sans-serif !important;
  color: var(--muted) !important;
  font-size: 0.73rem !important;
  font-style: normal !important;
  letter-spacing: normal !important;
}
.dtb-blog-cta {
  background: rgba(255,255,255,0.02) !important;
  border-top: 1px solid var(--border) !important;
}
.dtb-cta-eye {
  color: var(--gold) !important;
  font-family: 'Nunito', sans-serif !important;
}
.dtb-blog-cta h2 {
  font-family: 'Nunito', sans-serif !important;
  color: var(--white) !important;
  font-weight: 900 !important;
}
.dtb-blog-cta h2 em { color: var(--gold) !important; }
.dtb-blog-cta p {
  font-family: 'Nunito', sans-serif !important;
  color: var(--muted) !important;
}
.dtb-btn-gold {
  background: var(--gold) !important;
  color: #1A0608 !important;
  border-radius: 999px !important;
  font-family: 'Nunito', sans-serif !important;
}
.dtb-btn-outline {
  border: 1px solid rgba(232,201,122,0.35) !important;
  color: var(--gold) !important;
  border-radius: 999px !important;
  background: transparent !important;
  font-family: 'Nunito', sans-serif !important;
}
.dtb-btn-outline:hover {
  background: rgba(232,201,122,0.08) !important;
  border-color: rgba(232,201,122,0.6) !important;
}
.dtb-cta-note { color: rgba(247,235,208,0.25) !important; font-family: 'Nunito', sans-serif !important; }

/* ════════════════════════
   CONTAINER
   ════════════════════════ */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* ════════════════════════
   RESPONSIVE
   ════════════════════════ */
@media (max-width: 640px) {
  .topnav .container { padding: 16px 20px; }
  .topnav::after { left: 20px; right: 20px; }
  .post-inner { width: min(100% - 32px, var(--post-w)); }
  .post-wrap { padding: 40px 0 0; }
  .post-title { font-size: 1.7rem; }
  .post-body h2 { font-size: 1.25rem; }
  .post-img { border-radius: 12px; max-height: 300px; }
  .blog-footer-cta { padding: 52px 20px; }
  .dtb-footer { padding: 22px 20px !important; }
  .dtb-footer-inner { flex-direction: column !important; align-items: flex-start !important; }
  .footer, footer { padding: 22px 20px; }
  .foot-links, .footer-left { gap: 14px; }
  .share-btn span { display: none; }
  .share-btn { padding: 8px 10px; }
}

/* ════════════════════════════════════════
   BLOG HOMEPAGE NAV — used on article pages
   after header HTML was replaced to match
   Classes: .nav-wrap, nav, .logo, .nav-links, .btn-nav
   ════════════════════════════════════════ */
.nav-wrap {
  position: relative;
}
.nav-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 32px; right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,201,122,0.28), transparent);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 32px;
  width: 100%;
}
.logo {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem,2vw,3rem);
  font-weight: 900;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.88;
  transition: opacity 0.2s;
  text-decoration: none;
}
.nav-links a:hover { opacity: 1; }
.btn-nav {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-family: 'Nunito', sans-serif !important;
  font-weight: 800 !important;
  opacity: 1 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: #d93848 !important; }

/* ════════════════════════════════════════
   CTA BLOCK — matches blog homepage exactly
   ════════════════════════════════════════ */
.blog-cta {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 32px;
  text-align: center;
}
.blog-cta-inner { max-width: 560px; margin: 0 auto; }
.cta-eye {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.blog-cta h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.blog-cta h2 em { color: var(--gold); font-style: normal; }
.blog-cta-inner > p {
  font-family: 'Nunito', sans-serif;
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 36px;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #1A0608;
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-cta-gold:hover { opacity: 0.88; }
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(232,201,122,0.35);
  color: var(--gold);
  font-family: 'Nunito', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.btn-cta-ghost:hover { background: rgba(232,201,122,0.08); border-color: rgba(232,201,122,0.6); }
.cta-note {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.7rem;
  color: rgba(247,235,208,0.25);
  margin-top: 20px;
}

/* ════════════════════════════════════════
   FOOTER — exact blog homepage structure
   Classes: footer, .foot-inner, .foot-links,
            .foot-social, .si, .foot-copy
   ════════════════════════════════════════ */
footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  padding: 28px 32px;
  margin-top: auto;
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-links a {
  color: var(--muted);
  font-family: 'Nunito', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
  border: none;
}
.foot-links a:hover { color: var(--white); }
.foot-social {
  display: flex;
  align-items: center;
  gap: 5px;
}
.foot-social > span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-right: 4px;
}
.si {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.si:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.05);
}
.si svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.si svg[fill="currentColor"] { fill: currentColor; stroke: none; }
.foot-copy {
  max-width: var(--max);
  margin: 14px auto 0;
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 0.73rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

/* ── Responsive nav ── */
@media (max-width: 860px) {
  .nav-links { gap: 16px; }
}
@media (max-width: 680px) {
  nav { padding: 16px 20px; }
  .nav-wrap::after { left: 20px; right: 20px; }
  .nav-links { display: none; }
  footer { padding: 22px 20px; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
  .foot-links { gap: 14px; }
  .blog-cta { padding: 56px 20px; }
}


/* ── MOBILE BURGER MENU (topnav) ── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
  .burger { display: flex; }
  .mobile-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px; right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(26,8,9,0.97);
    border: 1px solid rgba(232,201,122,0.22);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.32);
    z-index: 100;
  }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
  }
  .mobile-nav a:hover { background: rgba(255,255,255,0.06); color: #fff; }
  .mobile-nav .btn-nav {
    margin-top: 6px;
    text-align: center;
    background: #f04555 !important;
    color: #fff !important;
    border-radius: 50px !important;
  }
}

/* ── MOBILE BURGER: nav-links variant (handbag-influencer-guide) ── */
@media (max-width: 680px) {
  .nav-wrap nav { position: relative; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(26,8,9,0.97);
    border: 1px solid rgba(232,201,122,0.22);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 18px 55px rgba(0,0,0,0.32);
    z-index: 100;
    list-style: none;
    margin: 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
  }
  .nav-links li a:hover { background: rgba(255,255,255,0.06); color: #fff; opacity: 1; }
  .nav-links li:last-child a.btn-nav {
    margin-top: 6px;
    text-align: center;
    background: #f04555 !important;
    color: #fff !important;
    border-radius: 50px !important;
    opacity: 1 !important;
  }
}
