/* ============================================================
   DQUILLS CRAFT STORE – MAIN STYLESHEET
   Version: 1.0.0
   ============================================================ */

/* ── GOOGLE FONTS loaded via wp_enqueue_scripts in functions.php ── */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --cream: #f5f0e8;
  --warm-white: #fdfaf4;
  --navy: #2c3560;
  --navy-light: #3d4a7a;
  --gold: #b8972a;
  --gold-light: #d4ac3a;
  --red: #e84c1e;
  --orange: #f07020;
  --rainbow-1: #e84c1e;
  --rainbow-2: #f07020;
  --rainbow-3: #f5c518;
  --rainbow-4: #52a832;
  --rainbow-5: #1e8fc8;
  --rainbow-6: #7b3fb8;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #7a7a9a;
  --border: rgba(44,53,96,0.12);
  --shadow-sm: 0 2px 12px rgba(44,53,96,0.08);
  --shadow-md: 0 8px 32px rgba(44,53,96,0.12);
  --shadow-lg: 0 20px 60px rgba(44,53,96,0.16);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── UTILITY ── */
.dq-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.dq-reveal.visible { opacity: 1; transform: translateY(0); }
.dq-gradient-text {
  background: linear-gradient(90deg, var(--rainbow-1), var(--rainbow-3), var(--rainbow-4), var(--rainbow-5), var(--rainbow-6));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dq-rainbow-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--rainbow-1), var(--rainbow-2), var(--rainbow-3), var(--rainbow-4), var(--rainbow-5), var(--rainbow-6));
  border-radius: 4px;
}

/* ── BUTTONS ── */
.dq-btn-primary {
  background: var(--navy); color: white; border: none; border-radius: 50px;
  padding: 14px 32px; font-size: 0.95rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif; letter-spacing: 0.02em;
}
.dq-btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,42,0.35); color: white; }
.dq-btn-secondary {
  background: transparent; color: var(--navy); border: 2px solid var(--navy); border-radius: 50px;
  padding: 12px 28px; font-size: 0.95rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
}
.dq-btn-secondary:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.dq-btn-gold {
  background: var(--gold); color: white; border: none; border-radius: 50px;
  padding: 14px 32px; font-size: 0.95rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; font-family: 'DM Sans', sans-serif;
}
.dq-btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,151,42,0.4); color: white; }

/* ── SECTION COMMON ── */
.dq-section { padding: 100px 5%; }
.dq-section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.dq-section-tag::before, .dq-section-tag::after { content: '—'; opacity: 0.5; }
.dq-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--navy); line-height: 1.2; margin-bottom: 16px;
}
.dq-section-title em { font-style: italic; color: var(--gold); }
.dq-section-desc { font-size: 1rem; color: var(--text-mid); line-height: 1.75; max-width: 560px; }
.dq-section-header { margin-bottom: 60px; }
.dq-section-header.centered { text-align: center; }
.dq-section-header.centered .dq-section-desc { margin: 0 auto; }

/* ── NAVBAR ── */
#dq-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,250,244,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
#dq-navbar.scrolled { box-shadow: var(--shadow-md); }
.dq-nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.dq-nav-logo img { height: 44px; width: auto; max-width: 220px; object-fit: contain; }
.dq-nav-logo-text { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy); font-weight: 700; }
.dq-nav-logo-sub { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; font-weight: 600; display: block; margin-top: -4px; }
.dq-nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.dq-nav-links a { text-decoration: none; color: var(--text-mid); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; position: relative; }
.dq-nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; }
.dq-nav-links a:hover, .dq-nav-links a.current-menu-item { color: var(--navy); }
.dq-nav-links a:hover::after, .dq-nav-links a.current-menu-item::after { width: 100%; }
.dq-nav-actions { display: flex; align-items: center; gap: 16px; }
.dq-nav-cart {
  position: relative; background: var(--gold); color: white;
  border: none; border-radius: 50px; padding: 9px 20px; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.2s; font-family: 'DM Sans', sans-serif; text-decoration: none;
}
.dq-nav-cart:hover { background: var(--navy); transform: translateY(-1px); color: white; }
.dq-cart-badge {
  background: var(--red); color: white; border-radius: 50%; width: 18px; height: 18px;
  font-size: 0.7rem; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.dq-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.dq-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ── MOBILE MENU ── */
#dq-mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--warm-white); flex-direction: column;
  padding: 100px 5% 40px; gap: 0; overflow-y: auto;
}
#dq-mobile-menu.open { display: flex; }

/* Top-level mobile links */
#dq-mobile-menu > ul,
#dq-mobile-menu ul { list-style: none; margin: 0; padding: 0; width: 100%; }
#dq-mobile-menu > ul > li { border-bottom: 1px solid var(--border); }
#dq-mobile-menu > ul > li > a {
  font-family: 'DM Sans', sans-serif; font-size: 1.15rem; font-weight: 600;
  color: var(--navy); text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0;
}
#dq-mobile-menu > ul > li > a .dq-chevron { font-size: 0.9rem; margin-left: 10px; }

/* Mobile dropdown sub-items */
#dq-mobile-menu .dq-dropdown {
  display: none;
  position: static; transform: none;
  opacity: 1; visibility: visible; pointer-events: auto;
  box-shadow: none; border: none; border-radius: 0;
  background: var(--cream);
  padding: 4px 0 12px 20px;
}
#dq-mobile-menu .dq-dropdown::before { display: none; }
#dq-mobile-menu li.dq-open > .dq-dropdown { display: block; }
#dq-mobile-menu .dq-dropdown li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 500;
  color: var(--text-mid); padding: 8px 0;
  border-radius: 0; display: block;
  border-bottom: none; background: none;
}
#dq-mobile-menu .dq-dropdown li a:hover { color: var(--gold); }

/* ── HERO ── */
.dq-hero {
  min-height: 92vh;
  background: var(--cream);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 60px;
}
.dq-hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, var(--navy) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}

/* Full-section background photo — covers the ENTIRE hero, on every device */
.dq-hero-image-bleed {
  position: absolute; inset: 0;
  width: 100%; height: 100%; z-index: 0; overflow: hidden;
}
.dq-hero-image-bleed img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Readable overlay — solid cream behind the text on the left,
   fading out toward the right so the photo still shows through */
.dq-hero-image-fade {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    var(--cream) 0%,
    rgba(245,240,232,0.94) 30%,
    rgba(245,240,232,0.68) 48%,
    rgba(245,240,232,0.22) 68%,
    transparent 85%
  );
  pointer-events: none;
}
.dq-hero-rating-pill {
  position: absolute; bottom: 7%; right: 4%; z-index: 1;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-radius: 50px; padding: 10px 20px 10px 14px;
  display: flex; align-items: center; gap: 7px;
  box-shadow: 0 8px 28px rgba(44,53,96,0.18);
  animation: dqFloat2 5s ease-in-out infinite;
  white-space: nowrap;
}
.dq-hero-rating-star { color: var(--red); font-size: 1rem; }
.dq-hero-rating-num { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--navy); font-size: 1.05rem; }
.dq-hero-rating-text { font-size: 0.78rem; color: var(--text-mid); font-weight: 500; }

.dq-hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 620px;
  padding: 0 5%;
}
.dq-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--border); border-radius: 50px;
  padding: 6px 16px; font-size: 0.8rem; color: var(--gold); font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px;
  animation: dqFadeUp 0.6s ease both;
}
.dq-hero-eyebrow::before { content: '✦'; font-size: 0.7rem; }
.dq-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  line-height: 1.12; color: var(--navy); margin-bottom: 24px;
  animation: dqFadeUp 0.6s 0.1s ease both;
}
.dq-hero-title em { font-style: italic; color: var(--gold); }
.dq-hero-desc {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.75;
  max-width: 460px; margin-bottom: 40px; animation: dqFadeUp 0.6s 0.2s ease both;
}
.dq-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: dqFadeUp 0.6s 0.3s ease both; }
.dq-hero-stats {
  display: flex; align-items: center; gap: 22px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid var(--border);
  animation: dqFadeUp 0.6s 0.4s ease both; flex-wrap: nowrap;
}
.dq-hero-stat { flex-shrink: 0; }
.dq-hero-stat-num { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--navy); font-weight: 700; white-space: nowrap; }
.dq-hero-stat-label { font-size: 0.72rem; color: var(--text-light); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; white-space: nowrap; }

/* Small process-photo thumbnail — sits inline with the stats as a 4th item */
.dq-hero-stat-thumb {
  width: 125px;
  height: 125px;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: var(--shadow-md); */
  flex-shrink: 0;
  box-shadow: none;
}
.dq-hero-stat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

@keyframes dqFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes dqFloat2 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-8px) rotate(1deg)} }
@keyframes dqFloat3 { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-10px) rotate(-1deg)} }
@keyframes dqFadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }

/* ── TRUST BAR ── */
.dq-trust-bar {
  background: var(--navy); padding: 24px 5%;
  display: flex; justify-content: center; gap: 60px; flex-wrap: wrap;
}
.dq-trust-item { display: flex; align-items: center; gap: 12px; color: white; }
.dq-trust-icon { font-size: 1.5rem; }
.dq-trust-label { font-size: 0.85rem; font-weight: 500; opacity: 0.9; }

/* ── CATEGORIES ── */
.dq-categories { background: var(--warm-white); }
.dq-categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dq-cat-card {
  background: var(--cream); border-radius: 24px; overflow: hidden;
  position: relative; cursor: pointer; transition: transform 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.dq-cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dq-cat-card-img {
  aspect-ratio: 4/5; overflow: hidden; position: relative;
}
.dq-cat-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dq-cat-card:hover .dq-cat-card-img img { transform: scale(1.05); }
.dq-cat-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(44,53,96,0.5));
}
.dq-cat-card-body {
  padding: 24px; background: white;
  flex: 1; display: flex; flex-direction: column;
}
.dq-cat-card-tag { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.dq-cat-card-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 8px; }
.dq-cat-card-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 16px; }
.dq-cat-link {
  font-size: 0.85rem; font-weight: 700; color: var(--navy); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s;
  margin-top: auto; /* pins the link to the bottom of the now-flexible body */
}
.dq-cat-link:hover { gap: 10px; color: var(--gold); }
.dq-cat-card.featured { grid-column: span 2; }
.dq-cat-card.featured .dq-cat-card-img { aspect-ratio: 16/9; }

/* Promo banner — fills the empty grid slot with a customizable offer.
   Default (no image uploaded): gradient card with tag/title/desc/button.
   With image uploaded: shown as a pure image, see --image-only below. */
.dq-cat-banner {
  position: relative; overflow: hidden;
  border-radius: 24px; text-decoration: none;
  display: flex; align-items: flex-end;
  min-height: 260px;
  background: linear-gradient(145deg, var(--navy) 0%, #3d2f5c 100%);
  transition: transform 0.4s, box-shadow 0.4s;
}
.dq-cat-banner:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/* Pure image banner — the uploaded graphic renders as-is, full and
   uncropped, with no gradient or text overlaid on top of it. */
.dq-cat-banner--image-only {
  background: var(--cream);
  display: block;
  padding: 0;
}
.dq-cat-banner--image-only img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.dq-cat-banner-body { position: relative; z-index: 1; padding: 26px 24px; width: 100%; }
.dq-cat-banner-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px; padding: 4px 12px; margin-bottom: 12px;
}
.dq-cat-banner-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: white; line-height: 1.3; margin-bottom: 8px;
}
.dq-cat-banner-desc { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.6; margin-bottom: 16px; }
.dq-cat-banner-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700; color: var(--gold-light);
  transition: gap 0.2s;
}
.dq-cat-banner:hover .dq-cat-banner-btn { gap: 10px; }

/* ── PRODUCTS / SHOP ── */
.dq-products { background: var(--cream); }
.dq-products-filter { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.dq-filter-btn {
  background: white; border: 1.5px solid var(--border); border-radius: 50px;
  padding: 8px 20px; font-size: 0.85rem; font-weight: 500; color: var(--text-mid);
  cursor: pointer; transition: all 0.2s; font-family: 'DM Sans', sans-serif;
}
.dq-filter-btn.active, .dq-filter-btn:hover { background: var(--navy); color: white; border-color: var(--navy); }
.dq-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dq-product-card {
  background: white; border-radius: 20px; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; position: relative;
}
.dq-product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dq-product-img {
  aspect-ratio: 1; overflow: hidden; position: relative;
}
.dq-product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dq-product-card:hover .dq-product-img img { transform: scale(1.06); }
.dq-product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: white; border-radius: 50px;
  padding: 3px 10px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; z-index: 2;
}
.dq-product-badge.new { background: var(--navy); }
.dq-product-wish {
  position: absolute; top: 12px; right: 12px;
  background: white; border: none; border-radius: 50%;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; box-shadow: var(--shadow-sm);
  transition: transform 0.2s; opacity: 0; z-index: 2;
}
.dq-product-card:hover .dq-product-wish { opacity: 1; }
.dq-product-wish:hover { transform: scale(1.15); }
.dq-product-body { padding: 16px; }
.dq-product-category { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.dq-product-name { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; line-height: 1.35; letter-spacing: 0.01em; }
.dq-product-name a { color: inherit !important; text-decoration: none !important; }
.dq-product-name a:hover { color: var(--gold) !important; }
.dq-product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.dq-product-stars { color: var(--gold-light); font-size: 0.75rem; }
.dq-product-reviews { font-size: 0.75rem; color: var(--text-light); }
.dq-product-footer { display: flex !important; align-items: center !important; justify-content: space-between !important; flex-wrap: nowrap !important; gap: 8px; }
.dq-product-price { font-weight: 700; color: var(--navy); font-size: 1rem; min-width: 0; }
.dq-product-price .was { font-size: 0.8rem; color: var(--text-light); text-decoration: line-through; margin-right: 6px; font-weight: 400; }
.dq-add-to-cart { flex-shrink: 0; }
.dq-add-to-cart {
  background: var(--navy); color: white; border: none; border-radius: 50px;
  padding: 6px 14px; font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.2s; font-family: 'DM Sans', sans-serif;
}
.dq-add-to-cart:hover { background: var(--gold); transform: scale(1.05); }
.dq-view-all-wrap { text-align: center; margin-top: 48px; }

/* ── Defensive fix: empty Gutenberg columns on the Shop page ──
   WooCommerce shows the Shop page's own block-editor content
   (headings like "Featured Products") above the automatic product
   loop. If a Columns block there has an empty/near-empty column
   sitting beside a heading, it creates unwanted blank gutter space.
   This collapses any effectively-empty column so it doesn't reserve
   width — the true fix is to check the Shop page content directly
   (see note below), but this prevents the visual gap regardless. */
.woocommerce-page .wp-block-columns { flex-wrap: wrap; }
.woocommerce-page .wp-block-column:empty,
.woocommerce-page .wp-block-column:has(> :only-child:empty) {
  display: none !important;
}
.woocommerce-page .wp-block-column:has(.wp-block-heading):not(:has(.wp-block-heading ~ *)) {
  flex-basis: 100% !important;
  max-width: 100% !important;
}

/* WooCommerce's own bundled stylesheet targets .price inside ul.products
   li.product with block-level/stacking rules designed for its default
   theme layout — these fight our single-row price+button footer once
   the SAME .dq-product-card markup renders inside a real <ul class="products">
   context (shop/category archives), even though it looks fine on the
   homepage where the cards aren't inside that WC wrapper at all. */
.woocommerce ul.products li.product .dq-product-price,
.woocommerce ul.products li.product .dq-product-price .price {
  display: inline !important;
  white-space: nowrap !important;
  font-size: 0.95rem !important;
  margin: 0 !important;
  width: auto !important;
}
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }
.woocommerce ul.products li.product .price del { opacity: 0.55; font-weight: 400 !important; }
.woocommerce ul.products li.product .dq-product-footer { display: flex !important; flex-wrap: nowrap !important; }

/* Standard accessibility helper — also prevents WooCommerce's visually-hidden
   "Original price was / Current price is" screen-reader spans from ever
   rendering as stray visible text if this class was previously undefined. */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ══════════════════════════════════════════════════════════
   APPLY THE SAME PRODUCT CARD DESIGN SITEWIDE
   Shop page, category archives, search results, related/
   up-sell/cross-sell loops, and the [products] shortcode all
   render through WooCommerce's classic template system, which
   our woocommerce/content-product.php override feeds into.
   This block makes the <ul class="products"> wrapper behave
   exactly like .dq-products-grid, and strips WooCommerce's own
   default list-item styling so .dq-product-card renders cleanly.
   ══════════════════════════════════════════════════════════ */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  margin: 0 0 40px !important;
  padding: 0 !important;
  list-style: none !important;
}
/* WooCommerce's own default stylesheet adds a float clearfix via
   ::before/::after with content:" "; display:table; on ul.products.
   That clearfix is meaningless once the container is display:grid,
   but the generated pseudo-elements still count as real grid items —
   which silently reserved an empty first cell, showing as blank space
   before the first product card. Kill them outright. */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: none !important;
  display: none !important;
}
.woocommerce ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
  list-style: none !important;
}
/* Neutralise WooCommerce's own default typography/spacing so our
   .dq-product-* classes (already defined above) take full control */
.woocommerce ul.products li.product .woocommerce-loop-product__link { display: block; }
.woocommerce ul.products li.product img { border-radius: 0; box-shadow: none; }
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product > .price,
.woocommerce ul.products li.product > .button {
  display: none; /* replaced entirely by our custom .dq-product-* markup */
}

@media (max-width: 1200px) {
  .woocommerce ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 768px) {
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}
@media (max-width: 480px) {
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
}

/* ── Safety net: WooCommerce Gutenberg "Products" blocks ──
   If a page uses the block-editor Products/Featured Products block
   instead of the classic archive loop, this aligns its look to match
   (rounded images, matching fonts/colours, pill-style button). The
   block renders its own markup so we can't add category/rating/
   wishlist elements here — only visual polish. */
.wc-block-grid__products,
.wp-block-woocommerce-product-collection .wc-block-product-template {
  gap: 24px !important;
}
.wc-block-grid__product,
.wc-block-product-template__item {
  background: white; border-radius: 20px; overflow: hidden;
  padding: 0 !important; box-shadow: none; transition: transform 0.3s, box-shadow 0.3s;
}
.wc-block-grid__product:hover,
.wc-block-product-template__item:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-md);
}
.wc-block-grid__product-image,
.wc-block-components-product-image {
  border-radius: 0; margin: 0 !important;
}
.wc-block-grid__product-image img,
.wc-block-components-product-image img { aspect-ratio: 1; object-fit: cover; }
.wc-block-grid__product-title,
.wc-block-components-product-title {
  font-family: 'DM Sans', sans-serif !important; font-weight: 600 !important;
  color: var(--navy) !important; font-size: 0.85rem !important;
  padding: 16px 16px 4px !important; margin: 0 !important;
}
.wc-block-grid__product-price,
.wc-block-components-product-price {
  color: var(--navy) !important; font-weight: 700 !important;
  padding: 0 16px !important;
}
.wc-block-grid__product-rating { padding: 0 16px; }
.wp-block-button__link.add_to_cart_button,
.wc-block-components-product-button__button {
  background: var(--navy) !important; color: white !important;
  border-radius: 50px !important; font-family: 'DM Sans', sans-serif !important;
  font-size: 0.78rem !important; font-weight: 600 !important;
  margin: 12px 16px 16px !important; transition: background 0.2s, transform 0.2s !important;
}
.wp-block-button__link.add_to_cart_button:hover,
.wc-block-components-product-button__button:hover {
  background: var(--gold) !important; transform: scale(1.05);
}

/* ── HOW IT WORKS ── */
.dq-how-it-works { background: var(--warm-white); }
.dq-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.dq-steps-grid::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 2px; background: linear-gradient(90deg, var(--rainbow-1), var(--rainbow-3), var(--rainbow-4), var(--rainbow-5));
  z-index: 0;
}
.dq-step-card { text-align: center; position: relative; z-index: 1; }
.dq-step-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: white;
  position: relative; box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.dq-step-num::after {
  content: attr(data-icon); position: absolute; bottom: -4px; right: -4px;
  background: white; border-radius: 50%; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.dq-step-card:nth-child(1) .dq-step-num { background: linear-gradient(135deg, var(--rainbow-1), var(--rainbow-2)); }
.dq-step-card:nth-child(2) .dq-step-num { background: linear-gradient(135deg, var(--rainbow-3), var(--rainbow-4)); }
.dq-step-card:nth-child(3) .dq-step-num { background: linear-gradient(135deg, var(--rainbow-4), var(--rainbow-5)); }
.dq-step-card:nth-child(4) .dq-step-num { background: linear-gradient(135deg, var(--rainbow-5), var(--rainbow-6)); }
.dq-step-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.dq-step-desc { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; }

/* ── CUSTOM CANVAS ── */
.dq-custom-canvas {
  background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px; padding: 100px 5%;
  position: relative; overflow: hidden;
}
.dq-custom-canvas::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,151,42,0.15), transparent 70%);
  pointer-events: none;
}
.dq-custom-canvas-content { position: relative; z-index: 1; }
.dq-custom-canvas .dq-section-tag { color: var(--gold-light); }
.dq-custom-canvas .dq-section-title { color: white; }
.dq-custom-canvas .dq-section-desc { color: rgba(255,255,255,0.7); }
.dq-canvas-features { margin: 40px 0; display: flex; flex-direction: column; gap: 20px; }
.dq-canvas-feature { display: flex; align-items: flex-start; gap: 16px; }
.dq-canvas-feature-icon {
  width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.dq-canvas-feature-text strong { display: block; color: white; font-weight: 600; margin-bottom: 4px; }
.dq-canvas-feature-text span { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.dq-canvas-demo-wrap { position: relative; z-index: 1; }
.dq-canvas-demo {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 24px;
  padding: 32px; min-height: 360px; display: flex; flex-direction: column; gap: 20px;
}
.dq-canvas-demo-header { display: flex; align-items: center; gap: 8px; }
.dq-canvas-demo-dot { width: 12px; height: 12px; border-radius: 50%; }
.dq-canvas-elements { display: flex; flex-wrap: wrap; gap: 10px; }
.dq-canvas-el {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; padding: 6px 14px; font-size: 0.78rem; color: rgba(255,255,255,0.8);
  cursor: pointer; transition: all 0.2s;
}
.dq-canvas-el:hover, .dq-canvas-el.selected { background: var(--gold); border-color: var(--gold); color: white; }
.dq-canvas-preview {
  flex: 1; background: rgba(255,255,255,0.05); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; min-height: 180px; position: relative; overflow: hidden;
}
.dq-canvas-preview-label {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; font-size: 0.75rem; color: rgba(255,255,255,0.5);
}

/* ── ANNIVERSARY ── */
.dq-anniversary {
  background: linear-gradient(135deg, #fdf6e8 0%, #f5ede0 100%);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  padding: 100px 5%; position: relative; overflow: hidden;
}
.dq-anniversary::before {
  content: ''; position: absolute; top: -20%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,151,42,0.1), transparent 70%);
  pointer-events: none;
}
.dq-anniversary-visual { position: relative; }
.dq-anniversary-visual-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dq-anniversary-img {
  border-radius: 20px; overflow: hidden; aspect-ratio: 1;
  box-shadow: var(--shadow-md);
}
.dq-anniversary-img img { width: 100%; height: 100%; object-fit: cover; }
.dq-anniversary-img:first-child { grid-column: span 2; aspect-ratio: 2/1; }
.dq-anniversary-note {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--navy); color: white; border-radius: 16px; padding: 16px 20px;
  box-shadow: var(--shadow-lg); max-width: 200px;
}
.dq-anniversary-note-title { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 4px; }
.dq-anniversary-note-text { font-size: 0.75rem; opacity: 0.7; line-height: 1.4; }
.dq-anniversary-quote {
  margin: 32px 0; padding: 24px;
  background: rgba(184,151,42,0.08); border-radius: 16px; border-left: 4px solid var(--gold);
}
.dq-anniversary-quote p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.1rem; color: var(--navy); line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.dq-testimonials { background: var(--warm-white); }
.dq-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dq-testimonial-card {
  background: var(--cream); border-radius: 24px; padding: 32px;
  position: relative; transition: transform 0.3s, box-shadow 0.3s;
}
.dq-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dq-testimonial-quote { font-size: 3rem; color: var(--gold); opacity: 0.3; font-family: Georgia, serif; line-height: 1; margin-bottom: 16px; }
.dq-testimonial-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--text-dark);
  line-height: 1.7; margin-bottom: 24px; font-style: italic;
}
.dq-testimonial-author { display: flex; align-items: center; gap: 14px; }
.dq-testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 700; color: white; flex-shrink: 0;
}
.dq-testimonial-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.dq-testimonial-location { font-size: 0.78rem; color: var(--text-light); }
.dq-testimonial-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 4px; }
.dq-testimonial-card.featured { background: var(--navy); }
.dq-testimonial-card.featured .dq-testimonial-text { color: rgba(255,255,255,0.9); }
.dq-testimonial-card.featured .dq-testimonial-name { color: white; }
.dq-testimonial-card.featured .dq-testimonial-location { color: rgba(255,255,255,0.5); }

/* ── BLOG ── */
.dq-blog { background: var(--cream); }
.dq-blog-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.dq-blog-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 28px; }
.dq-blog-card { background: white; border-radius: 20px; overflow: hidden; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; }
.dq-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* The clickable <a> wraps the whole card's image+body — text-decoration:none
   on the outer .dq-blog-card article does NOT reach this nested link on its
   own (a descendant <a> keeps its own browser-default underline/color unless
   targeted directly), which is exactly why titles showed underlined blue text. */
.dq-blog-card > a {
  display: flex; flex-direction: column; height: 100%;
  text-decoration: none; color: inherit;
}
.dq-blog-img { aspect-ratio: 16/9; overflow: hidden; }
.dq-blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.dq-blog-card:hover .dq-blog-img img { transform: scale(1.05); }
.dq-blog-card.main .dq-blog-img { aspect-ratio: 4/3; }
.dq-blog-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.dq-blog-tag {
  display: inline-block; background: var(--cream); color: var(--gold);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 50px; padding: 3px 10px; margin-bottom: 10px;
}
.dq-blog-title {
  font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy) !important;
  margin-bottom: 8px; line-height: 1.4; text-decoration: none !important; font-style: normal;
}
.dq-blog-card:hover .dq-blog-title { color: var(--gold) !important; }
.dq-blog-card.main .dq-blog-title { font-size: 1.3rem; }
.dq-blog-excerpt {
  font-size: 0.85rem; color: var(--text-mid); line-height: 1.65;
  margin: 0 0 16px;
}
.dq-blog-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-light); margin-top: auto; }
.dq-blog-meta a { color: inherit; text-decoration: none; }

/* ── NEWSLETTER ── */
.dq-newsletter {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2050 100%);
  padding: 80px 5%; text-align: center; position: relative; overflow: hidden;
}
.dq-newsletter::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(184,151,42,0.12) 0%, transparent 40%),
                    radial-gradient(circle at 80% 50%, rgba(30,143,200,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.dq-newsletter-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.dq-newsletter-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); color: white; margin-bottom: 16px; }
.dq-newsletter-content p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 36px; line-height: 1.65; }
.dq-newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto; }
.dq-newsletter-input {
  flex: 1; padding: 14px 20px; border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px; background: rgba(255,255,255,0.08); color: white;
  font-size: 0.9rem; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color 0.2s;
}
.dq-newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.dq-newsletter-input:focus { border-color: var(--gold); }
.dq-newsletter-perks { display: flex; justify-content: center; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.dq-newsletter-perk { font-size: 0.82rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 6px; }
.dq-newsletter-perk::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── INSTAGRAM ── */
.dq-instagram { background: var(--warm-white); padding: 80px 5%; }
.dq-instagram-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.dq-instagram-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.dq-instagram-item {
  aspect-ratio: 1; border-radius: 16px; overflow: hidden;
  cursor: pointer; position: relative; transition: transform 0.3s;
}
.dq-instagram-item img { width: 100%; height: 100%; object-fit: cover; }
.dq-instagram-item::after {
  content: '📷'; position: absolute; inset: 0;
  background: rgba(44,53,96,0.7); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; opacity: 0; transition: opacity 0.3s;
}
.dq-instagram-item:hover { transform: scale(0.96); }
.dq-instagram-item:hover::after { opacity: 1; }

/* ── FOOTER ── */
#dq-footer { background: #0f1228; color: white; padding: 80px 5% 32px; }
.dq-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.dq-footer-brand-desc { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.7; margin: 16px 0 24px; max-width: 280px; }
.dq-footer-socials { display: flex; gap: 12px; }
.dq-social-btn {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; transition: all 0.2s; text-decoration: none; color: white;
}
.dq-social-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-2px); color: white; }
.dq-footer-col h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: white; margin-bottom: 20px; }
.dq-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.dq-footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.dq-footer-links a:hover { color: var(--gold-light); }
.dq-footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.dq-footer-contact-icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.dq-footer-contact-text { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.dq-footer-contact-text a { color: var(--gold-light); }

/* Single-line link row (website URL) — center the icon with the text
   instead of top-aligning it, since there's no wrapping paragraph here */
.dq-footer-contact-item--link { align-items: center; }
.dq-footer-contact-item--link .dq-footer-contact-icon { margin-top: 0; }
.dq-footer-contact-item--link .dq-footer-contact-text a {
  text-decoration: none; border-bottom: 1px solid rgba(184,151,42,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.dq-footer-contact-item--link .dq-footer-contact-text a:hover {
  color: white; border-color: rgba(255,255,255,0.5);
}
.dq-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.dq-footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.dq-footer-legal { display: flex; gap: 24px; }
.dq-footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.dq-footer-legal a:hover { color: var(--gold-light); }

/* ── SCROLL TO TOP ── */
#dq-scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%; background: var(--navy);
  color: white; border: none; font-size: 1.2rem; cursor: pointer;
  box-shadow: var(--shadow-md); transition: all 0.3s; opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
#dq-scroll-top.visible { opacity: 1; pointer-events: auto; }
#dq-scroll-top:hover { background: var(--gold); transform: translateY(-2px); }

/* ── FLOATING CART BUTTON ──
   Hidden until the cart has at least one item, then stays visible
   as a persistent shortcut. Pops with a little bounce whenever a
   product is added. Stacked directly above the scroll-to-top button
   so neither one ever overlaps the other. */
#dq-floating-cart {
  position: fixed; bottom: 92px; right: 32px; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); color: white; text-decoration: none;
  font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); transition: opacity 0.3s, transform 0.3s, background 0.2s;
  opacity: 0; transform: scale(0.4); pointer-events: none;
}
#dq-floating-cart.visible { opacity: 1; transform: scale(1); pointer-events: auto; }
#dq-floating-cart:hover { background: var(--navy); }
#dq-floating-cart.just-added { animation: dqCartPop 0.5s ease; }
@keyframes dqCartPop {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.25) rotate(-8deg); }
  60%  { transform: scale(0.95) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}
#dq-floating-cart .dq-cart-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; font-size: 0.7rem;
  border: 2px solid white;
}

/* On single product pages, the sticky Add-to-Cart bar occupies the
   bottom of the screen on mobile — lift both floating buttons clear
   of it so nothing overlaps. */
@media (max-width: 768px) {
  body.dq-single-product #dq-floating-cart { bottom: 148px; }
  body.dq-single-product #dq-scroll-top    { bottom: 88px; }
}

/* ── WOOCOMMERCE OVERRIDES ── */
.woocommerce #primary { padding-top: 100px; padding-left: 5%; padding-right: 5%; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-family: 'Playfair Display', serif; color: var(--navy); }
.woocommerce ul.products li.product .price { color: var(--navy); font-weight: 700; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
  background: var(--navy); color: white; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-weight: 600; transition: background 0.2s;
}
.woocommerce a.button:hover, .woocommerce button.button:hover { background: var(--gold); color: white; }
.woocommerce-breadcrumb { font-size: 0.85rem; color: var(--text-light); padding: 20px 0; }
.woocommerce div.product .product_title { font-family: 'Playfair Display', serif; color: var(--navy); font-size: 2rem; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--navy); font-size: 1.4rem; font-weight: 700; }
.woocommerce #respond input#submit, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background: var(--gold); color: white; border-radius: 50px;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button.alt:hover { background: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .dq-products-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .dq-hero {
    min-height: 0;
    padding: 120px 0 60px; text-align: center;
    justify-content: center;
  }
  /* Image stays as a full-section background — just make the
     overlay more uniform since text now spans the full width
     instead of sitting only in a left-hand column. */
  .dq-hero-image-fade {
    background: linear-gradient(
      to bottom,
      rgba(245,240,232,0.65) 0%,
      rgba(245,240,232,0.58) 60%,
      rgba(245,240,232,0.52) 100%
    );
  }
  .dq-hero-content { max-width: 640px; margin: 0 auto; padding: 0 6%; }
  .dq-hero-actions { justify-content: center; }
  .dq-hero-stats { justify-content: center; }
  .dq-hero-desc { margin-left: auto; margin-right: auto; }
  .dq-categories-grid { grid-template-columns: 1fr 1fr; }
  .dq-cat-card.featured { grid-column: span 2; }
  .dq-products-grid { grid-template-columns: repeat(3, 1fr); }
  .dq-custom-canvas { grid-template-columns: 1fr; gap: 40px; }
  .dq-canvas-demo-wrap { display: none; }
  .dq-anniversary { grid-template-columns: 1fr; }
  .dq-anniversary-visual { display: none; }
  .dq-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .dq-steps-grid::before { display: none; }
  .dq-blog-grid { grid-template-columns: 1fr 1fr; }
  .dq-footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .dq-instagram-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .dq-nav-links { display: none; }
  .dq-nav-actions { display: flex; }
  .dq-nav-cart {
    padding: 0; width: 42px; height: 42px; border-radius: 50%;
    justify-content: center; font-size: 1.05rem;
  }
  .dq-nav-cart .dq-nav-cart-label { display: none; }
  .dq-cart-badge {
    position: absolute; top: -4px; right: -4px;
    width: 17px; height: 17px; font-size: 0.62rem;
  }
  .dq-hamburger { display: flex; }
  .dq-hero { padding: 110px 0 50px; }
  .dq-hero-image-fade {
    background: rgba(245,240,232,0.62);
  }
  .dq-hero-rating-pill {
    top: 20px; right: 20px; bottom: auto;
    padding: 7px 14px 7px 10px;
  }
  .dq-hero-rating-num { font-size: 0.92rem; }
  .dq-hero-rating-text { display: none; } /* keep the corner badge compact on mobile — number + star only */
  .dq-hero-eyebrow { font-size: 0.7em; }
  .dq-hero-stats { gap: 14px; }
  .dq-hero-stat-num { font-size: 1.5rem; }
  .dq-hero-stat-label { font-size: 0.62rem; letter-spacing: 0.03em; }
  .dq-hero-stat-thumb { width: 70px; height: 48px; border-radius: 10px; }
  .dq-categories-grid { grid-template-columns: 1fr; }
  .dq-cat-card.featured { grid-column: span 1; }
  .dq-products-grid { grid-template-columns: repeat(2, 1fr); }
  .dq-testimonials-grid { grid-template-columns: 1fr; }
  .dq-trust-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    justify-content: start; gap: 22px 16px; padding: 32px 8%;
  }
  .dq-trust-item { justify-content: flex-start; }
  .dq-trust-label { font-size: 0.8rem; }
  .dq-newsletter-form { flex-direction: column; }
  .dq-footer-top { grid-template-columns: 1fr; }
  .dq-instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .dq-blog-grid { grid-template-columns: 1fr; }
  .dq-section { padding: 70px 5%; }
}
@media (max-width: 480px) {
  .dq-products-grid { grid-template-columns: 1fr; }
  .dq-hero-title { font-size: 2.2rem; }
  .dq-hero-image-fade { background: rgba(245,240,232,0.68); }
  .dq-hero-rating-pill { padding: 6px 12px 6px 9px; top: 16px; right: 16px; }
  .dq-hero-rating-num { font-size: 0.85rem; }
  .dq-hero-stat-thumb { display: none; }
}

/* ============================================================
   FIX PATCH v1.0.1
   – Nav menu WP markup alignment
   – WooCommerce add-to-cart button matching HTML design
   – Default 5-star rating display
   ============================================================ */

/* ── NAV MENU: WP outputs ul.dq-nav-links > li.menu-item > a
   The walker removes extra li classes but WP still wraps in its own ul.
   Ensure the ul itself has no default list styles and li items are inline. ── */
ul.dq-nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 36px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
ul.dq-nav-links li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
ul.dq-nav-links li a,
ul.dq-nav-links > li > a {
  text-decoration: none !important;
  color: var(--text-mid) !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  transition: color 0.2s !important;
  position: relative !important;
  padding: 0 !important;
  display: inline-block !important;
  font-family: 'DM Sans', sans-serif !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
}
ul.dq-nav-links li a::after,
ul.dq-nav-links > li > a::after {
  content: '' !important;
  position: absolute !important;
  bottom: -4px !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--gold) !important;
  transition: width 0.3s !important;
  border-radius: 2px !important;
}
ul.dq-nav-links li a:hover,
ul.dq-nav-links li.current-menu-item > a,
ul.dq-nav-links li.current_page_item > a,
ul.dq-nav-links li.current-menu-ancestor > a {
  color: var(--navy) !important;
}
ul.dq-nav-links li a:hover::after,
ul.dq-nav-links li.current-menu-item > a::after,
ul.dq-nav-links li.current_page_item > a::after,
ul.dq-nav-links li.current-menu-ancestor > a::after {
  width: 100% !important;
}
/* ── DROPDOWN NAVIGATION ── */

/* Parent item positioning */
ul.dq-nav-links li.dq-has-children {
  position: relative;
}

/* Chevron arrow */
.dq-chevron {
  font-size: 0.65rem;
  margin-left: 4px;
  display: inline-block;
  transition: transform 0.25s ease;
  vertical-align: middle;
  opacity: 0.7;
}
ul.dq-nav-links li.dq-has-children.dq-open .dq-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown panel */
ul.dq-nav-links .dq-dropdown {
  list-style: none;
  margin: 0; padding: 10px 8px;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(44,53,96,0.14), 0 2px 8px rgba(44,53,96,0.08);
  border: 1px solid rgba(44,53,96,0.1);
  z-index: 2000;
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}

/* Small triangle pointer */
ul.dq-nav-links .dq-dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  filter: drop-shadow(0 -2px 2px rgba(44,53,96,0.08));
}

/* Show when JS adds .dq-open (mouseenter/keyboard/click — see dquills-main.js).
   Deliberately NOT CSS :hover — a pure-hover trigger breaks the instant the
   cursor crosses the gap between the link and the panel, since pointer-events
   flips to none immediately and the fading-out panel becomes unhoverable,
   creating a feedback loop that snaps the menu shut before you can reach it. */
ul.dq-nav-links li.dq-has-children.dq-open > .dq-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
ul.dq-nav-links .dq-dropdown li {
  display: block;
}
ul.dq-nav-links .dq-dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  border-radius: 10px;
}
ul.dq-nav-links .dq-dropdown li a:hover,
ul.dq-nav-links .dq-dropdown li.current-menu-item a {
  background: var(--cream);
  color: var(--navy);
  font-weight: 600;
}
ul.dq-nav-links .dq-dropdown li:first-child a { border-radius: 10px; }
ul.dq-nav-links .dq-dropdown li:last-child  a { border-radius: 10px; }

/* Gold accent on current item */
ul.dq-nav-links .dq-dropdown li.current-menu-item a {
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 15px;
}

/* ── WOOCOMMERCE ADD-TO-CART BUTTON – match HTML .dq-add-to-cart exactly ── */
.dq-product-card .button.add_to_cart_button,
.dq-product-card .button.product_type_simple,
.dq-product-card .button.product_type_variable,
.dq-product-card .button.product_type_grouped,
.dq-product-card a.button,
.dq-product-card button.button,
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button {
  background: var(--navy) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 6px 14px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
  font-family: 'DM Sans', sans-serif !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
  box-shadow: none !important;
  /* Remove any WC default gradients/outlines */
  background-image: none !important;
  outline: none !important;
  white-space: nowrap !important;
}
.dq-product-card .button.add_to_cart_button:hover,
.dq-product-card .button.product_type_simple:hover,
.dq-product-card a.button:hover,
.dq-product-card button.button:hover,
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
  background: var(--gold) !important;
  color: white !important;
  transform: scale(1.05) !important;
  box-shadow: none !important;
  background-image: none !important;
}
/* Loading state */
.dq-product-card .button.loading,
.dq-product-card .button.added {
  background: var(--rainbow-4) !important;
  color: white !important;
}
.dq-product-card .button.loading::after { display: none !important; }
/* WC adds a checkmark span when added */
.dq-product-card .added_to_cart {
  display: none !important;
}

/* ── DEFAULT 5-STAR RATING (when no reviews yet) ── */
.dq-stars-default {
  color: var(--gold-light);
  font-size: 0.75rem;
  letter-spacing: 1px;
  display: inline-block;
}
/* WooCommerce star rating alignment in product cards */
.dq-product-card .star-rating {
  font-size: 0.75rem !important;
  color: var(--gold-light) !important;
  margin: 0 0 10px 0 !important;
  float: none !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
  width: auto !important;
}
.dq-product-card .star-rating::before,
.dq-product-card .star-rating span::before {
  color: var(--gold-light) !important;
}

/* ── MOBILE: hide nav list properly ── */
@media (max-width: 768px) {
  ul.dq-nav-links { display: none !important; }
}

/* ── ADD-TO-CART WRAP (WC template outputs inside this) ── */
.dq-add-to-cart-wrap { display: inline-flex; }
.dq-add-to-cart-wrap a,
.dq-add-to-cart-wrap button {
  background: var(--navy) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 7px 16px !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.2s !important;
  font-family: 'DM Sans', sans-serif !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1.2 !important;
  letter-spacing: 0.02em !important;
  box-shadow: none !important;
  background-image: none !important;
  white-space: nowrap !important;
}
.dq-add-to-cart-wrap a:hover,
.dq-add-to-cart-wrap button:hover {
  background: var(--gold) !important;
  color: white !important;
  transform: scale(1.05) !important;
  box-shadow: none !important;
  background-image: none !important;
}
.dq-add-to-cart-wrap .added { background: var(--rainbow-4) !important; }
.dq-add-to-cart-wrap .added_to_cart { display: none !important; }

/* ============================================================
   INNER PAGE LAYOUT (page.php)
   ============================================================ */

/* ── PAGE HERO ── */
.dq-page-hero {
  position: relative;
  overflow: hidden;
  margin-top: 72px; /* navbar height */
}

/* Plain (no featured image) */
.dq-page-hero--plain {
  background: linear-gradient(135deg, var(--cream) 0%, rgba(184,151,42,0.08) 100%);
  padding: 64px 5% 52px;
  border-bottom: 1px solid var(--border);
}

/* With featured image */
.dq-page-hero--has-image {
  padding: 0;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
}
.dq-page-hero--has-image::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--page-hero-bg) center/cover no-repeat;
  z-index: 0;
}
.dq-page-hero--has-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(44,53,96,0.15) 0%,
    rgba(44,53,96,0.55) 60%,
    rgba(44,53,96,0.80) 100%
  );
  z-index: 1;
}
.dq-page-hero--has-image .dq-page-hero-inner {
  padding: 48px 5% 44px;
}
.dq-page-hero--has-image .dq-page-hero-title {
  color: white;
}
.dq-page-hero--has-image .dq-page-breadcrumb,
.dq-page-hero--has-image .dq-page-breadcrumb a,
.dq-page-hero--has-image .dq-page-breadcrumb span {
  color: rgba(255,255,255,0.75);
}
.dq-page-hero--has-image .dq-page-breadcrumb a:hover { color: var(--gold-light); }

.dq-page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.dq-page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 14px;
}

/* ── BREADCRUMB ── */
.dq-page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-light);
}
.dq-page-breadcrumb a {
  color: var(--text-mid); text-decoration: none; transition: color 0.2s;
}
.dq-page-breadcrumb a:hover { color: var(--gold); }
.dq-page-breadcrumb span[aria-hidden] { opacity: 0.5; }

/* ── PAGE BODY ── */
.dq-page-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 5% 90px;
}
.dq-page-article { }

/* ── RICH CONTENT TYPOGRAPHY ── */
.dq-page-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
}

/* Headings inside page content */
.dq-page-content h1,
.dq-page-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin: 48px 0 18px;
  line-height: 1.2;
}
.dq-page-content h1 { font-size: clamp(1.6rem, 2.5vw, 2rem); }
.dq-page-content h2 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
.dq-page-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin: 32px 0 12px;
}
.dq-page-content h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin: 24px 0 8px;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* Paragraphs */
.dq-page-content p {
  margin: 0 0 20px;
  color: var(--text-mid);
}
.dq-page-content p:last-child { margin-bottom: 0; }

/* Links */
.dq-page-content a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(184,151,42,0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}
.dq-page-content a:hover {
  color: var(--navy);
  text-decoration-color: rgba(44,53,96,0.5);
}

/* Blockquote */
.dq-page-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 14px 14px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.7;
}
.dq-page-content blockquote p { color: var(--navy); margin: 0; }

/* Images */
.dq-page-content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 24px 0;
  box-shadow: 0 4px 24px rgba(44,53,96,0.1);
}
.dq-page-content figure {
  margin: 28px 0;
  text-align: center;
}
.dq-page-content figcaption {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 8px;
  font-style: italic;
}

/* Lists */
.dq-page-content ul,
.dq-page-content ol {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.dq-page-content ul li,
.dq-page-content ol li {
  position: relative;
  padding: 5px 0 5px 26px;
  color: var(--text-mid);
}
.dq-page-content ul li::before {
  content: '✦';
  position: absolute; left: 0; top: 6px;
  color: var(--gold);
  font-size: 0.65rem;
}
.dq-page-content ol {
  counter-reset: dq-ol;
}
.dq-page-content ol li::before {
  counter-increment: dq-ol;
  content: counter(dq-ol) '.';
  position: absolute; left: 0;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
}

/* Tables */
.dq-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.9rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,53,96,0.08);
}
.dq-page-content thead th {
  background: var(--navy);
  color: white;
  padding: 12px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.dq-page-content tbody tr { border-bottom: 1px solid var(--border); }
.dq-page-content tbody tr:last-child { border-bottom: none; }
.dq-page-content tbody tr:nth-child(even) { background: rgba(245,240,232,0.4); }
.dq-page-content tbody tr:hover { background: rgba(245,240,232,0.7); }
.dq-page-content td,
.dq-page-content tbody th {
  padding: 11px 18px;
  color: var(--text-mid);
  vertical-align: top;
}

/* Horizontal rule */
.dq-page-content hr {
  border: none;
  border-top: 2px solid var(--border);
  margin: 40px 0;
}

/* Columns — Gutenberg .wp-block-columns */
.dq-page-content .wp-block-columns {
  gap: 40px;
  margin: 28px 0;
}

/* Buttons inside pages */
.dq-page-content .wp-block-button__link,
.dq-page-content a.button {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: white !important;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.25s;
  margin-top: 8px;
}
.dq-page-content .wp-block-button__link:hover,
.dq-page-content a.button:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,151,42,0.3);
}

/* Contact form styling */
.dq-page-content .wpcf7 input[type="text"],
.dq-page-content .wpcf7 input[type="email"],
.dq-page-content .wpcf7 textarea,
.dq-page-content input[type="text"],
.dq-page-content input[type="email"],
.dq-page-content textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 8px;
}
.dq-page-content input:focus,
.dq-page-content textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(44,53,96,0.08);
}
.dq-page-content textarea { min-height: 130px; resize: vertical; }
.dq-page-content .wpcf7-submit,
.dq-page-content input[type="submit"] {
  background: var(--navy); color: white;
  border: none; border-radius: 50px;
  padding: 12px 32px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s;
}
.dq-page-content .wpcf7-submit:hover,
.dq-page-content input[type="submit"]:hover { background: var(--gold); }

/* Edit link */
.dq-page-edit-link {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
}
.dq-page-edit-link a { color: var(--text-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .dq-page-hero--plain { padding: 48px 5% 36px; }
  .dq-page-hero--has-image { min-height: 260px; }
  .dq-page-hero--has-image .dq-page-hero-inner { padding: 36px 5% 32px; }
  .dq-page-body { padding: 40px 5% 64px; }
  .dq-page-content h2 { font-size: 1.35rem; margin-top: 36px; }
}

/* ============================================================
   CONTACT US PAGE  (page-contact.php)
   ============================================================ */

/* ── Hero (compact) ── */
.dq-contact-hero {
  position: relative; overflow: hidden;
  margin-top: 72px;
  min-height: 280px;
  display: flex; align-items: flex-end;
  background: linear-gradient(135deg, var(--navy) 0%, #3d4a7a 100%);
}
.dq-contact-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: var(--hero-img, none) center/cover no-repeat;
  opacity: 0.25;
}
.dq-contact-hero-inner {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  padding: 48px 5% 44px;
  width: 100%; text-align: center;
}

/* ── Contact wrapper ── */
.dq-contact-wrap {
  max-width: 1000px; margin: 0 auto;
  padding: 64px 5% 100px;
}
.dq-contact-content { }

/* Headings */
.dq-contact-content h1,
.dq-contact-content h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy); margin: 0 0 24px;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
}
.dq-contact-content h3 {
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold); margin: 0 0 8px;
}

/* Paragraphs */
.dq-contact-content p {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--text-mid); margin: 0 0 14px;
}

/* Contact details columns */
.dq-contact-content .wp-block-columns {
  gap: 48px; margin: 32px 0; align-items: start;
}

/* Contact info boxes */
.dq-contact-content .wp-block-column {
  background: var(--cream);
  border-radius: 16px; padding: 28px 24px;
  border: 1px solid var(--border);
}

/* Separator */
.dq-contact-content .wp-block-separator,
.dq-contact-content hr {
  border: none; border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* Images */
.dq-contact-content img {
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(44,53,96,0.1);
  max-width: 100%; height: auto;
}

/* Form section heading */
.dq-contact-content h2 + .wp-block-group,
.dq-contact-content h2 + form {
  margin-top: 24px;
}

/* Form inputs */
.dq-contact-content input[type="text"],
.dq-contact-content input[type="email"],
.dq-contact-content input[type="tel"],
.dq-contact-content textarea,
.dq-contact-content .wpcf7 input[type="text"],
.dq-contact-content .wpcf7 input[type="email"],
.dq-contact-content .wpcf7 textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  outline: none;
  margin-bottom: 14px;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dq-contact-content input:focus,
.dq-contact-content textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(44,53,96,0.08);
}
.dq-contact-content textarea,
.dq-contact-content .wpcf7 textarea { min-height: 140px; resize: vertical; }

/* Labels */
.dq-contact-content label,
.dq-contact-content .wpcf7 label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}

/* Submit button */
.dq-contact-content input[type="submit"],
.dq-contact-content .wpcf7-submit,
.dq-contact-content button[type="submit"] {
  background: var(--navy); color: white;
  border: none; border-radius: 50px;
  padding: 13px 36px; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: all 0.25s; display: inline-block;
  margin-top: 6px;
}
.dq-contact-content input[type="submit"]:hover,
.dq-contact-content .wpcf7-submit:hover { background: var(--gold); }

/* Buttons */
.dq-contact-content .wp-block-button .wp-block-button__link {
  background: var(--navy) !important; color: white !important;
  border-radius: 50px !important; padding: 12px 28px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-weight: 600 !important; font-size: 0.9rem !important;
  text-decoration: none !important; border: none !important;
  transition: all 0.25s !important;
}
.dq-contact-content .wp-block-button .wp-block-button__link:hover {
  background: var(--gold) !important;
}

/* Link styling */
.dq-contact-content a {
  color: var(--gold); font-weight: 500;
}
.dq-contact-content a:hover { color: var(--navy); }

/* Group blocks */
.dq-contact-content .wp-block-group {
  margin: 32px 0;
}

/* Map embed */
.dq-contact-content .wp-block-embed,
.dq-contact-content iframe {
  border-radius: 16px; overflow: hidden;
  width: 100% !important;
  box-shadow: 0 4px 20px rgba(44,53,96,0.1);
  margin: 28px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .dq-contact-hero { min-height: 200px; }
  .dq-contact-wrap { padding: 40px 5% 72px; }
  .dq-contact-content .wp-block-columns { flex-direction: column; gap: 20px; }
  .dq-contact-content .wp-block-column { padding: 20px 18px; }
}

/* ============================================================
   SHARED BUTTON STYLES (used across about/contact pages)
   ============================================================ */
.dq-btn-primary-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy); color: white;
  border-radius: 50px; padding: 14px 32px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.25s; white-space: nowrap;
}
.dq-btn-primary-pill:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,151,42,0.3); color: white; }
.dq-btn-outline-pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy); border-radius: 50px; padding: 12px 30px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: all 0.25s; white-space: nowrap;
}
.dq-btn-outline-pill:hover { background: var(--navy); color: white; }
.dq-btn-outline-pill-light {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.6); border-radius: 50px; padding: 12px 30px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  text-decoration: none; cursor: pointer; transition: all 0.25s;
}
.dq-btn-outline-pill-light:hover { background: white; color: var(--navy); }
.dq-btn-sm { padding: 10px 22px !important; font-size: 0.82rem !important; }
.dq-btn-full { width: 100%; }

/* ============================================================
   ABOUT US PAGE  (page-about.php)
   ============================================================ */

/* ── Hero ── */
.dq-about-hero {
  position: relative; overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy) 0%, #2a3460 40%, #4a3060 100%);
  margin-top: 72px;
}
.dq-about-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,151,42,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
/* Optional custom background photo — added when the admin uploads one
   via Customize → About Us Page → Hero → Background Image */
.dq-about-hero--has-bg {
  background: var(--dq-about-hero-bg) center/cover no-repeat;
}
.dq-about-hero--has-bg::before {
  background: linear-gradient(145deg,
    rgba(44,53,96,0.82) 0%,
    rgba(42,52,96,0.72) 40%,
    rgba(74,48,96,0.75) 100%);
}
.dq-about-hero-inner {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 5%;
  max-width: 760px;
}
.dq-about-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin: 0 0 16px; display: block;
}
.dq-about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.1; color: white;
  margin: 0 0 20px;
}
.dq-about-hero-title em { color: var(--gold); font-style: italic; }
.dq-about-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin: 0 0 36px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.dq-about-hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.dq-about-hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4); font-size: 1.2rem;
  animation: dq-bounce 2s infinite;
}
@keyframes dq-bounce { 0%,100%{transform:translateX(-50%) translateY(0);} 50%{transform:translateX(-50%) translateY(6px);} }

/* ── Stats strip ── */
.dq-about-intro-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(44,53,96,0.06);
}
.dq-about-intro-strip-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 5%; gap: 0;
}
.dq-about-stat { text-align: center; flex: 1; padding: 0 20px; }
.dq-about-stat-num {
  display: block; font-family: 'Playfair Display',serif;
  font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.dq-about-stat-label {
  display: block; font-size: 0.75rem; font-weight: 500;
  color: var(--text-light); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.07em;
}
.dq-about-stat-divider {
  width: 1px; height: 40px; background: var(--border); flex-shrink: 0;
}

/* ── Section shared ── */
.dq-about-section { padding: 96px 5%; }
.dq-about-section-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.dq-about-section-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 14px; display: block;
}
.dq-about-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin: 0 0 28px;
}
.dq-about-section-title em { color: var(--gold); font-style: italic; }

/* ── Story section ── */
.dq-about-story { background: var(--cream); }
.dq-about-text-col p {
  font-size: 0.975rem; line-height: 1.85; color: var(--text-mid); margin: 0 0 18px;
}
.dq-about-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--navy); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s; margin-top: 8px;
}
.dq-about-link-arrow:hover { color: var(--gold); }

.dq-about-image-col { position: relative; }
.dq-about-img-card { border-radius: 24px; overflow: hidden; }
.dq-about-img-card--tall { aspect-ratio: 4/5; }
.dq-about-img-placeholder {
  width: 100%; height: 100%; min-height: 380px;
  background: linear-gradient(145deg, rgba(44,53,96,0.07) 0%, rgba(184,151,42,0.08) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; border: 2px dashed rgba(44,53,96,0.15); border-radius: 24px;
}
.dq-about-img-placeholder span { font-size: 3rem; }
.dq-about-img-placeholder p { font-size: 0.82rem; color: var(--text-light); margin: 0; font-style: italic; }
.dq-about-img-placeholder--story { background: linear-gradient(145deg, rgba(184,151,42,0.06) 0%, rgba(44,53,96,0.06) 100%); }

.dq-about-img-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy); color: white;
  border-radius: 16px; padding: 16px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  box-shadow: 0 8px 24px rgba(44,53,96,0.25);
}
.dq-about-img-float span { font-size: 1.2rem; }
.dq-about-img-float strong { font-size: 1.1rem; font-family: 'Playfair Display', serif; }
.dq-about-img-float small { font-size: 0.72rem; opacity: 0.65; }

/* ── Craft divider ── */
.dq-about-divider-bar {
  background: var(--navy); padding: 28px 5%;
}
.dq-about-divider-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 24px;
  color: rgba(255,255,255,0.55); font-size: 0.85rem; letter-spacing: 0.05em;
}
.dq-about-divider-text { color: rgba(255,255,255,0.8); font-style: italic; }

/* ── What we make ── */
.dq-about-craft { background: white; }
.dq-about-craft-inner { max-width: 1100px; margin: 0 auto; }
.dq-about-craft-lead {
  max-width: 680px; margin: 0 auto 56px; text-align: center;
  font-size: 1rem; line-height: 1.8; color: var(--text-mid);
}
.dq-about-craft-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.dq-about-craft-card {
  padding: 32px 24px; border-radius: 20px;
  background: var(--cream); border: 1px solid var(--border);
  text-align: center; transition: transform 0.25s, box-shadow 0.25s;
}
.dq-about-craft-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,53,96,0.1); }
.dq-about-craft-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.dq-about-craft-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.1rem;
  color: var(--navy); margin: 0 0 10px;
}
.dq-about-craft-card p { font-size: 0.875rem; line-height: 1.6; color: var(--text-mid); margin: 0; }

/* ── Our Promise (dark section) ── */
.dq-about-promise {
  background: var(--navy); padding: 96px 5%;
}
.dq-about-promise-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.dq-about-promise .dq-about-section-title { color: white; }
.dq-about-promise-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 52px;
}
.dq-about-promise-item {
  padding: 28px 20px; border-radius: 18px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  text-align: center; transition: background 0.25s;
}
.dq-about-promise-item:hover { background: rgba(255,255,255,0.1); }
.dq-about-promise-icon { font-size: 2rem; display: block; margin-bottom: 14px; }
.dq-about-promise-item h4 {
  color: var(--gold); font-size: 0.95rem; font-weight: 700;
  margin: 0 0 10px; font-family: 'DM Sans', sans-serif;
}
.dq-about-promise-item p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin: 0; }

/* ── Artist / Meet the Team ── */
.dq-about-artist { background: var(--cream); }
.dq-about-artist-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start;
}
.dq-about-artist-image { position: relative; }
.dq-about-artist-img-wrap {
  border-radius: 24px; overflow: hidden; aspect-ratio: 3/4;
}
.dq-about-artist-placeholder {
  width: 100%; height: 100%; min-height: 420px;
  background: linear-gradient(145deg, rgba(184,151,42,0.08) 0%, rgba(44,53,96,0.08) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; border: 2px dashed rgba(44,53,96,0.15);
}
.dq-about-artist-placeholder span { font-size: 4rem; }
.dq-about-artist-placeholder p { font-size: 0.85rem; color: var(--text-light); margin: 0; font-style: italic; }
.dq-about-artist-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--gold); color: white; border-radius: 14px;
  padding: 14px 18px; display: flex; flex-direction: column; gap: 2px;
  box-shadow: 0 6px 20px rgba(184,151,42,0.4);
}
.dq-about-artist-badge span { font-size: 1rem; }
.dq-about-artist-badge strong { font-size: 0.85rem; font-weight: 700; }

.dq-about-artist-content { padding-top: 8px; }
.dq-about-artist-role {
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: -18px 0 24px; display: block;
}
.dq-about-artist-content p {
  font-size: 0.975rem; line-height: 1.85; color: var(--text-mid); margin: 0 0 16px;
}
.dq-about-artist-quote {
  border-left: 4px solid var(--gold);
  background: white; border-radius: 0 14px 14px 0;
  padding: 18px 22px; margin: 24px 0 32px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-size: 1.15rem;
  color: var(--navy); line-height: 1.65;
}

/* ── CTA ── */
.dq-about-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #2a3460 100%);
  padding: 100px 5%; text-align: center;
}
.dq-about-cta-inner { max-width: 640px; margin: 0 auto; }
.dq-about-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: white;
  margin: 14px 0 20px; line-height: 1.15;
}
.dq-about-cta h2 em { color: var(--gold); font-style: italic; }
.dq-about-cta p { color: rgba(255,255,255,0.7); font-size: 1rem; margin: 0 0 36px; }
.dq-about-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* About responsive */
@media (max-width: 1024px) {
  .dq-about-craft-grid { grid-template-columns: repeat(2, 1fr); }
  .dq-about-promise-grid { grid-template-columns: repeat(2, 1fr); }
  .dq-about-artist-inner { grid-template-columns: 1fr; gap: 40px; }
  .dq-about-artist-img-wrap { max-width: 320px; }
}
@media (max-width: 768px) {
  .dq-about-hero { min-height: 460px; }
  .dq-about-section { padding: 64px 5%; }
  .dq-about-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .dq-about-intro-strip-inner { flex-wrap: wrap; gap: 24px; }
  .dq-about-stat-divider { display: none; }
  .dq-about-stat { flex: 0 0 calc(50% - 12px); }
  .dq-about-craft-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dq-about-promise-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .dq-about-img-float { display: none; }
  .dq-about-cta { padding: 72px 5%; }
}
@media (max-width: 480px) {
  .dq-about-craft-grid { grid-template-columns: 1fr; }
  .dq-about-promise-grid { grid-template-columns: 1fr; }
  .dq-about-hero-actions { flex-direction: column; align-items: center; }
}

/* ============================================================
   CONTACT US PAGE  (page-contact.php)
   ============================================================ */

/* ── Hero ── */
.dq-contact-hero-new {
  position: relative; overflow: hidden;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #1a2040 0%, var(--navy) 50%, #2d1a40 100%);
  margin-top: 72px;
}
.dq-contact-hero-new::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(184,151,42,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.dq-contact-hero-new-inner {
  position: relative; z-index: 2; text-align: center; padding: 80px 5%;
  max-width: 680px;
}
.dq-contact-hero-new .dq-about-hero-sub { margin-bottom: 0; }

/* ── Main layout ── */
.dq-contact-main { background: var(--cream); padding: 80px 5%; }
.dq-contact-main-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}

/* ── Contact details column ── */
.dq-contact-details-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--navy); margin: 0 0 32px;
}
.dq-contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.dq-contact-info-card {
  background: white; border-radius: 16px; padding: 20px 18px;
  display: flex; align-items: flex-start; gap: 14px;
  border: 1px solid var(--border); box-shadow: 0 2px 10px rgba(44,53,96,0.06);
  transition: box-shadow 0.2s;
}
.dq-contact-info-card:hover { box-shadow: 0 6px 20px rgba(44,53,96,0.1); }
.dq-contact-info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.dq-contact-info-card h4 {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold); margin: 0 0 5px;
}
.dq-contact-info-card p { font-size: 0.9rem; color: var(--text-dark); margin: 0; }
.dq-contact-info-card a { color: var(--navy); text-decoration: none; font-weight: 500; }
.dq-contact-info-card a:hover { color: var(--gold); }

/* Wholesale CTA card */
.dq-contact-wholesale {
  background: var(--navy); border-radius: 20px; padding: 28px 26px;
  box-shadow: 0 8px 32px rgba(44,53,96,0.2);
}
.dq-contact-wholesale-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 10px; display: block;
}
.dq-contact-wholesale h3 {
  font-family: 'Playfair Display', serif; font-size: 1.3rem;
  color: white; margin: 0 0 12px; line-height: 1.3;
}
.dq-contact-wholesale p { font-size: 0.875rem; color: rgba(255,255,255,0.68); line-height: 1.65; margin: 0 0 20px; }

/* ── Form column ── */
.dq-contact-form-card {
  background: white; border-radius: 24px; padding: 40px 36px;
  box-shadow: 0 4px 28px rgba(44,53,96,0.09);
  border: 1px solid var(--border);
}
.dq-contact-form-title {
  font-family: 'Playfair Display', serif; font-size: 1.6rem;
  color: var(--navy); margin: 0 0 6px;
}
.dq-contact-form-sub {
  font-size: 0.85rem; color: var(--text-light); margin: 0 0 28px;
}
.dq-contact-field { margin-bottom: 18px; }
.dq-contact-field label,
.dq-contact-form-card label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.dq-contact-field label span { color: var(--gold); }
.dq-contact-native-form input[type="text"],
.dq-contact-native-form input[type="email"],
.dq-contact-native-form textarea,
.dq-contact-form-card input[type="text"],
.dq-contact-form-card input[type="email"],
.dq-contact-form-card input[type="tel"],
.dq-contact-form-card textarea,
.dq-contact-form-card .wpcf7-form input:not([type="submit"]),
.dq-contact-form-card .wpcf7-form textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 12px 15px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text-dark); background: var(--cream);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  display: block;
}
.dq-contact-form-card input:focus,
.dq-contact-native-form input:focus,
.dq-contact-form-card textarea:focus,
.dq-contact-native-form textarea:focus {
  border-color: var(--navy); background: white;
  box-shadow: 0 0 0 3px rgba(44,53,96,0.08);
}
.dq-contact-form-card textarea,
.dq-contact-native-form textarea { min-height: 130px; resize: vertical; }
.dq-contact-form-card input[type="submit"],
.dq-contact-form-card .wpcf7-submit,
.dq-contact-native-form button[type="submit"] {
  background: var(--navy); color: white; border: none;
  border-radius: 50px; padding: 14px 36px; width: 100%;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; margin-top: 6px;
}
.dq-contact-form-card input[type="submit"]:hover,
.dq-contact-form-card .wpcf7-submit:hover,
.dq-contact-native-form button[type="submit"]:hover { background: var(--gold); }
.wpcf7-form p { margin-bottom: 14px !important; }

/* ── FAQ ── */
.dq-contact-faq { background: white; padding: 80px 5%; }
.dq-contact-faq-inner { max-width: 1100px; margin: 0 auto; }
.dq-contact-faq h2 {
  font-family: 'Playfair Display', serif; font-size: 1.9rem;
  color: var(--navy); margin: 0 0 44px; text-align: center;
}
.dq-faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.dq-faq-item {
  background: var(--cream); border-radius: 18px; padding: 28px 26px;
  border: 1px solid var(--border); transition: box-shadow 0.2s;
}
.dq-faq-item:hover { box-shadow: 0 8px 28px rgba(44,53,96,0.08); }
.dq-faq-item h4 {
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  color: var(--navy); margin: 0 0 10px;
}
.dq-faq-item p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* Contact responsive */
@media (max-width: 1024px) {
  .dq-contact-main-inner { grid-template-columns: 1fr; gap: 40px; }
  .dq-contact-form-card { padding: 32px 28px; }
}
@media (max-width: 768px) {
  .dq-contact-hero-new { min-height: 300px; }
  .dq-contact-main { padding: 56px 5%; }
  .dq-contact-info-cards { grid-template-columns: 1fr; }
  .dq-contact-faq { padding: 56px 5%; }
  .dq-faq-grid { grid-template-columns: 1fr; }
  .dq-contact-form-card { padding: 24px 20px; }
}

/* ── Contact form enhancements ── */
.dq-form-notice {
  padding: 14px 18px; border-radius: 12px;
  font-size: 0.875rem; font-weight: 500; margin-bottom: 22px;
  display: flex; align-items: flex-start; gap: 10px; line-height: 1.5;
}
.dq-form-notice--success {
  background: #eaf7ef; color: #1a6b3a;
  border: 1px solid rgba(26,107,58,0.25);
}
.dq-form-notice--error {
  background: #fff3f0; color: #c0392b;
  border: 1px solid rgba(192,57,43,0.25);
}

.dq-contact-field select {
  width: 100%;
  border: 1.5px solid var(--border); border-radius: 12px;
  padding: 12px 15px; font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text-dark); background: var(--cream);
  outline: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232c3560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dq-contact-field select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(44,53,96,0.08);
  background-color: white;
}

.dq-field-hint {
  font-size: 0.72rem; color: var(--text-light);
  display: block; margin-top: 4px;
}
.dq-optional {
  font-size: 0.72rem; font-weight: 400;
  color: var(--text-light); font-style: italic; margin-left: 4px;
}

.dq-contact-submit-btn {
  width: 100%; background: var(--navy); color: white;
  border: none; border-radius: 50px; padding: 15px 36px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.dq-contact-submit-btn:hover:not(:disabled) {
  background: var(--gold); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,151,42,0.35);
}
.dq-contact-submit-btn:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none;
}

/* ════════════════════════════════════════════
   SHOP PAGE — SEARCH BAR + SORTING TOOLBAR
   Search sits on the left, "Showing X results" +
   sort dropdown are grouped together on the right —
   all in a single row that wraps gracefully on mobile.
════════════════════════════════════════════ */
.dq-shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px 24px; margin: 0 0 32px;
}
.dq-shop-toolbar-right {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}

/* Simple product search bar */
.dq-shop-search {
  display: flex; align-items: center; gap: 10px;
  background: white; border: 1.5px solid var(--border); border-radius: 50px;
  padding: 6px 8px 6px 20px; flex: 1 1 320px; max-width: 480px; margin: 0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dq-shop-search:focus-within { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(44,53,96,0.08); }
.dq-shop-search-icon { font-size: 0.9rem; opacity: 0.5; flex-shrink: 0; }
.dq-shop-search-input {
  flex: 1; border: none; outline: none; background: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--text-dark);
  padding: 8px 0; min-width: 0;
}
.dq-shop-search-input::placeholder { color: rgba(44,53,96,0.4); }
.dq-shop-search-btn {
  background: var(--navy); color: white; border: none; border-radius: 50px;
  padding: 9px 20px; font-family: 'DM Sans', sans-serif; font-size: 0.82rem;
  font-weight: 600; cursor: pointer; transition: background 0.2s; flex-shrink: 0;
}
.dq-shop-search-btn:hover { background: var(--gold); }

/* Result count + sorting (WooCommerce's own elements, restyled + regrouped) */
.woocommerce-result-count {
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  color: var(--text-light); margin: 0 !important; white-space: nowrap;
}
.woocommerce-ordering { margin: 0 !important; }
.woocommerce-ordering select {
  appearance: none; -webkit-appearance: none;
  border: 1.5px solid var(--border); border-radius: 50px;
  background: white; color: var(--navy);
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500;
  padding: 9px 36px 9px 18px; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232c3560' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  transition: border-color 0.2s;
}
.woocommerce-ordering select:hover,
.woocommerce-ordering select:focus { border-color: var(--navy); outline: none; }

@media (max-width: 640px) {
  .dq-shop-toolbar { flex-direction: column; align-items: stretch; }
  .dq-shop-toolbar-right { justify-content: space-between; }
  .dq-shop-search { flex: 0 0 auto; } /* prevent the 320px flex-basis from becoming a height in column mode */
  .dq-shop-search { max-width: 100%; }
}
@media (max-width: 480px) {
  .dq-shop-search { padding: 5px 6px 5px 16px; }
  .dq-shop-search-btn { padding: 8px 14px; font-size: 0.78rem; }
  .dq-shop-toolbar-right { flex-direction: column; align-items: stretch; gap: 10px; }
  .woocommerce-result-count { text-align: center; }
  .woocommerce-ordering select { width: 100%; }
}

/* Safety net: hide WooCommerce's default breadcrumb everywhere.
   Our theme uses its own custom breadcrumbs (visual + JSON-LD schema)
   on every page type, so the default WC breadcrumb should never render —
   this just guarantees it stays invisible even if some other code path
   (a plugin, a shortcode, etc.) ever calls woocommerce_breadcrumb(). */
.woocommerce-breadcrumb { display: none !important; }

/* ============================================================
   BLOG POST PAGE (single.php)
   ============================================================ */

.dq-blog-post-page { padding: 100px 5% 90px; max-width: 1240px; margin: 0 auto; }

.dq-blog-breadcrumb {
  font-size: 0.82rem; color: var(--text-light); margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.dq-blog-breadcrumb a { color: var(--text-mid); text-decoration: none; }
.dq-blog-breadcrumb a:hover { color: var(--gold); }
.dq-blog-breadcrumb span[aria-hidden] { opacity: 0.5; }

.dq-blog-post-layout {
  display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start;
}

/* ── Main article ── */
.dq-blog-post-main { min-width: 0; }
.dq-blog-post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem); color: var(--navy);
  line-height: 1.2; margin: 16px 0 18px;
}
.dq-blog-post-meta {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  font-size: 0.88rem; color: var(--text-light); margin-bottom: 36px;
}
.dq-blog-post-thumb {
  border-radius: 24px; overflow: hidden; margin-bottom: 40px; aspect-ratio: 16/9;
}
.dq-blog-post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.dq-post-tags {
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
}
.dq-post-tags-label { font-size: 0.8rem; color: var(--text-light); margin-right: 4px; }
.dq-post-tags a {
  font-size: 0.78rem; color: var(--navy); background: var(--cream);
  padding: 5px 14px; border-radius: 50px; text-decoration: none; transition: all 0.2s;
}
.dq-post-tags a:hover { background: var(--navy); color: white; }

.dq-blog-author-box {
  margin-top: 56px; padding: 32px; background: var(--cream); border-radius: 24px;
  display: flex; gap: 20px; align-items: flex-start;
}
.dq-blog-author-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.dq-blog-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.dq-blog-author-name {
  display: block; font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--navy); margin-bottom: 6px;
}
.dq-blog-author-bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

.dq-blog-post-nav {
  margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.dq-blog-post-nav-link {
  flex: 1; min-width: 200px; display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy); font-size: 0.9rem; font-weight: 600;
  padding: 14px 18px; border-radius: 14px; background: var(--cream); transition: background 0.2s;
}
.dq-blog-post-nav-link:hover { background: var(--gold); color: white; }
.dq-blog-post-nav-link.next { justify-content: flex-end; text-align: right; }
.dq-blog-post-nav-label {
  display: block; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  opacity: 0.6; margin-bottom: 2px; font-weight: 700;
}
.dq-blog-post-nav-arrow { font-size: 1.1rem; flex-shrink: 0; }

.dq-blog-comments { margin-top: 60px; }

/* ── Sidebar ── */
.dq-blog-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 100px; }
.dq-sidebar-widget {
  background: white; border: 1px solid var(--border); border-radius: 20px; padding: 24px;
}
.dq-sidebar-widget-title {
  font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy);
  margin: 0 0 18px; padding-bottom: 14px; border-bottom: 2px solid var(--cream);
}

.dq-sidebar-search { display: flex; align-items: center; gap: 8px; background: var(--cream); border-radius: 50px; padding: 10px 18px; }
.dq-sidebar-search-icon { font-size: 0.85rem; opacity: 0.5; }
.dq-sidebar-search input {
  flex: 1; border: none; background: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: var(--text-dark); min-width: 0;
}
.dq-sidebar-search input::placeholder { color: rgba(44,53,96,0.4); }

.dq-sidebar-cat-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.dq-sidebar-cat-list a {
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: var(--text-mid); font-size: 0.88rem;
  padding: 9px 10px; border-radius: 10px; transition: all 0.2s;
}
.dq-sidebar-cat-list a:hover { background: var(--cream); color: var(--navy); }
.dq-sidebar-cat-count {
  background: var(--cream); color: var(--text-light); font-size: 0.72rem; font-weight: 700;
  border-radius: 50px; padding: 2px 9px; min-width: 22px; text-align: center;
}
.dq-sidebar-cat-list a:hover .dq-sidebar-cat-count { background: white; }

.dq-sidebar-recent-list { display: flex; flex-direction: column; gap: 16px; }
.dq-sidebar-recent-item { display: flex; gap: 12px; text-decoration: none; align-items: center; }
.dq-sidebar-recent-thumb {
  width: 60px; height: 60px; border-radius: 12px; overflow: hidden; flex-shrink: 0;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
}
.dq-sidebar-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dq-sidebar-recent-thumb-fallback { font-size: 1.2rem; color: var(--gold); opacity: 0.5; }
.dq-sidebar-recent-title {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy);
  line-height: 1.4; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dq-sidebar-recent-date { font-size: 0.72rem; color: var(--text-light); }

.dq-sidebar-shop-cta {
  background: linear-gradient(145deg, var(--navy) 0%, #3d2f5c 100%);
  border: none; text-align: center;
}
.dq-sidebar-shop-cta-icon { font-size: 1.6rem; color: var(--gold-light); display: block; margin-bottom: 10px; }
.dq-sidebar-shop-cta h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.1rem; margin: 0 0 10px; }
.dq-sidebar-shop-cta p { font-size: 0.85rem; color: rgba(255,255,255,0.72); line-height: 1.6; margin: 0 0 18px; }
.dq-sidebar-shop-cta .dq-btn-primary-pill { width: 100%; justify-content: center; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .dq-blog-post-layout { grid-template-columns: 1fr; gap: 40px; }
  .dq-blog-sidebar { position: static; }
}
@media (max-width: 600px) {
  .dq-blog-post-page { padding: 90px 5% 60px; }
  .dq-blog-post-title { font-size: 1.7rem; }
  .dq-blog-author-box { flex-direction: column; text-align: center; align-items: center; }
  .dq-blog-post-nav { flex-direction: column; }
  .dq-blog-post-nav-link.next { justify-content: flex-start; text-align: left; }
}

/* ============================================================
   ARTICLE BODY TYPOGRAPHY (.dq-post-content)
   Generous spacing between headings/paragraphs, proper list
   indentation, and consistent styling for everything the_content()
   can output — this had zero theme styling before, relying on
   bare browser defaults, which is why it looked cramped/plain.
   ============================================================ */
.dq-post-content {
  font-size: 1.05rem; line-height: 1.85; color: var(--text-mid);
}

.dq-post-content p {
  margin: 0 0 26px;
}
.dq-post-content p:last-child { margin-bottom: 0; }

.dq-post-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--navy); font-weight: 700;
  margin: 56px 0 24px; line-height: 1.3;
}
.dq-post-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  color: var(--navy); font-weight: 700;
  margin: 44px 0 20px; line-height: 1.35;
}
.dq-post-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  margin: 36px 0 16px;
}
.dq-post-content h2:first-child,
.dq-post-content h3:first-child { margin-top: 0; }

/* Lists — proper left padding so bullets/numbers aren't flush to the edge */
.dq-post-content ul,
.dq-post-content ol {
  margin: 0 0 26px; padding-left: 28px;
}
.dq-post-content ul { list-style: disc; }
.dq-post-content ol { list-style: decimal; }
.dq-post-content li {
  margin-bottom: 10px; padding-left: 6px; line-height: 1.75;
}
.dq-post-content li:last-child { margin-bottom: 0; }
.dq-post-content li::marker { color: var(--gold); font-weight: 700; }
.dq-post-content ul ul,
.dq-post-content ul ol,
.dq-post-content ol ul,
.dq-post-content ol ol { margin-top: 10px; margin-bottom: 0; }

/* Links */
.dq-post-content a {
  color: var(--gold); font-weight: 600; text-decoration: underline;
  text-decoration-color: rgba(184,151,42,0.35); transition: color 0.2s, text-decoration-color 0.2s;
}
.dq-post-content a:hover { color: var(--navy); text-decoration-color: rgba(44,53,96,0.5); }

/* Strong / emphasis */
.dq-post-content strong { color: var(--navy); font-weight: 700; }
.dq-post-content em { font-style: italic; }

/* Blockquote */
.dq-post-content blockquote {
  margin: 32px 0; padding: 20px 26px;
  background: var(--cream); border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem;
  color: var(--navy); line-height: 1.7;
}
.dq-post-content blockquote p { margin-bottom: 12px; }
.dq-post-content blockquote p:last-child { margin-bottom: 0; }

/* Images */
.dq-post-content img { max-width: 100%; height: auto; border-radius: 18px; margin: 8px 0; display: block; }
.dq-post-content figure { margin: 36px 0; }
.dq-post-content figcaption { font-size: 0.82rem; color: var(--text-light); text-align: center; margin-top: 10px; font-style: italic; }

/* Tables */
.dq-post-content table {
  width: 100%; border-collapse: collapse; margin: 32px 0;
  font-size: 0.9rem; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(44,53,96,0.08);
}
.dq-post-content thead th {
  background: var(--navy); color: white; padding: 12px 18px;
  text-align: left; font-weight: 600; font-size: 0.82rem;
}
.dq-post-content tbody tr { border-bottom: 1px solid var(--border); }
.dq-post-content tbody tr:last-child { border-bottom: none; }
.dq-post-content tbody tr:nth-child(even) { background: rgba(245,240,232,0.4); }
.dq-post-content td { padding: 11px 18px; color: var(--text-mid); }

/* Horizontal rule */
.dq-post-content hr { border: none; border-top: 2px solid var(--border); margin: 44px 0; }

/* Code */
.dq-post-content code {
  background: var(--cream); color: var(--navy); padding: 2px 8px;
  border-radius: 6px; font-size: 0.88em;
}

@media (max-width: 600px) {
  .dq-post-content { font-size: 1rem; }
  .dq-post-content h2 { margin: 40px 0 18px; }
  .dq-post-content h3 { margin: 32px 0 16px; }
  .dq-post-content ul, .dq-post-content ol { padding-left: 22px; }
}

/* ============================================================
   COMMENT FORM
   ============================================================ */
.dq-blog-comments .comments-title,
.dq-blog-comments .comment-reply-title {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--navy);
  margin: 0 0 28px;
}
.dq-blog-comments .comment-reply-title small { font-size: 0.75rem; margin-left: 10px; }
.dq-blog-comments .comment-reply-title small a { color: var(--gold); }

.dq-blog-comments #commentform,
.dq-blog-comments .comment-respond {
  background: white; border: 1px solid var(--border); border-radius: 20px;
  padding: 32px; margin-top: 24px;
}
.dq-blog-comments .comment-notes,
.dq-blog-comments .logged-in-as {
  font-size: 0.85rem; color: var(--text-light); margin: 0 0 20px;
}
.dq-blog-comments .logged-in-as a { color: var(--gold); }
.dq-blog-comments .comment-form-comment,
.dq-blog-comments .comment-form-author,
.dq-blog-comments .comment-form-email,
.dq-blog-comments .comment-form-url {
  margin-bottom: 18px;
}
.dq-blog-comments label {
  display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px;
}
.dq-blog-comments textarea,
.dq-blog-comments input[type="text"],
.dq-blog-comments input[type="email"],
.dq-blog-comments input[type="url"] {
  width: 100%; border: 1.5px solid var(--border); border-radius: 12px;
  padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: var(--text-dark); background: var(--cream); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.dq-blog-comments textarea { min-height: 140px; resize: vertical; }
.dq-blog-comments textarea:focus,
.dq-blog-comments input:focus {
  border-color: var(--navy); background: white; box-shadow: 0 0 0 3px rgba(44,53,96,0.08);
}
.dq-blog-comments .form-submit { margin: 8px 0 0; }
.dq-blog-comments #submit,
.dq-blog-comments input[type="submit"] {
  background: var(--navy); color: white; border: none; border-radius: 50px;
  padding: 13px 32px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.dq-blog-comments #submit:hover,
.dq-blog-comments input[type="submit"]:hover { background: var(--gold); transform: translateY(-1px); }

/* Existing comment list (if any) */
.dq-blog-comments .comment-list { list-style: none; margin: 0 0 24px; padding: 0; }
.dq-blog-comments .comment-body {
  background: var(--cream); border-radius: 16px; padding: 20px 24px; margin-bottom: 16px;
}
.dq-blog-comments .comment-author .fn { font-weight: 700; color: var(--navy); font-style: normal; }
.dq-blog-comments .comment-metadata { font-size: 0.78rem; color: var(--text-light); margin-bottom: 10px; }
.dq-blog-comments .comment-metadata a { color: var(--text-light); text-decoration: none; }
.dq-blog-comments .comment-content p { font-size: 0.9rem; color: var(--text-mid); margin: 0; }

@media (max-width: 600px) {
  .dq-blog-comments #commentform,
  .dq-blog-comments .comment-respond { padding: 22px; }
}
