/*
Theme Name: Dupe & Glow
Theme URI: https://dupeglow.com/
Author: Dupe & Glow
Author URI: https://dupeglow.com/
Description: A beautiful, feminine WordPress theme for Dupe & Glow beauty dupe website.
Version: 2.8.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dupe-and-glow
*/

/* ========================================
   CSS VARIABLES
======================================== */
:root {
  /* Background colors */
  --bg-page: #FDF8F6;
  --bg-header: #FFFFFF;
  --bg-hero: #FBF5F3;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-white: #FFFFFF;

  /* Brand colors */
  --pink-primary: #D4919B;
  --pink-light: #F4C4CB;
  --pink-dark: #C07A84;
  --pink-muted: rgba(212, 145, 155, 0.15);
  --pink-line: #E8B4BC;
  --gold: #C9A86C;
  --gold-light: #E7D4B8;

  /* Text colors */
  --text-dark: #2D2A26;
  --text-medium: #5C5855;
  --text-muted: #8B8683;
  --text-light: #A89F9C;

  /* UI colors */
  --border-light: rgba(0, 0, 0, 0.04);
  --border-medium: rgba(0, 0, 0, 0.08);
  --shadow-header: 0 2px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 2px 40px rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --container-padding: 24px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-page);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   LAYOUT
======================================== */
.dg-site-wrapper {
  min-height: 100vh;
}

.dg-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ========================================
   TOP BAR
======================================== */
.dg-topbar {
  background: var(--bg-hero);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}

.dg-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
}

.dg-topbar-text {
  color: var(--text-medium);
}

.dg-topbar-highlight {
  font-weight: 600;
  color: var(--pink-primary);
}

.dg-topbar-link {
  font-weight: 500;
  color: var(--text-dark);
}

.dg-topbar-link:hover {
  color: var(--pink-primary);
}

/* ========================================
   HEADER - Sticky with shadow
======================================== */
.dg-header {
  background: var(--bg-header);
  box-shadow: var(--shadow-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Scrolled state - more prominent shadow */
.dg-header.is-scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.dg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
  transition: padding 0.3s ease;
}

/* Tighter padding on scroll */
.dg-header.is-scrolled .dg-header-inner {
  padding: 10px 0;
}

/* Logo */
.dg-logo {
  flex-shrink: 0;
}

.dg-logo img,
.dg-logo .custom-logo {
  height: 75px !important;
  width: auto !important;
  transition: height 0.3s ease;
}

/* Shrink logo on scroll */
.dg-header.is-scrolled .dg-logo img,
.dg-header.is-scrolled .dg-logo .custom-logo {
  height: 50px !important;
}

.dg-logo a {
  display: block;
}

.dg-logo-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--pink-primary);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.dg-logo-text .amp {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 28px;
}

/* ========================================
   NAVIGATION with squiggly underline
======================================== */
.dg-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.dg-nav .dg-menu,
.dg-nav .menu,
.dg-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.dg-nav .dg-menu > li,
.dg-nav .menu > li,
.dg-nav ul > li {
  position: relative;
}

.dg-nav .dg-menu > li > a,
.dg-nav .menu > li > a,
.dg-nav ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color 0.2s ease;
}

.dg-nav .dg-menu > li > a:hover,
.dg-nav .menu > li > a:hover,
.dg-nav ul > li > a:hover {
  color: var(--text-dark);
}

/* Slanted underline - hand-drawn style */
.dg-nav .dg-menu > li > a::after,
.dg-nav .menu > li > a::after,
.dg-nav ul > li > a::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 2px;
  opacity: 0;
  background: var(--pink-line);
  border-radius: 2px;
  transform: translateY(4px) rotate(-2deg);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dg-nav .dg-menu > li > a:hover::after,
.dg-nav .menu > li > a:hover::after,
.dg-nav ul > li > a:hover::after,
.dg-nav .dg-menu > li.current-menu-item > a::after,
.dg-nav .menu > li.current-menu-item > a::after {
  opacity: 1;
  transform: translateY(0) rotate(-2deg);
}

/* Dropdown arrow for menu items with children */
.dg-nav .dg-menu > li.menu-item-has-children > a::before,
.dg-nav .menu > li.menu-item-has-children > a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-muted);
  margin-left: 6px;
  order: 1;
  transition: transform 0.2s ease;
}

/* ========================================
   HEADER CTA BUTTON
======================================== */
.dg-header-cta {
  flex-shrink: 0;
}

.dg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.dg-btn-primary {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-primary) 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 14px rgba(212, 145, 155, 0.35);
}

.dg-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 145, 155, 0.45);
  color: white;
}

.dg-btn-secondary {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 1.5px solid var(--border-medium);
}

.dg-btn-secondary:hover {
  background: #FAFAFA;
  border-color: var(--pink-light);
  color: var(--text-dark);
}

/* ========================================
   MAIN CONTENT AREA
======================================== */
.dg-main {
  background: var(--bg-hero);
  position: relative;
}

.dg-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: radial-gradient(ellipse 800px 400px at 30% 0%, rgba(244, 196, 203, 0.2), transparent);
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}

.dg-main > * {
  position: relative;
  z-index: 1;
}

/* ========================================
   HERO SECTION
======================================== */
.dg-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 70px 0 50px;
  align-items: center;
}

.dg-hero-content {
  max-width: 500px;
}

.dg-hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.dg-hero-subtitle {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
  line-height: 1.6;
}

.dg-hero-actions {
  display: flex;
  gap: 14px;
}

/* ========================================
   HERO IMAGE
======================================== */
.dg-hero-image {
  position: relative;
}

.dg-hero-image-inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 1.1;
}

.dg-hero-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 40%, transparent 70%);
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black 40%, transparent 70%);
  transform: translateZ(0);
}

.dg-hero-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  gap: 12px;
}

.dg-hero-placeholder svg {
  opacity: 0.3;
}

.dg-hero-placeholder span {
  font-size: 13px;
  font-weight: 500;
}

/* Sparkle decorations */
.dg-sparkle {
  position: absolute;
  color: var(--gold);
  font-size: 16px;
  pointer-events: none;
  z-index: 5;
}

.dg-sparkle-1 { top: 10px; right: 15%; font-size: 14px; }
.dg-sparkle-2 { top: 25%; right: -15px; font-size: 20px; }
.dg-sparkle-3 { bottom: 40%; right: 5%; font-size: 12px; }
.dg-sparkle-4 { bottom: 25%; left: -10px; font-size: 14px; color: var(--pink-light); }

/* Price bubbles */
.dg-price-bubble {
  position: absolute;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
  font-weight: 700;
}

.dg-bubble-save {
  top: 79%;
  right: 26%;
  padding: 12px 18px;
  text-align: center;
}

.dg-bubble-save .label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.dg-bubble-save .amount {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--pink-primary);
  line-height: 1.1;
}


/* ========================================
   CATEGORY CARDS
======================================== */
.dg-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 50px;
}

.dg-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.dg-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.dg-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.dg-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(244, 196, 203, 0.12);
  border: 1px solid rgba(244, 196, 203, 0.25);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.2s ease;
}

.dg-chip:hover {
  background: rgba(244, 196, 203, 0.22);
  color: var(--text-dark);
}

.dg-chip-icon {
  font-size: 16px;
}

.dg-card-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.dg-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.dg-card-link:hover {
  color: var(--pink-primary);
}

/* ========================================
   FEATURED DUPES SECTION
======================================== */
.dg-featured-section {
  padding: 50px 0 70px;
  background: var(--bg-page);
}

.dg-featured-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.dg-featured-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 16px;
}

.dg-title-sparkle {
  color: var(--gold);
  font-size: 20px;
  opacity: 0.7;
}

.dg-title-sparkle-left {
  transform: rotate(-15deg);
}

.dg-title-sparkle-right {
  transform: rotate(15deg);
}

/* Dupe Grid */
.dg-dupe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Dupe Card */
.dg-dupe-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.dg-dupe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Category Label */
.dg-dupe-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 16px;
}

/* Product Images */
.dg-dupe-images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.dg-dupe-image {
  width: 90px;
  height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(145deg, #FDF8F6 0%, #F4EBE8 100%);
}

.dg-dupe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dg-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 500;
}

.dg-dupe-arrow {
  font-size: 24px;
  color: var(--text-light);
  font-weight: 300;
}

/* Prices Row */
.dg-dupe-prices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.dg-price-luxury .dg-price-amount,
.dg-price-dupe .dg-price-amount {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
}

.dg-price-arrow {
  color: var(--text-light);
  font-size: 16px;
}

/* Product Names */
.dg-dupe-names {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  min-height: 70px;
}

.dg-name-luxury,
.dg-name-dupe {
  flex: 1;
  text-align: center;
}

.dg-name-brand {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.dg-name-product {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Card Footer */
.dg-dupe-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.dg-dupe-tag {
  display: inline-block;
  padding: 8px 16px;
  background: var(--bg-hero);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.dg-dupe-save {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, #3D3A36 0%, #2D2A26 100%);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.dg-dupe-save:hover {
  background: linear-gradient(135deg, #4D4A46 0%, #3D3A36 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 42, 38, 0.35);
  color: white;
}

/* ========================================
   FOOTER
======================================== */
.dg-footer {
  background: var(--bg-page);
}

/* Newsletter Section */
.dg-footer-newsletter {
  background: linear-gradient(135deg, #FDF5F3 0%, #F8EBE8 100%);
  padding: 50px 0;
  border-top: 1px solid var(--border-light);
}

.dg-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.dg-newsletter-content {
  flex: 1;
}

.dg-newsletter-icon {
  color: var(--gold);
  font-size: 32px;
  margin-right: 10px;
}

.dg-newsletter-content h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.dg-newsletter-content p {
  color: var(--text-medium);
  font-size: 15px;
  margin: 0;
}

.dg-newsletter-form {
  flex: 1;
  max-width: 420px;
}

.dg-newsletter-input-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.dg-newsletter-input-wrap input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 15px;
  background: white;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dg-newsletter-input-wrap input:focus {
  border-color: var(--pink-light);
  box-shadow: 0 0 0 3px rgba(244, 196, 203, 0.2);
}

.dg-newsletter-input-wrap input::placeholder {
  color: var(--text-light);
}

.dg-newsletter-note {
  font-size: 12px;
  color: var(--text-muted);
  padding-left: 20px;
}

/* Main Footer */
.dg-footer-main {
  padding: 60px 0 40px;
  background: white;
}

.dg-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

/* Brand Column */
.dg-footer-brand {
  padding-right: 30px;
}

.dg-footer-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--pink-primary);
  display: inline-block;
  margin-bottom: 16px;
}

.dg-footer-logo span {
  font-family: 'Times New Roman', serif;
  font-style: italic;
  color: var(--gold);
}

.dg-footer-tagline {
  color: var(--text-medium);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.dg-footer-social {
  display: flex;
  gap: 12px;
}

.dg-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-hero);
  border-radius: 50%;
  color: var(--text-medium);
  transition: all 0.2s ease;
}

.dg-social-link:hover {
  background: var(--pink-light);
  color: white;
  transform: translateY(-2px);
}

/* Footer Columns */
.dg-footer-col h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  position: relative;
}

.dg-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--pink-light);
  border-radius: 2px;
}

.dg-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dg-footer-col ul li {
  margin-bottom: 12px;
}

.dg-footer-col ul li a {
  color: var(--text-medium);
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.dg-footer-col ul li a:hover {
  color: var(--pink-primary);
  padding-left: 4px;
}

/* Bottom Bar */
.dg-footer-bottom {
  background: var(--bg-hero);
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
}

.dg-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dg-copyright {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.dg-disclosure {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
  text-align: right;
  max-width: 400px;
}

/* ========================================
   CONTENT PAGES
======================================== */
.dg-page {
  padding: 50px 40px;
  background: var(--bg-white);
}

.dg-page h1,
.entry-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.dg-page h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 32px 0 16px;
}

.dg-page h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 24px 0 12px;
}

.dg-page p,
.entry-content p {
  color: var(--text-medium);
  margin-bottom: 16px;
  line-height: 1.7;
}

.dg-page ul,
.entry-content ul {
  margin: 16px 0;
  padding-left: 24px;
  list-style: disc;
}

.dg-page ul li,
.entry-content ul li {
  color: var(--text-medium);
  margin-bottom: 8px;
}

.entry-content a {
  color: var(--pink-primary);
}

.entry-content a:hover {
  color: var(--pink-dark);
}

/* ========================================
   MOBILE MENU
======================================== */
/* Hamburger Toggle - Hidden on desktop */
.dg-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.dg-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.dg-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.dg-hamburger span:nth-child(1) { width: 24px; }
.dg-hamburger span:nth-child(2) { width: 18px; }
.dg-hamburger span:nth-child(3) { width: 24px; }

/* Hamburger to X animation */
.dg-mobile-toggle.is-active .dg-hamburger span:nth-child(1) {
  width: 24px;
  transform: rotate(45deg) translate(6px, 6px);
}

.dg-mobile-toggle.is-active .dg-hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.dg-mobile-toggle.is-active .dg-hamburger span:nth-child(3) {
  width: 24px;
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.dg-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}

.dg-mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.dg-mobile-menu-inner {
  padding: 100px 24px 40px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.dg-mobile-nav {
  flex: 1;
}

.dg-mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dg-mobile-menu-list li {
  border-bottom: 1px solid var(--border-light);
}

.dg-mobile-menu-list li a {
  display: block;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.dg-mobile-menu-list li a:hover {
  color: var(--pink-primary);
}

.dg-mobile-cta {
  padding-top: 30px;
  margin-top: auto;
}

.dg-btn-full {
  width: 100%;
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .dg-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 50px 0 40px;
  }

  .dg-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .dg-hero h1 {
    font-size: 40px;
  }

  .dg-hero-actions {
    justify-content: center;
  }

  .dg-hero-image {
    max-width: 480px;
    margin: 0 auto;
  }

  .dg-cards-row {
    gap: 16px;
  }

  .dg-dupe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer tablet */
  .dg-newsletter-inner {
    flex-direction: column;
    text-align: center;
  }

  .dg-newsletter-form {
    max-width: 100%;
    width: 100%;
  }

  .dg-newsletter-note {
    padding-left: 0;
  }

  .dg-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .dg-footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    text-align: center;
  }

  .dg-footer-social {
    justify-content: center;
  }

  .dg-footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .dg-footer-col {
    text-align: center;
  }

  .dg-footer-col ul li a:hover {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .dg-header-inner {
    padding: 14px 0;
  }

  /* Hide desktop nav and CTA */
  .dg-nav,
  .dg-header-cta {
    display: none;
  }

  /* Show hamburger */
  .dg-mobile-toggle {
    display: flex;
  }

  /* Show mobile menu container */
  .dg-mobile-menu {
    display: block;
  }

  .dg-logo img,
  .dg-logo .custom-logo {
    height: 50px !important;
  }

  /* Scrolled state on mobile */
  .dg-header.is-scrolled .dg-logo img,
  .dg-header.is-scrolled .dg-logo .custom-logo {
    height: 40px !important;
  }

  .dg-hero {
    padding: 36px 0 30px;
  }

  .dg-hero h1 {
    font-size: 32px;
  }

  .dg-hero-subtitle {
    font-size: 16px;
  }

  .dg-hero-actions {
    flex-direction: column;
  }

  .dg-btn {
    width: 100%;
    justify-content: center;
  }

  .dg-cards-row {
    grid-template-columns: 1fr;
  }

  .dg-dupe-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .dg-dupe-card {
    padding: 20px 16px;
  }

  .dg-dupe-images {
    gap: 12px;
    width: 100%;
  }

  .dg-dupe-image {
    flex: 1;
    width: 50%;
    height: 140px;
  }

  .dg-dupe-arrow {
    flex-shrink: 0;
  }

  .dg-dupe-names {
    gap: 24px;
  }

  .dg-name-luxury,
  .dg-name-dupe {
    flex: 1;
    min-width: 0;
  }

  /* Hide top bar on mobile */
  .dg-topbar {
    display: none;
  }

  /* Footer mobile */
  .dg-footer-newsletter {
    padding: 40px 0;
  }

  .dg-newsletter-content h3 {
    font-size: 28px;
    justify-content: center;
  }

  .dg-newsletter-input-wrap {
    flex-direction: column;
  }

  .dg-newsletter-input-wrap .dg-btn {
    width: 100%;
  }

  .dg-footer-main {
    padding: 40px 0 30px;
  }

  .dg-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .dg-footer-brand {
    grid-column: auto;
  }

  .dg-footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .dg-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .dg-disclosure {
    text-align: center;
    max-width: 100%;
  }
}

/* ========================================
   UTILITIES
======================================== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
