/*
  DreamyHeader26
  Luxury, calm header system.
  Prefix: dreamyheader26-
*/

:root {
  --dreamyheader26-border: rgba(0, 0, 0, 0.06);
  --dreamyheader26-border2: rgba(0, 0, 0, 0.10);
  --dreamyheader26-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
  --dreamyheader26-ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* Skip link */
.dreamyheader26-skip {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--dreamyheader26-border2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
  z-index: 99999;
}

.dreamyheader26-skip:focus {
  transform: translateY(0);
}

/* Header shell */
body .dreamyheader26 {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9990;
  background: transparent;
  border-bottom: 1px solid var(--dreamyheader26-border);
  isolation: isolate;
  /* keep blur behind content (prevents SVG/text softness) */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  /* Force GPU layer for smooth sticky on mobile */
}

/* Disable sticky on cart and checkout pages as requested */
body.dreamycartpage26 .dreamyheader26,
body.dreamycheckout26-checkout .dreamyheader26 {
  position: relative !important;
  top: auto !important;
}


/* Position adjustment for logged-in users with admin bar */
.admin-bar .dreamyheader26 {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .dreamyheader26 {
    top: 46px;
  }
}

.dreamyheader26::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}

/* Scroll-compressed state (JS adds .dreamyheader26--scrolled after 80px) */
.dreamyheader26--scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.09);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.dreamyheader26-bar {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  transition: padding 0.28s cubic-bezier(0.23, 1, 0.32, 1);
}

.dreamyheader26--scrolled .dreamyheader26-bar {
  padding-top: 8px;
  padding-bottom: 8px;
}

.dreamyheader26-logo img {
  transition: height 0.28s cubic-bezier(0.23, 1, 0.32, 1);
}

.dreamyheader26--scrolled .dreamyheader26-logo img {
  height: 18px;
}

.dreamyheader26-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

/* Burger */
.dreamyheader26-burger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dreamyheader26-burger:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--dreamyheader26-border);
}

.dreamyheader26-burgerLines {
  width: 18px;
  height: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dreamyheader26-burgerLines::before,
.dreamyheader26-burgerLines::after,
.dreamyheader26-burgerLines .dreamyheader26-burgerMiddle {
  content: "";
  display: block;
  height: 1.5px;
  background-color: #C9A04E;
  border-radius: 2px;
  width: 100%;
}

/* Utility menu (top-left) */
.dreamyheader26-utility {
  display: none;
  /* enabled on desktop */
  min-width: 0;
}

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

.dreamyheader26-menu--utility {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.dreamyheader26-menu--utility>li>a {
  font-family: var(--font-ui, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-primary, #333333);
  display: inline-block;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
  transition: transform 220ms var(--dreamyheader26-ease), opacity 220ms var(--dreamyheader26-ease), color 220ms var(--dreamyheader26-ease);

}



/* Logo */
.dreamyheader26-logo {
  text-align: center;
  min-width: 0;
}

.dreamyheader26-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}

.dreamyheader26-logo img {
  height: 22px;
  width: auto;
}

.dreamyheader26-wordmark {
  font-family: var(--font-edit, "Cormorant Garamond", Georgia, "Times New Roman", serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Actions */
.dreamyheader26-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.dreamyheader26-iconBtn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dreamyheader26-iconBtn:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--dreamyheader26-border);
}

.dreamyheader26-icon {
  width: 19px;
  height: 19px;
  display: block;
  color: #C9A04E;
  filter: drop-shadow(0 1px 1px rgba(180, 130, 20, 0.16));
}

.dreamyheader26-count {
  position: absolute;
  top: 7px;
  right: 7px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ink-primary, #333333);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.92);
}

.dreamyheader26-count.dreamyheader26-count--zero {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

/* Primary menu row */
.dreamyheader26-primary {
  display: none;
  /* desktop only */
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.dreamyheader26-menu--primary {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.dreamyheader26-menu--primary::-webkit-scrollbar {
  display: none;
}

.dreamyheader26-menu--primary>li {
  position: relative;
}

.dreamyheader26-menu--primary>li>a {
  font-family: var(--font-ui, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-primary, #333333);
  display: inline-block;
  padding: 8px 2px;
  position: relative;
  text-decoration: none;
  transition: transform 220ms var(--dreamyheader26-ease), opacity 220ms var(--dreamyheader26-ease), color 220ms var(--dreamyheader26-ease);

}




/* Link micro-motion (restores premium hover animation without underline) */
.dreamyheader26-menu--utility>li>a:hover,
.dreamyheader26-menu--utility>li>a:focus-visible,
.dreamyheader26-menu--primary>li>a:hover,
.dreamyheader26-menu--primary>li>a:focus-visible {
  transform: translateY(-1px);
  opacity: 0.86;
}

/* Dropdowns */
.dreamyheader26-menu--primary .sub-menu {
  list-style: none;
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--dreamyheader26-border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

/* 2-column layout when sub-menu has 5 or more items */
.dreamyheader26-menu--primary > li:has(.sub-menu li:nth-child(5)) > .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 420px;
  column-gap: 6px;
}

.dreamyheader26-menu--primary li:focus-within>.sub-menu,
.dreamyheader26-menu--primary li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dreamyheader26-menu--primary .sub-menu li a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--ink-primary, #333333);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.dreamyheader26-menu--primary .sub-menu li a:hover,
.dreamyheader26-menu--primary .sub-menu li a:focus-visible {
  background: rgba(0, 0, 0, 0.035);
}

/* Overlay */
.dreamyheader26-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  transition: background 0.2s ease;
}

/* Lighter overlay for compact search dropdown */
.dreamyheader26-overlay--search {
  background: rgba(0, 0, 0, 0.10);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}


.dreamyheader26-overlay[hidden] {
  display: none !important;
}

/* Panels shared */
.dreamyheader26-drawer,
.dreamyheader26-cart {
  position: fixed;
  top: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  box-shadow: var(--dreamyheader26-shadow);
  opacity: 0;
  transition: transform 0.35s var(--dreamyheader26-ease), opacity 0.35s var(--dreamyheader26-ease);
}

/* Cart: slides in from right */
.dreamyheader26-cart {
  right: 0;
  transform: translate3d(18px, 0, 0);
}

/* Drawer: slides in from left */
.dreamyheader26-drawer {
  left: 0;
  right: auto;
  transform: translate3d(-100%, 0, 0);
}

.dreamyheader26-search {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none; /* clicks pass through to overlay for close-on-outside-click */
}

.dreamyheader26-searchPanel {
  pointer-events: auto;
  position: absolute;
  top: var(--dh26-search-top, 72px);
  right: 16px;
  width: min(460px, calc(100vw - 32px));
  max-height: calc(100vh - var(--dh26-search-top, 72px) - 24px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--dreamyheader26-border);
  border-radius: 20px;
  box-shadow: var(--dreamyheader26-shadow);
  overflow: hidden;
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.dreamyheader26-search.dreamyheader26-isOpen .dreamyheader26-searchPanel {
  transform: translateY(0);
  opacity: 1;
}

/* Open state toggled by JS */
.dreamyheader26-panel--open,
.dreamyheader26-isOpen {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* Panel heads */
.dreamyheader26-drawerHead,
.dreamyheader26-cartHead,
.dreamyheader26-searchHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px;
  border-bottom: 1px solid var(--dreamyheader26-border);
}

.dreamyheader26-drawerTitle,
.dreamyheader26-cartTitle {
  font-family: var(--font-edit, "Cormorant Garamond", Georgia, "Times New Roman", serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.dreamyheader26-searchLabel {
  font-family: var(--font-edit, "Cormorant Garamond", Georgia, "Times New Roman", serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.dreamyheader26-close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dreamyheader26-close:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--dreamyheader26-border);
}

.dreamyheader26-close span {
  font-size: 20px;
  line-height: 1;
}

/* Drawer brand (replaces generic "Menu" title) */
.dreamyheader26-drawerBrand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink-primary, #333333);
}

.dreamyheader26-drawerBrand img,
.dreamyheader26-drawerHead .custom-logo {
  height: 22px;
  width: auto;
  display: block;
}

.dreamyheader26-drawerBrand .dreamyheader26-wordmark {
  font-size: 1.1rem;
}

/* Drawer body */
.dreamyheader26-drawerBody {
  padding: 14px 12px;
  overflow: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.dreamyheader26-drawerMenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Primary: top-level items — position:relative to contain the chevron */
.dreamyheader26-drawerMenu--primary > li {
  position: relative;
}

/* Primary top-level links — large, prominent, 48px tap target */
.dreamyheader26-drawerMenu--primary > li > a {
  display: block;
  padding: 14px 52px 14px 12px; /* right space for chevron */
  border-radius: 14px;
  color: var(--ink-primary, #333333);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.18s ease;
}

.dreamyheader26-drawerMenu--primary > li > a:hover,
.dreamyheader26-drawerMenu--primary > li > a:focus-visible {
  background: rgba(0, 0, 0, 0.035);
}

/* Sub-menu expand toggle (injected by JS) */
.dreamyheader26-drawerExpand {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.45);
  transition: background 0.18s ease;
}

.dreamyheader26-drawerExpand:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--ink-primary, #333333);
}

.dreamyheader26-drawerExpand svg {
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.dreamyheader26-drawerMenu li.dreamyheader26-expanded > .dreamyheader26-drawerExpand svg {
  transform: rotate(180deg);
}

/* Sub-menus: collapsed with smooth accordion */
.dreamyheader26-drawerMenu .sub-menu {
  list-style: none;
  padding: 0 0 4px 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s cubic-bezier(0.23, 1, 0.32, 1);
}

.dreamyheader26-drawerMenu li.dreamyheader26-expanded > .sub-menu {
  max-height: 480px;
}

.dreamyheader26-drawerMenu .sub-menu a {
  display: block;
  padding: 10px 12px 10px 26px;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.dreamyheader26-drawerMenu .sub-menu a:hover,
.dreamyheader26-drawerMenu .sub-menu a:focus-visible {
  background: rgba(0, 0, 0, 0.03);
  color: var(--ink-primary, #333333);
}

/* Utility links in drawer — smaller, secondary weight */
.dreamyheader26-drawerMenu--utility > li > a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: rgba(0, 0, 0, 0.50);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.dreamyheader26-drawerMenu--utility > li > a:hover,
.dreamyheader26-drawerMenu--utility > li > a:focus-visible {
  background: rgba(0, 0, 0, 0.03);
  color: var(--ink-primary, #333333);
}

.dreamyheader26-divider {
  height: 1px;
  background: var(--dreamyheader26-border);
  margin: 14px 4px;
}

/* Drawer footer — pinned account link */
.dreamyheader26-drawerFoot {
  padding: 12px 16px 16px;
  border-top: 1px solid var(--dreamyheader26-border);
  display: flex;
  align-items: center;
  gap: 6px;
}

.dreamyheader26-drawerFootLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--dreamyheader26-border2);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--ink-primary, #333333);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.dreamyheader26-drawerFootLink:hover,
.dreamyheader26-drawerFootLink:focus-visible {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.18);
}

.dreamyheader26-drawerFootLink img {
  width: 14px;
  height: 14px;
  display: block;
}

/* Search box */
.dreamyheader26-searchBox {
  padding: 0 18px 12px;
}

.dreamyheader26-searchInput {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--dreamyheader26-border);
  background: #fff;
  outline: none;
}

.dreamyheader26-searchInput:focus {
  border-color: rgba(0, 0, 0, 0.18);
}

.dreamyheader26-searchHint {
  font-size: 0.85rem;
  color: var(--ink-secondary, #757575);
  margin-top: 10px;
}

/* Results */
.dreamyheader26-results {
  padding: 10px 10px 16px;
  overflow-y: auto;
  flex: 1;
}

.dreamyheader26-resultsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.dreamyheader26-result {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.dreamyheader26-result:hover,
.dreamyheader26-result:focus-visible {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--dreamyheader26-border);
}

.dreamyheader26-resultStage {
  position: relative;
  width: 64px;
  height: 78px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dreamyheader26-resultImg {
  width: 84%;
  height: auto;
  object-fit: contain;
  z-index: 2;
  transform: translateZ(0);
}

.dreamyheader26-resultShadow {
  position: absolute;
  bottom: 6px;
  width: 56%;
  height: 14px;
  background: var(--shadow-ground, radial-gradient(closest-side, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%));
  opacity: 0.35;
  filter: blur(5px);
}

.dreamyheader26-resultMeta {
  min-width: 0;
}

.dreamyheader26-resultTag {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #999;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dreamyheader26-resultTitle {
  margin: 0;
  font-family: var(--font-edit, "Cormorant Garamond", Georgia, "Times New Roman", serif);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dreamyheader26-resultPrice {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-primary, #333333);
  white-space: nowrap;
}

.dreamyheader26-resultEmpty {
  padding: 18px 10px;
  color: var(--ink-secondary, #757575);
  font-size: 0.95rem;
}

.dreamyheader26-resultFooter {
  padding: 12px 12px 0;
  display: flex;
  justify-content: flex-end;
}

.dreamyheader26-viewAll {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-bottom: 1px solid var(--ink-primary, #333333);
  padding-bottom: 4px;
}

/* Cart */
.dreamyheader26-cartBody {
  padding: 0 18px 18px;
  overflow: auto;
  flex: 1;
}

/* --- DreamyCart26: Free shipping progress (drawer) --- */
.dreamycart26-freeship {
  margin: 16px 0 18px;
  padding: 12px 12px 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  background: #fff;
}

.dreamycart26-freeshipRow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 0;

}

.dreamycart26-freeshipLabel {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
}

.dreamycart26-freeshipValue {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 600;
  white-space: nowrap;
}

.dreamycart26-freeshipNote {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.60);
}

/* --- Mini cart styling (drawer) --- */
.dreamyheader26-cartBody .woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dreamyheader26-cartBody .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.dreamyheader26-cartBody .woocommerce-mini-cart-item:last-child {
  border-bottom: none;
}

.dreamyheader26-cartBody .woocommerce-mini-cart-item a {
  text-decoration: none;
}

.dreamyheader26-cartBody .woocommerce-mini-cart-item a img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.12));
}

.dreamyheader26-cartBody .woocommerce-mini-cart-item .quantity {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.62);
}

.dreamyheader26-cartBody .woocommerce-mini-cart-item .variation {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.56);
}

.dreamyheader26-cartBody .woocommerce-mini-cart-item .remove {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.65);
}

.dreamyheader26-cartBody .woocommerce-mini-cart-item .remove:hover {
  border-color: rgba(0, 0, 0, 0.22);
}

.dreamyheader26-cartFoot {
  padding: 16px 18px 20px;
  border-top: 1px solid var(--dreamyheader26-border);
  display: grid;
  gap: 10px;
}

.dreamyheader26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  border: 1px solid var(--ink-primary, #333333);
}

.dreamyheader26-btn--primary {
  background: var(--ink-primary, #333333);
  color: #fff;
}

.dreamyheader26-btn--ghost {
  background: transparent;
  color: var(--ink-primary, #333333);
}

/* Lock scroll when panels open */
.dreamyheader26-lock {
  overflow: hidden;
}

/* Desktop rules */
@media (min-width: 980px) {
  .dreamyheader26-bar {
    padding: 14px 24px;
  }

  .dreamyheader26-burger {
    display: none;
  }

  .dreamyheader26-utility {
    display: block;
  }

  .dreamyheader26-primary {
    display: block;
  }

  .dreamyheader26-logo {
    text-align: left;
  }
}

/* Mobile refinement */
@media (max-width: 520px) {
  .dreamyheader26-actions {
    gap: 6px;
  }

  .dreamyheader26-iconBtn {
    width: 40px;
    height: 40px;
  }
}

/* Panel hidden safety (prevents invisible overlays blocking clicks) */
#dreamyheader26-drawer[hidden],
#dreamyheader26-cart[hidden],
#dreamyheader26-search[hidden] {
  display: none !important;
}


/* DreamyCart26 note-only variant (no progress bar) */
.dreamycart26-freeship--note {
  border-color: rgba(0, 0, 0, 0.08);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.00));
}

/* --- Empty cart: curated products --- */
.dreamycart26-curated {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--dreamyheader26-border);
}

.dreamycart26-curated-head {
  font-family: var(--font-ui, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 14px;
}

.dreamycart26-curated-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dreamycart26-curated-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--ink-primary, #333333);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.dreamycart26-curated-item:hover,
.dreamycart26-curated-item:focus-visible {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--dreamyheader26-border);
}

.dreamycart26-curated-img {
  width: 52px;
  height: 52px;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dreamycart26-curated-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dreamycart26-curated-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.dreamycart26-curated-name {
  font-family: var(--font-edit, "Cormorant Garamond", Georgia, serif);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dreamycart26-curated-price {
  font-size: 0.80rem;
  color: rgba(0, 0, 0, 0.55);
}