/* ============================================================
   Decor Aura – Luxury Frontend Theme
   Premium, clean, classy UI/UX (all pages except index.php)
   ============================================================ */

/* ── Base & Typography ──────────────────────────── */
body {
  font-family: 'Poppins', 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #111111;
  background: #fefdfb;
}
.font-playfair { font-family: 'Playfair Display', serif; }

/* ── Smooth Page Entrance (on load; hero / headers) ─ */
@keyframes da-fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes da-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes da-scaleIn {
  from { opacity: 0; transform: scale(.96); }
  to   { opacity: 1; transform: scale(1); }
}
.da-animate { animation: da-fadeUp .58s cubic-bezier(.22,1,.36,1) both; }
.da-animate-delay-1 { animation-delay: .08s; }
.da-animate-delay-2 { animation-delay: .16s; }
.da-animate-delay-3 { animation-delay: .24s; }
.da-animate-delay-4 { animation-delay: .32s; }

/* ── Scroll reveal (decor-aura.js adds .da-visible) ─ */
.da-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .65s cubic-bezier(.22, 1, .36, 1),
    transform .65s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.da-reveal.da-visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}
.da-reveal.da-reveal-left {
  transform: translate(-28px, 22px);
}
.da-reveal.da-reveal-left.da-visible {
  transform: translate(0, 0);
}
.da-reveal.da-reveal-right {
  transform: translate(28px, 22px);
}
.da-reveal.da-reveal-right.da-visible {
  transform: translate(0, 0);
}
.da-reveal.da-reveal-scale {
  transform: translateY(18px) scale(0.94);
}
.da-reveal.da-reveal-scale.da-visible {
  transform: translateY(0) scale(1);
}
.da-reveal.da-reveal-delay-1 { transition-delay: .07s; }
.da-reveal.da-reveal-delay-2 { transition-delay: .14s; }
.da-reveal.da-reveal-delay-3 { transition-delay: .21s; }
.da-reveal.da-reveal-delay-4 { transition-delay: .28s; }
.da-reveal.da-reveal-delay-5 { transition-delay: .35s; }
.da-reveal.da-reveal-delay-6 { transition-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  .da-animate,
  .da-animate-delay-1,
  .da-animate-delay-2,
  .da-animate-delay-3,
  .da-animate-delay-4 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .da-reveal,
  .da-reveal.da-reveal-left,
  .da-reveal.da-reveal-right,
  .da-reveal.da-reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
}

/* ── Premium Page Header ────────────────────────── */
.da-page-header {
  background: linear-gradient(135deg, #faf7f2 0%, #f5f0e8 100%);
  border-bottom: 1px solid rgba(212,175,55,.12);
  position: relative;
  overflow: hidden;
}
.da-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23d4af37'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* ── Breadcrumb ─────────────────────────────────── */
.da-breadcrumb {
  font-size: 13px;
  color: #888;
}
.da-breadcrumb a {
  color: #888;
  text-decoration: none;
  transition: color .25s ease;
}
.da-breadcrumb a:hover { color: #d4af37; }
.da-breadcrumb .sep {
  margin: 0 8px;
  color: #ccc;
  font-size: 10px;
}
.da-breadcrumb .current {
  color: #111;
  font-weight: 500;
}

/* ── Premium Cards ──────────────────────────────── */
.da-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: box-shadow .35s ease, border-color .35s ease, transform .35s ease;
}
.da-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  border-color: rgba(212,175,55,.2);
}

/* ── Shop + Liked product cards (same styling) ── */
#da-shop-grid .shop-product-card,
#da-liked-grid .shop-product-card { background: #fff; border-radius: 18px; border: 1px solid rgba(0,0,0,.06); overflow: hidden; transition: all .4s cubic-bezier(.22,1,.36,1); position: relative; }
#da-shop-grid .shop-product-card:hover,
#da-liked-grid .shop-product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px -12px rgba(17,17,17,.12), 0 0 0 1px rgba(212,175,55,.15); border-color: rgba(212,175,55,.3); }
#da-shop-grid .shop-product-card .shop-img-wrap,
#da-liked-grid .shop-product-card .shop-img-wrap { position: relative; overflow: hidden; background: #f8f7f4; }
#da-shop-grid .shop-product-card .shop-img-wrap .shop-img-main,
#da-liked-grid .shop-product-card .shop-img-wrap .shop-img-main { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .5s ease, transform .5s ease; }
#da-shop-grid .shop-product-card .shop-img-wrap .shop-img-hover,
#da-liked-grid .shop-product-card .shop-img-wrap .shop-img-hover { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; transform: scale(1.03); }
#da-shop-grid .shop-product-card:hover .shop-img-wrap .shop-img-main,
#da-liked-grid .shop-product-card:hover .shop-img-wrap .shop-img-main { opacity: 0; transform: scale(1.03); }
#da-shop-grid .shop-product-card:hover .shop-img-wrap .shop-img-hover,
#da-liked-grid .shop-product-card:hover .shop-img-wrap .shop-img-hover { opacity: 1; }
#da-shop-grid .shop-product-card .shop-wishlist,
#da-liked-grid .shop-product-card .shop-wishlist { position: absolute; right: 12px; top: 12px; z-index: 10; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); display: flex; align-items: center; justify-content: center; color: #333; border: none; cursor: pointer; opacity: 0.75; transition: opacity .3s ease, color .25s ease; font-size: 14px; }
#da-shop-grid .shop-product-card:hover .shop-wishlist,
#da-liked-grid .shop-product-card:hover .shop-wishlist { opacity: 1; }
#da-shop-grid .shop-product-card .shop-wishlist:hover,
#da-liked-grid .shop-product-card .shop-wishlist:hover { color: #d4af37; }
#da-shop-grid .shop-product-card .shop-wishlist.active,
#da-liked-grid .shop-product-card .shop-wishlist.active { color: #d4af37; }
#da-shop-grid .shop-product-card .shop-info,
#da-liked-grid .shop-product-card .shop-info { padding: 16px 18px 20px; }
#da-shop-grid .shop-product-card .shop-info .shop-title,
#da-liked-grid .shop-product-card .shop-info .shop-title { font-weight: 600; font-size: 14px; color: #111; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-decoration: none; transition: color .25s ease; line-height: 1.45; margin-bottom: 4px; }
#da-shop-grid .shop-product-card:hover .shop-info .shop-title,
#da-liked-grid .shop-product-card:hover .shop-info .shop-title { color: #d4af37; }
#da-shop-grid .shop-product-card .shop-info .shop-category,
#da-liked-grid .shop-product-card .shop-info .shop-category { font-size: 11.5px; color: #999; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
#da-shop-grid .shop-product-card .shop-info .shop-price,
#da-liked-grid .shop-product-card .shop-info .shop-price { font-weight: 700; font-size: 16px; color: #d4af37; }
#da-shop-grid .shop-product-card .shop-info .shop-old-price,
#da-liked-grid .shop-product-card .shop-info .shop-old-price { font-size: 13px; color: #bbb; text-decoration: line-through; margin-left: 6px; }
#da-shop-grid .shop-product-card .shop-actions,
#da-liked-grid .shop-product-card .shop-actions { display: flex; gap: 8px; }
#da-shop-grid .shop-product-card .shop-action-btn,
#da-liked-grid .shop-product-card .shop-action-btn { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; text-decoration: none; border: 1px solid rgba(0,0,0,.1); background: #fff; color: #555; transition: all .25s ease; cursor: pointer; font-family: inherit; }
#da-shop-grid .shop-product-card .shop-action-btn:hover,
#da-liked-grid .shop-product-card .shop-action-btn:hover { border-color: #d4af37; color: #d4af37; background: rgba(212,175,55,.06); }
#da-shop-grid .shop-product-card .shop-action-btn.shop-btn-cart,
#da-liked-grid .shop-product-card .shop-action-btn.shop-btn-cart { border-color: #d4af37; background: #d4af37; color: #111; }
#da-shop-grid .shop-product-card .shop-action-btn.shop-btn-cart:hover,
#da-liked-grid .shop-product-card .shop-action-btn.shop-btn-cart:hover { background: #c9a430; border-color: #c9a430; color: #111; }
#da-shop-grid .shop-product-card .da-badge,
#da-liked-grid .shop-product-card .da-badge { position: absolute; z-index: 8; }

/* ── Product Card (Luxury) ──────────────────────── */
.da-product-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.06);
  overflow: hidden;
  transition: all .4s cubic-bezier(.22,1,.36,1);
  position: relative;
}
.da-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px -12px rgba(17,17,17,.12), 0 0 0 1px rgba(212,175,55,.15);
  border-color: rgba(212,175,55,.3);
}

/* Image wrap */
.da-product-card .da-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f8f7f4;
}
.da-product-card .da-img-wrap .da-img-main {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s ease, transform .5s ease;
}
.da-product-card .da-img-wrap .da-img-hover {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s ease;
  transform: scale(1.03);
}
.da-product-card:hover .da-img-main { opacity: 0; transform: scale(1.03); }
.da-product-card:hover .da-img-hover { opacity: 1; }

/* Overlay – minimal gradient at bottom only; image stays visible */
.da-product-card .da-overlay {
  position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 40%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; gap: 6px;
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.da-product-card:hover .da-overlay { opacity: 1; }
.da-overlay .da-overlay-btn {
  display: block; width: 100%; text-align: center;
  padding: 10px; border-radius: 12px;
  font-size: 13px; font-weight: 500; font-family: inherit;
  text-decoration: none; cursor: pointer;
  transform: translateY(10px); opacity: 0;
  transition: transform .35s ease, opacity .35s ease, background .2s ease, color .2s ease;
  pointer-events: auto;
}
.da-product-card:hover .da-overlay-btn { transform: translateY(0); opacity: 1; }
.da-product-card:hover .da-overlay-btn:nth-child(2) { transition-delay: 40ms; }
.da-product-card:hover .da-overlay-btn:nth-child(3) { transition-delay: 80ms; }

.da-overlay-btn.da-btn-view {
  border: 1px solid rgba(255,255,255,.7); color: #fff; background: transparent;
}
.da-overlay-btn.da-btn-view:hover { background: #fff; color: #111; }
.da-overlay-btn.da-btn-cart {
  background: #d4af37; color: #111; border: 1px solid #d4af37;
}
.da-overlay-btn.da-btn-cart:hover { background: #f5e6b3; }

/* Wishlist icon */
.da-product-card .da-wishlist {
  position: absolute; right: 12px; top: 12px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: #333; border: none; cursor: pointer;
  opacity: 0; transform: scale(.8);
  transition: all .3s ease;
  font-size: 14px;
}
.da-product-card:hover .da-wishlist { opacity: 1; transform: scale(1); }
.da-wishlist:hover { color: #d4af37; background: #fff; }
.da-wishlist.active { color: #d4af37; }
.da-wishlist.active i { font-weight: 900; }

/* Badges */
.da-badge {
  position: absolute; z-index: 8;
  padding: 4px 10px; border-radius: 8px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .3px;
}
.da-badge-discount {
  left: 12px; top: 12px;
  background: #d4af37; color: #111;
}
.da-badge-bestseller {
  right: 12px; top: 52px;
  background: #111; color: #d4af37;
}
.da-badge-new {
  right: 12px; top: 52px;
  background: rgba(212,175,55,.15); color: #111; border: 1px solid #d4af37;
}

/* Product info */
.da-product-card .da-info {
  padding: 16px 18px 20px;
}
.da-product-card .da-info .da-title {
  font-weight: 600; font-size: 14px; color: #111;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; text-decoration: none;
  transition: color .25s ease;
  line-height: 1.45; margin-bottom: 4px;
}
.da-product-card:hover .da-info .da-title { color: #d4af37; }
.da-product-card .da-info .da-category {
  font-size: 11.5px; color: #999; margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .5px;
}
.da-product-card .da-info .da-price {
  font-weight: 700; font-size: 16px; color: #d4af37;
}
.da-product-card .da-info .da-old-price {
  font-size: 13px; color: #bbb; text-decoration: line-through; margin-left: 6px;
}

/* ── Premium Buttons ────────────────────────────── */
.da-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 14px;
  font-size: 14px; font-weight: 500; font-family: inherit;
  text-decoration: none; cursor: pointer;
  transition: all .3s cubic-bezier(.22,1,.36,1);
  border: 2px solid transparent; line-height: 1.4;
}
.da-btn:active { transform: scale(.97); }
.da-btn-gold {
  background: #d4af37; color: #111; border-color: #d4af37;
  box-shadow: 0 2px 12px rgba(212,175,55,.25);
}
.da-btn-gold:hover {
  background: #c9a430; box-shadow: 0 6px 20px rgba(212,175,55,.35);
  transform: translateY(-1px);
}
.da-btn-outline {
  background: transparent; color: #111; border-color: rgba(0,0,0,.12);
}
.da-btn-outline:hover {
  border-color: #d4af37; color: #d4af37;
  background: rgba(212,175,55,.04);
}
.da-btn-outline-gold {
  background: transparent; color: #d4af37; border-color: #d4af37;
}
.da-btn-outline-gold:hover {
  background: #d4af37; color: #111;
}
.da-btn-sm { padding: 8px 20px; font-size: 13px; border-radius: 12px; }

/* ── Form Inputs (Luxury) ───────────────────────── */
.da-input, .da-select, .da-textarea {
  width: 100%; padding: 12px 16px;
  background: #fff; border: 1.5px solid rgba(0,0,0,.1);
  border-radius: 14px; font-size: 14px; font-family: inherit;
  color: #111; outline: none;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.da-input:focus, .da-select:focus, .da-textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212,175,55,.08);
}
.da-input::placeholder, .da-textarea::placeholder { color: #bbb; }
.da-label {
  display: block; font-size: 13px; font-weight: 500;
  color: #333; margin-bottom: 6px;
}

/* ── Trust Badges ───────────────────────────────── */
.da-trust-badges {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding-top: 20px; margin-top: 20px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.da-trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 12px;
  background: #faf7f2; border: 1px solid rgba(212,175,55,.1);
  font-size: 12.5px; color: #555;
  transition: all .3s ease;
}
.da-trust-badge:hover {
  border-color: rgba(212,175,55,.3);
  background: rgba(212,175,55,.05);
}
.da-trust-badge i {
  color: #d4af37; font-size: 16px;
  width: 20px; text-align: center;
}

/* ── Tabs (Product page) ────────────────────────── */
.da-tabs {
  display: flex; gap: 0; border-bottom: 2px solid rgba(0,0,0,.06);
  margin-bottom: 28px;
}
.da-tab {
  padding: 14px 24px; font-size: 14px; font-weight: 500;
  color: #999; cursor: pointer; border: none; background: none;
  font-family: inherit; position: relative;
  transition: color .3s ease;
}
.da-tab::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: #d4af37;
  transform: scaleX(0); transition: transform .3s ease;
}
.da-tab:hover { color: #555; }
.da-tab.active { color: #d4af37; }
.da-tab.active::after { transform: scaleX(1); }

/* Tab content */
.da-tab-content { display: none; animation: da-fadeIn .35s ease both; }
.da-tab-content.active { display: block; }

/* ── Spec Table ─────────────────────────────────── */
.da-spec-table { width: 100%; border-collapse: collapse; }
.da-spec-table tr { border-bottom: 1px solid rgba(0,0,0,.04); }
.da-spec-table tr:last-child { border-bottom: none; }
.da-spec-table tr:hover { background: rgba(212,175,55,.02); }
.da-spec-table td { padding: 14px 16px; font-size: 14px; }
.da-spec-table td:first-child { font-weight: 600; color: #111; width: 180px; }
.da-spec-table td:last-child { color: #666; }

/* ── Product Thumbnail Gallery ──────────────────── */
.da-thumb {
  flex-shrink: 0; width: 80px; height: 80px;
  border-radius: 14px; overflow: hidden; cursor: pointer;
  border: 2px solid rgba(0,0,0,.08);
  transition: all .3s ease;
}
.da-thumb:hover { border-color: rgba(212,175,55,.4); }
.da-thumb.active {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.da-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Pagination (Premium) ───────────────────────── */
.da-pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.da-pagination a, .da-pagination span {
  display: flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  border-radius: 12px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all .3s ease;
  color: #888; border: 1.5px solid rgba(0,0,0,.08);
  background: #fff;
}
.da-pagination a:hover {
  border-color: #d4af37; color: #d4af37;
  background: rgba(212,175,55,.04);
}
.da-pagination .active {
  background: #d4af37; color: #111; border-color: #d4af37;
  box-shadow: 0 2px 8px rgba(212,175,55,.25);
}

/* ── Quantity Control ───────────────────────────── */
.da-qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(0,0,0,.1); border-radius: 12px;
  overflow: hidden; background: #fff;
}
.da-qty button {
  width: 38px; height: 38px; border: none; background: transparent;
  cursor: pointer; font-size: 14px; color: #666;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.da-qty button:hover { background: rgba(212,175,55,.08); color: #d4af37; }
.da-qty input {
  width: 48px; height: 38px; text-align: center; border: none;
  border-left: 1px solid rgba(0,0,0,.06);
  border-right: 1px solid rgba(0,0,0,.06);
  font-size: 14px; font-weight: 500; font-family: inherit;
  outline: none; color: #111; background: transparent;
}

/* ── Summary Card (Cart/Checkout) ───────────────── */
.da-summary-card {
  background: linear-gradient(135deg, #faf7f2 0%, #f5f0e8 100%);
  border-radius: 18px; border: 1px solid rgba(212,175,55,.12);
  padding: 28px; position: sticky; top: 100px;
}

/* ── Payment Method Selection ───────────────────── */
.da-payment-option {
  cursor: pointer;
}
.da-payment-option input[type="radio"] { display: none; }
.da-payment-box {
  padding: 20px; border-radius: 16px;
  border: 2px solid rgba(0,0,0,.08); text-align: center;
  transition: all .3s ease; background: #fff;
}
.da-payment-option input:checked + .da-payment-box {
  border-color: #d4af37;
  background: rgba(212,175,55,.04);
  box-shadow: 0 0 0 3px rgba(212,175,55,.1);
}
.da-payment-box:hover { border-color: rgba(212,175,55,.3); }

/* ── Order Success ──────────────────────────────── */
@keyframes da-checkmark {
  from { stroke-dashoffset: 50; }
  to   { stroke-dashoffset: 0; }
}
.da-checkmark {
  animation: da-checkmark .6s cubic-bezier(.22,1,.36,1) forwards;
  stroke-dasharray: 50; stroke-dashoffset: 50;
}
@keyframes da-pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.25); }
  70%  { box-shadow: 0 0 0 16px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.da-success-icon {
  animation: da-scaleIn .5s ease both, da-pulse-ring 1.5s ease .5s;
}

/* ── Navbar scroll shadow (for subpages) ────────── */
#navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
  .da-trust-badges { flex-direction: column; }
  .da-spec-table td:first-child { width: auto; }
}

/* ── Mobile Filter Bar (Shop page, < 768px only) ─── */
.da-mobile-filter-bar {
  display: none;
  position: sticky;
  top: 64px; /* below sticky navbar (h-16) */
  z-index: 20;
  background: rgba(250, 247, 242, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, .12);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .04);
  padding: 10px 16px;
  margin: 0;
  border-radius: 0 0 16px 16px;
}
@media (max-width: 767px) {
  .da-mobile-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
  }
}
.da-mfb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 8px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 12px;
  color: #555;
  font-size: 11px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all .25s ease;
}
.da-mfb-btn:hover {
  background: rgba(212, 175, 55, .08);
  border-color: rgba(212, 175, 55, .35);
  color: #111;
}
.da-mfb-btn i {
  font-size: 14px;
  color: #d4af37;
}

/* ── Mobile Drawers (Bottom Sheets) ───────────────── */
.da-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  background: rgba(17, 17, 17, .35);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.da-drawer-overlay.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
}
.da-drawer {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 21;
  max-height: 75vh;
  background: #fff;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, .12);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1);
}
@media (min-width: 768px) {
  .da-drawer-overlay,
  .da-drawer { display: none !important; }
}
.da-drawer.open {
  display: block;
  transform: translateY(0);
}
.da-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.da-drawer-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin: 0;
}
.da-drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  border-radius: 12px;
  transition: all .2s ease;
}
.da-drawer-close:hover {
  background: rgba(212, 175, 55, .1);
  color: #111;
}
.da-drawer-body {
  padding: 20px;
  max-height: calc(75vh - 70px);
  overflow-y: auto;
}
.da-drawer-section {
  margin-bottom: 20px;
}
.da-drawer-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #555;
  margin-bottom: 10px;
}
.da-drawer-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  transition: all .2s ease;
}
.da-drawer-radio:hover { background: rgba(212, 175, 55, .05); }
.da-drawer-radio input { accent-color: #d4af37; }
.da-drawer-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}
.da-drawer-toggle input { accent-color: #d4af37; }
.da-drawer-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, .06);
}
.da-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.da-drawer-item {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: none;
  background: transparent;
  text-align: left;
  font-size: 15px;
  color: #555;
  font-family: inherit;
  cursor: pointer;
  border-radius: 12px;
  transition: all .25s ease;
}
.da-drawer-item:hover {
  background: rgba(212, 175, 55, .08);
  color: #111;
}
.da-drawer-item.active {
  background: rgba(212, 175, 55, .1);
  color: #d4af37;
  font-weight: 600;
}

/* ── Toast Notifications ────────────────────────── */
#da-toast-container {
  position: fixed; top: 20px; right: 20px; z-index: 99999;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.da-toast {
  pointer-events: auto;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; min-width: 300px; max-width: 420px;
  background: #fff; border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  animation: da-toastIn .35s cubic-bezier(.22,1,.36,1) both;
  position: relative; overflow: hidden;
  font-family: 'Poppins', sans-serif;
}
@keyframes da-toastIn { from { opacity:0; transform: translateX(40px); } to { opacity:1; transform: translateX(0); } }
.da-toast-out { animation: da-toastOut .3s ease both; }
@keyframes da-toastOut { to { opacity:0; transform: translateX(40px); } }
.da-toast-icon {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px;
}
.da-toast-success .da-toast-icon { background: #ecfdf5; color: #059669; }
.da-toast-error .da-toast-icon   { background: #fef2f2; color: #dc2626; }
.da-toast-info .da-toast-icon    { background: #eff6ff; color: #2563eb; }
.da-toast-cart .da-toast-icon    { background: rgba(212,175,55,.1); color: #d4af37; }
.da-toast-msg { flex: 1; font-size: 13.5px; color: #111; line-height: 1.4; }
.da-toast-close {
  background: none; border: none; color: #bbb; cursor: pointer;
  padding: 4px; font-size: 13px; transition: color .2s ease;
}
.da-toast-close:hover { color: #111; }
.da-toast-progress {
  position: absolute; bottom: 0; left: 0; height: 3px;
  border-radius: 0 0 16px 16px; width: 100%;
  animation: da-progressShrink linear forwards;
}
.da-toast-success .da-toast-progress { background: #059669; }
.da-toast-error .da-toast-progress   { background: #dc2626; }
.da-toast-info .da-toast-progress    { background: #2563eb; }
.da-toast-cart .da-toast-progress    { background: #d4af37; }
@keyframes da-progressShrink { from { width: 100%; } to { width: 0; } }

/* ── Skeleton Loader ────────────────────────────── */
.da-skeleton-card {
  background: #fff; border-radius: 18px;
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden; padding-bottom: 16px;
}
.da-skeleton-img {
  aspect-ratio: 3/4; background: linear-gradient(90deg, #f0efec 25%, #faf7f2 50%, #f0efec 75%);
  background-size: 200% 100%;
  animation: da-shimmer 1.5s ease infinite;
}
.da-skeleton-line {
  height: 12px; border-radius: 6px; margin: 10px 16px 0;
  background: linear-gradient(90deg, #f0efec 25%, #faf7f2 50%, #f0efec 75%);
  background-size: 200% 100%;
  animation: da-shimmer 1.5s ease infinite;
}
@keyframes da-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #b8972e; }
