/* ================================================
   DHOOP & POOJA — standalone brand theme
   Warm cream / gold / soft premium (Zed Black style)
================================================ */
:root {
  --dp-gold: #c9a227;
  --dp-gold-dark: #a5841c;
  --dp-cream: #fdf8f0;
  --dp-cream-dark: #f5e8d2;
  --dp-tan: #ddc9a3;
  --dp-white: #ffffff;
  --dp-text: #2b2318;
  --dp-muted: #8a7a63;
  --dp-border: #ece0cb;
}

* { box-sizing: border-box; }

body.dp-body {
  margin: 0;
  font-family: 'Mulish', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background: var(--dp-white);
  color: var(--dp-text);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---- Header ---- */
.dp-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--dp-white);
  border-bottom: 1px solid var(--dp-border);
}

.dp-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--dp-text);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.01em;
  flex-shrink: 0;
  font-family: Georgia, 'Times New Roman', serif;
}

.dp-logo .dp-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--dp-cream-dark);
  flex-shrink: 0;
}

.dp-nav {
  display: flex;
  gap: 26px;
  flex: 1;
  align-items: center;
  justify-content: center;
}

.dp-nav a {
  color: var(--dp-text);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color .2s;
}

.dp-nav a:hover { color: var(--dp-gold-dark); }

.dp-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.dp-cart-btn {
  position: relative;
  background: var(--dp-cream);
  border: 1px solid var(--dp-border);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--dp-text);
  display: flex;
  align-items: center;
  transition: border-color .2s ease, background .2s ease;
}

.dp-cart-btn:hover { border-color: var(--dp-gold); background: var(--dp-cream-dark); }

#dpCartCount {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--dp-gold);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.dp-back-link {
  font-size: 12px;
  color: var(--dp-muted) !important;
  text-decoration: none;
  border: 1px solid var(--dp-border);
  padding: 5px 12px;
  border-radius: 16px;
  font-weight: 600;
}

.dp-back-link:hover { border-color: var(--dp-gold); color: var(--dp-gold-dark) !important; }

@media (max-width: 780px) {
  .dp-nav { display: none; }
}

/* ---- Hero carousel ---- */
.dp-hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: var(--dp-cream);
  margin-top: 2px;
}

.dp-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.dp-hero-slide.active { opacity: 1; }

.dp-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,0.85);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dp-text);
  font-size: 18px;
}

.dp-hero-prev { left: 16px; }
.dp-hero-next { right: 16px; }

.dp-hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.dp-hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s ease, transform .3s ease;
}

.dp-hero-dot.active { background: #fff; transform: scale(1.3); }

/* ---- Promo banner ---- */
.dp-promo-section {
  max-width: 1300px;
  margin: 32px auto 0;
  padding: 0 24px;
}

.dp-promo-banner {
  width: 100%;
  aspect-ratio: 1683 / 934;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dp-cream);
}

.dp-promo-banner img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Trust icon strip ---- */
.dp-trust-strip {
  max-width: 1200px;
  margin: 28px auto 0;
  padding: 0 24px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}

.dp-trust-strip-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.dp-trust-strip-icon { font-size: 26px; }
.dp-trust-strip-item span { font-size: 12px; font-weight: 700; color: var(--dp-text); }

@media (max-width: 900px) {
  .dp-trust-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 560px) {
  .dp-trust-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Section heading (centered, serif, gold underline) ---- */
.dp-section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.dp-section-heading .dp-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dp-gold-dark);
  margin-bottom: 8px;
}

.dp-section-heading h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--dp-text);
  margin: 0 0 10px;
}

.dp-section-heading .dp-underline {
  width: 56px;
  height: 3px;
  background: var(--dp-gold);
  margin: 0 auto;
}

/* ---- Breadcrumb ---- */
.dp-breadcrumb {
  max-width: 1200px;
  margin: 18px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--dp-muted);
}

.dp-breadcrumb a { color: var(--dp-text); font-weight: 600; text-decoration: none; }
.dp-breadcrumb a:hover { color: var(--dp-gold-dark); }
.dp-breadcrumb-current { color: var(--dp-muted); }

/* ---- Category page banner slider ---- */
.dp-cat-page-banner {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 24px;
}

.dp-cat-page-banner .dp-hero-slider {
  aspect-ratio: 2.2 / 1;
  border-radius: 10px;
}

@media (max-width: 700px) {
  .dp-cat-page-banner .dp-hero-slider { aspect-ratio: 4 / 3; }
}

/* ---- Category strip (on category page) ---- */
.dp-category-strip {
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dp-cat-pill {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  color: var(--dp-text);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 22px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.dp-cat-pill:hover { border-color: var(--dp-gold); }

.dp-cat-pill.active {
  background: var(--dp-text);
  border-color: var(--dp-text);
  color: var(--dp-gold);
}

/* ---- Category tiles ("Our Collections") ---- */
.dp-cat-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
}

.dp-cat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 22px;
}

.dp-cat-tile {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  background: var(--dp-cream);
  transition: box-shadow .2s ease, transform .2s ease;
}

.dp-cat-tile:hover { box-shadow: 0 16px 34px rgba(0,0,0,0.12); transform: translateY(-3px); }

.dp-cat-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.dp-cat-tile-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.92);
  color: var(--dp-text);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
}

.dp-cat-tile-body {
  padding: 14px 4px 4px;
  text-align: center;
}

.dp-cat-tile-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--dp-text);
}

/* ---- Category title bar (on category listing page) ---- */
.dp-cat-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--dp-border);
}

.dp-cat-title-bar h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dp-text);
  margin: 0;
}

.dp-cat-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--dp-gold-dark);
  background: var(--dp-cream-dark);
  padding: 6px 14px;
  border-radius: 20px;
}

.dp-empty {
  text-align: center;
  color: var(--dp-muted);
  padding: 60px 20px;
}

/* ---- Features list (product page) ---- */
.dp-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.dp-features li { font-size: 13.5px; color: var(--dp-text); }

/* ---- Product grid ---- */
.dp-shop-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 70px;
  background: var(--dp-white);
}

.dp-cat-filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.dp-see-more-wrap {
  text-align: center;
  margin-top: 36px;
}

.dp-see-more-btn {
  display: inline-block;
  border: 1.5px solid var(--dp-text);
  color: var(--dp-text);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 12px 32px;
  border-radius: 3px;
  transition: background .2s ease, color .2s ease;
}

.dp-see-more-btn:hover {
  background: var(--dp-text);
  color: #fff;
}

/* ---- Our Blogs ---- */
.dp-blog-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 70px;
  background: var(--dp-bg);
}

.dp-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.dp-blog-card {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.dp-blog-card:hover {
  box-shadow: 0 16px 34px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.dp-blog-img {
  height: 180px;
  background: linear-gradient(135deg, var(--dp-cream-dark), var(--dp-cream));
}

.dp-blog-body { padding: 18px; }

.dp-blog-date {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dp-gold-dark);
}

.dp-blog-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dp-text);
  margin: 8px 0 8px;
}

.dp-blog-card p {
  font-size: 13.5px;
  color: var(--dp-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- Single blog post ---- */
.dp-blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 70px;
}

.dp-blog-post-inner .dp-blog-date {
  display: inline-block;
  margin-bottom: 10px;
}

.dp-blog-post-inner h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dp-text);
  margin: 0 0 20px;
  line-height: 1.3;
}

.dp-blog-post-cover {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

.dp-blog-post-cover img {
  width: 100%;
  display: block;
}

.dp-blog-post-content {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--dp-text);
}

.dp-blog-post-content p { margin: 0 0 16px; }
.dp-blog-post-content img { max-width: 100%; border-radius: 8px; }

.dp-card {
  background: var(--dp-white);
  border: 1px solid var(--dp-border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
  position: relative;
}

.dp-card:hover { box-shadow: 0 16px 34px rgba(0,0,0,0.1); transform: translateY(-4px); }

.dp-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dp-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.dp-card-img { height: 200px; background: var(--dp-cream); }
.dp-card-img img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }

.dp-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }

.dp-card-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dp-gold-dark);
  margin-bottom: 6px;
}

.dp-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--dp-text);
  line-height: 1.4;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dp-card small { display: block; font-size: 12px; color: var(--dp-muted); margin-bottom: 10px; }

.dp-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dp-gold-dark);
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 0;
}

.dp-stock-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dp-gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
  flex-shrink: 0;
}

.dp-price-row { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.dp-price { font-size: 20px; font-weight: 800; color: var(--dp-text); }
.dp-price-unit { font-size: 12px; color: var(--dp-muted); font-weight: 500; }
.dp-mrp { font-size: 13px; font-weight: 500; color: #c2b39c; text-decoration: line-through; flex-basis: 100%; }

.dp-add-btn {
  width: 100%;
  background: var(--dp-gold);
  color: #fff;
  border: none;
  padding: 11px 0;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  transition: background .2s ease, transform .15s ease;
}

.dp-add-btn:hover { background: var(--dp-gold-dark); transform: translateY(-2px); }

/* ---- Product detail page ---- */
.dp-product-page {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 20px 24px;
  display: flex;
  gap: 60px;
}

.dp-gallery {
  display: flex;
  gap: 20px;
}

.dp-thumbs { display: flex; flex-direction: column; gap: 12px; }

.dp-thumb {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border: 1px solid var(--dp-border);
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  background: var(--dp-white);
}

.dp-thumb.active,
.dp-thumb:hover { border-color: var(--dp-gold); }

.dp-main-image {
  width: 380px;
  background: var(--dp-white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(43,35,24,0.08);
}

.dp-main-image img { width: 100%; object-fit: contain; }

.dp-info h1 { font-size: 30px; font-weight: 700; margin: 0 0 16px; color: var(--dp-text); }

/* item meta */
.dp-item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--dp-muted);
  margin-bottom: 16px;
}

.dp-item-meta strong { color: var(--dp-text); }
.dp-meta-sep { color: var(--dp-border); }

/* stock + delivery */
.dp-stock-delivery-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.dp-stock-pill {
  background: var(--dp-gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

.dp-delivery-estimate {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--dp-text);
}

.dp-delivery-estimate svg { flex-shrink: 0; color: var(--dp-muted); }

/* price box */
.dp-price-box { margin: 10px 0 22px; }

.dp-price-off-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.dp-price-box del { font-size: 16px; color: #c2b39c; }

.dp-off { color: #b33f3f; font-weight: 700; font-size: 14px; }

.dp-price-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.dp-info .dp-price { font-size: 30px; font-weight: 800; color: var(--dp-text); }
.dp-info .dp-price-unit { font-size: 13px; color: var(--dp-muted); margin-left: 4px; }

/* qty stepper */
.dp-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--dp-border);
  border-radius: 8px;
  overflow: hidden;
}

.dp-qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: var(--dp-cream);
  font-size: 18px;
  cursor: pointer;
  color: var(--dp-text);
}

.dp-qty-btn:hover { background: var(--dp-cream-dark); }

.dp-qty-value { width: 40px; text-align: center; font-weight: 700; color: var(--dp-text); }

.dp-cart-action { margin-bottom: 22px; }

/* trust badges */
.dp-trust-badges {
  border-top: 1px solid var(--dp-border);
  border-bottom: 1px solid var(--dp-border);
  padding: 20px 0;
  margin-bottom: 24px;
}

.dp-trust-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dp-muted);
  margin-bottom: 10px;
}

.dp-trust-label:not(:first-child) { margin-top: 18px; }

.dp-payment-icons,
.dp-delivery-badges { display: flex; flex-wrap: wrap; gap: 8px; }

.dp-pay-icon {
  font-size: 12px;
  font-weight: 700;
  color: var(--dp-text);
  background: var(--dp-cream);
  border: 1px solid var(--dp-border);
  padding: 6px 12px;
  border-radius: 6px;
}

.dp-pay-icon.dp-pay-icon-img {
  padding: 4px 12px;
  display: flex;
  align-items: center;
}

.dp-pay-icon.dp-pay-icon-img img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  display: block;
}

.dp-delivery-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--dp-text);
  background: var(--dp-cream);
  border: 1px solid var(--dp-tan);
  padding: 6px 12px;
  border-radius: 20px;
}

.dp-info .dp-desc { font-size: 15.5px; color: var(--dp-muted); line-height: 1.7; margin-bottom: 20px; }

/* ---- Specifications (toggleable, two-column) ---- */
.dp-specs-section {
  max-width: 1200px;
  margin: 10px auto 60px;
  padding: 0 24px;
}

.dp-specs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--dp-border);
}

.dp-specs-header h2 { font-size: 22px; font-weight: 800; color: var(--dp-text); margin: 0; }

.dp-specs-chevron { color: var(--dp-muted); font-size: 14px; transition: transform .25s ease; }

.dp-specs-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 8px;
}

.dp-specs-col { display: flex; flex-direction: column; }

.dp-specs-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 16px 18px;
}

.dp-specs-row:nth-child(odd) { background: var(--dp-cream); }

.dp-specs-label { font-size: 14px; font-weight: 700; color: var(--dp-text); }
.dp-specs-value { font-size: 14px; color: var(--dp-muted); }

@media (max-width: 700px) {
  .dp-specs-columns { grid-template-columns: 1fr; }
}

/* ---- Related products ---- */
.dp-related-section {
  max-width: 1200px;
  margin: 10px auto 60px;
  padding: 0 24px;
}

.dp-related-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--dp-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--dp-border);
}

.dp-related-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--dp-border);
  border-radius: 14px;
}

.dp-related-table { width: 100%; border-collapse: collapse; font-size: 14px; white-space: nowrap; }

.dp-related-table thead th {
  background: var(--dp-cream);
  color: var(--dp-text);
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--dp-border);
}

.dp-related-table tbody td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--dp-border);
  color: var(--dp-text);
}

.dp-related-table tbody tr:last-child td { border-bottom: none; }
.dp-related-table tbody tr:hover { background: var(--dp-cream); }

.dp-rt-img-col { width: 60px; }

.dp-related-table .dp-rt-img-col img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: var(--dp-cream);
  border-radius: 8px;
  padding: 4px;
}

.dp-rt-name { color: var(--dp-gold-dark); text-decoration: none; font-weight: 600; white-space: normal; }
.dp-rt-name:hover { text-decoration: underline; }

.dp-rt-mrp { color: #c2b39c; font-size: 12.5px; margin-left: 6px; }

.dp-rt-cart { color: var(--dp-gold-dark); font-weight: 700; text-decoration: none; }
.dp-rt-cart:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .dp-product-page { flex-direction: column; }
  .dp-main-image { width: 100%; }
  .dp-gallery { justify-content: center; }
}

/* ---- Footer ---- */
.dp-footer {
  background: var(--dp-tan);
  color: var(--dp-text);
  padding: 50px 24px 0;
  font-size: 13.5px;
}

.dp-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 30px;
  padding-bottom: 40px;
}

.dp-footer-brand { display: flex; align-items: center; gap: 8px; font-family: Georgia, serif; font-size: 19px; font-weight: 700; margin-bottom: 12px; }

.dp-footer-brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--dp-white);
  flex-shrink: 0;
}
.dp-footer-tagline { color: #5f5340; font-size: 12.5px; line-height: 1.6; }

.dp-footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  color: var(--dp-text);
}

.dp-footer-col a {
  display: block;
  color: #5f5340;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 13px;
}

.dp-footer-col a:hover { color: var(--dp-gold-dark); }

.dp-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  color: #5f5340;
  font-size: 12.5px;
  line-height: 1.5;
}

.dp-footer-contact-item span:first-child { flex-shrink: 0; }

.dp-footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: #6b5e48;
}

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

@media (max-width: 500px) {
  .dp-footer-grid { grid-template-columns: 1fr; }
}

/* ---- Cart drawer ---- */
.dp-cart-overlay { position: fixed; inset: 0; background: rgba(43,35,24,0.45); display: none; z-index: 999; }

.dp-cart-drawer {
  position: fixed;
  top: 0;
  right: -400px;
  width: 380px;
  max-width: 92vw;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transition: right .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,0.2);
}

.dp-cart-drawer.open { right: 0; }

.dp-cart-header {
  background: var(--dp-cream-dark);
  color: var(--dp-text);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dp-border);
}

.dp-cart-header h3 { margin: 0; font-size: 15px; }

#dpCloseCart {
  background: rgba(0,0,0,0.06);
  border: none;
  color: var(--dp-text);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
}

.dp-cart-items { flex: 1; overflow-y: auto; padding: 16px; }

.dp-cart-item { display: flex; gap: 12px; border: 1px solid var(--dp-border); border-radius: 8px; padding: 10px; margin-bottom: 12px; }
.dp-cart-item img { width: 56px; height: 56px; object-fit: contain; background: var(--dp-cream); border-radius: 6px; padding: 5px; }
.dp-cart-item-body { flex: 1; }
.dp-cart-item-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; }
.dp-cart-item-price { font-size: 13px; color: var(--dp-gold-dark); font-weight: 700; margin-bottom: 8px; }
.dp-cart-item-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.dp-cart-item-total { font-size: 13px; font-weight: 700; color: var(--dp-text); }

.dp-qty-box { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.dp-qty-box button { width: 24px; height: 24px; border: none; background: var(--dp-cream); cursor: pointer; }
.dp-qty-box span { width: 26px; text-align: center; font-size: 12.5px; font-weight: 700; }

.dp-cart-remove { border: none; background: none; color: #bbb; cursor: pointer; }
.dp-cart-remove:hover { color: #c0392b; }

.dp-cart-footer { border-top: 1px solid var(--dp-border); padding: 16px; }
.dp-cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; font-weight: 700; margin-bottom: 12px; }

.dp-checkout-btn {
  width: 100%;
  background: var(--dp-gold);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background .2s ease;
}

.dp-checkout-btn:hover { background: var(--dp-gold-dark); }

.dp-cart-empty { text-align: center; color: var(--dp-muted); padding: 40px 10px; font-size: 14px; }

/* ---- Checkout page ---- */
.dp-checkout-page { max-width: 1100px; margin: 30px auto 60px; padding: 0 24px; display: flex; gap: 28px; align-items: flex-start; }
.dp-checkout-card { background: var(--dp-white); border: 1px solid var(--dp-border); border-radius: 10px; padding: 26px 28px; }
.dp-checkout-left { flex: 1.4; }
.dp-checkout-right { flex: 1; min-width: 320px; }
.dp-checkout-card h2 { font-size: 17px; font-weight: 800; margin: 0 0 18px; color: var(--dp-text); }
.dp-form-row { display: flex; gap: 14px; }
.dp-field { flex: 1; margin-bottom: 15px; }
.dp-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dp-text); }

.dp-field input, .dp-field textarea {
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--dp-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
}

.dp-field input:focus, .dp-field textarea:focus { outline: none; border-color: var(--dp-gold); }

@media (max-width: 800px) {
  .dp-checkout-page { flex-direction: column; }
  .dp-form-row { flex-direction: column; gap: 0; }
}
