/** Shopify CDN: Minification failed

Line 209:0 All "@import" rules must come first

**/
/*
 * DzipMart Premium Global Enhancements
 * Applied across every page of the storefront
 */

/* ─── Brand tokens ─────────────────────────────────────────── */
:root {
  --dz-gold: #2874f0;
  --dz-gold-light: #f0c66b;
  --dz-gold-gradient: linear-gradient(135deg, #f0c66b, #2874f0);
  --dz-ink: #1a1208;
  --dz-ink-soft: #5a4a38;
  --dz-cream: #ffffff;
  --dz-border: #e8e0d4;
  --dz-shadow-sm: 0 2px 8px rgba(26, 18, 8, 0.07);
  --dz-shadow-md: 0 8px 24px rgba(26, 18, 8, 0.10);
  --dz-shadow-lg: 0 20px 48px rgba(26, 18, 8, 0.13);
  --dz-radius: 14px;
  --dz-radius-pill: 999px;
  --dz-transition: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Typography refinements ──────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
}

/* ─── Product cards ───────────────────────────────────────── */
.product-card,
.card-wrapper,
.card--product {
  border-radius: var(--dz-radius) !important;
  transition: transform var(--dz-transition), box-shadow var(--dz-transition) !important;
}

.product-card:hover,
.card-wrapper:hover,
.card--product:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--dz-shadow-lg) !important;
}

/* Product card image zoom on hover */
.product-card .media img,
.card__media img,
.card__inner img {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.product-card:hover .media img,
.card-wrapper:hover .card__media img,
.card-wrapper:hover .card__inner img {
  transform: scale(1.05) !important;
}

/* ─── Buttons ─────────────────────────────────────────────── */
.button,
.btn,
button[type="submit"]:not(.dzipmart-marketplace-pilot__button) {
  transition: transform var(--dz-transition), box-shadow var(--dz-transition), opacity var(--dz-transition) !important;
}

.button:hover,
.btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--dz-shadow-md) !important;
}

/* Primary CTA buttons — use brand gold */
.button--primary:not(.dzipmart-marketplace-pilot__button),
.shopify-payment-button__button--unbranded {
  background: var(--dz-gold-gradient) !important;
  color: var(--dz-ink) !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(40, 116, 240, 0.28) !important;
}

/* ─── Section headings ────────────────────────────────────── */
.section-resource-list__header .h2,
.section-resource-list__header h2 {
  position: relative;
  display: inline-block;
}

.section-resource-list__header .h2::after,
.section-resource-list__header h2::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--dz-gold-gradient);
  border-radius: 2px;
}

/* ─── Collection cards ────────────────────────────────────── */
.collection-card {
  border-radius: var(--dz-radius) !important;
  overflow: hidden;
  transition: transform var(--dz-transition), box-shadow var(--dz-transition) !important;
}

.collection-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--dz-shadow-lg) !important;
}

/* ─── Price ───────────────────────────────────────────────── */
.price__number,
.price--on-sale .price__number {
  font-weight: 800 !important;
  letter-spacing: -0.03em;
}

/* Sale price highlight */
.price__number--sale,
.price--on-sale > .price__container .price__number:first-child {
  color: #c0392b !important;
}

/* ─── Add to cart / quick add ─────────────────────────────── */
.quick-add__submit,
product-form button[type="submit"] {
  border-radius: var(--dz-radius-pill) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

/* ─── Announcement bar ────────────────────────────────────── */
.announcement-bar {
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ─── Navigation ──────────────────────────────────────────── */
.header__menu-item a,
.menu__item a {
  font-weight: 600;
  transition: color var(--dz-transition) !important;
}

/* ─── Search bar ──────────────────────────────────────────── */
.search__input,
input[type="search"] {
  border-radius: var(--dz-radius-pill) !important;
  padding-left: 1.2rem !important;
  transition: box-shadow var(--dz-transition) !important;
}

.search__input:focus,
input[type="search"]:focus {
  box-shadow: 0 0 0 3px rgba(40, 116, 240, 0.18) !important;
  outline: none !important;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer-content {
  border-top: 3px solid var(--dz-gold) !important;
  padding-top: 2rem !important;
}

/* ─── Trust / badges ──────────────────────────────────────── */
.home-marketplace__trust-item {
  transition: transform var(--dz-transition) !important;
}

.home-marketplace__trust-item:hover {
  transform: translateY(-2px) !important;
}

/* ─── Breadcrumbs ─────────────────────────────────────────── */
.breadcrumbs__link,
nav[aria-label="breadcrumbs"] a {
  color: var(--dz-gold) !important;
  font-weight: 600;
}

/* ─── Smooth page transitions ─────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .card-wrapper,
  .product-card,
  .collection-card,
  .featured-blog-posts-card {
    will-change: transform;
  }
}

/* ─── Mobile refinements ──────────────────────────────────── */
@media (max-width: 749px) {
  .button,
  .btn {
    min-height: 48px !important;
    font-size: 0.95rem !important;
  }
}

/* ═════════════════════════════════════════════════════════════
   GLOBAL TYPOGRAPHY & FEEL — v2 (Apr 14 2026)
   Pulls the prototype's DM Sans + Outfit DNA across every page
   ═════════════════════════════════════════════════════════════ */

/* Ensure Outfit + DM Sans are available even where theme scopes differ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&display=swap');

/* Body defaults — clean, readable, premium */
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: #111827;
}

/* Heading scale — Outfit, tight tracking */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6,
.section-resource-list__header h2,
.product__title,
.card__heading,
.page__title {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-weight: 700 !important;
  color: #111827;
  line-height: 1.2 !important;
}

/* Stronger hierarchy for hero-level page titles */
.page__title, .product__title {
  letter-spacing: -0.02em;
}

/* Product title cleanup on cards */
.card__heading,
.product-card__title,
.card--product .card__heading {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

/* Product card cleaner shadows (softer than default Horizon) */
.card-wrapper:not(:hover),
.product-card:not(:hover) {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06) !important;
}

/* Pricing — use Outfit, larger on detail pages */
.price,
.price__regular,
.price__sale {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
}

/* Sale badge — bolder, gold */
.badge--sale,
.badge[data-badge-type="sale"],
.price__badge-sale {
  background: linear-gradient(135deg, #2874f0, #e8b455) !important;
  color: #fff !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  border-radius: 4px !important;
  padding: 3px 8px !important;
}

/* Form inputs — subtle polish without breaking checkout */
input[type="text"]:not(.search__input),
input[type="email"],
input[type="tel"],
input[type="number"]:not([name*="quantity"]),
textarea,
select:not(.search-cat) {
  border-radius: 8px !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
}

input[type="text"]:not(.search__input):focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:not([name*="quantity"]):focus,
textarea:focus {
  border-color: #2874f0 !important;
  box-shadow: 0 0 0 3px rgba(40, 116, 240, 0.15) !important;
  outline: none !important;
}

/* Labels — slightly smaller, bolder */
label {
  font-weight: 600;
  font-size: 0.85rem;
}

/* Links — gold on hover */
a:not(.button):not(.btn):not(.card-wrapper):not(.card):not(.nav-btn):not(.nc):not(.qf):not(.logo):not(.nav-cats a):hover {
  color: #2874f0;
}

/* Empty states — let them breathe */
.cart-page--empty,
.empty-cart,
.empty-state,
[class*="empty"] > *[class*="message"] {
  padding: 3rem 1.5rem !important;
  text-align: center;
}

.cart-page--empty h1,
.cart-page--empty h2,
.empty-cart h1,
.empty-state h2 {
  margin-bottom: 0.5rem !important;
}

/* Cart item row — softer background, clearer separators */
.cart-item,
[class*="cart__item"],
.cart-items__item {
  background: #fff;
  border-radius: 12px !important;
  padding: 16px !important;
  margin-bottom: 10px;
  border: 1px solid #e5e7eb !important;
  transition: box-shadow 0.2s;
}

.cart-item:hover,
.cart-items__item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Cart summary / subtotal card */
.cart-page__summary,
[class*="cart__summary"],
.cart-summary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px !important;
  box-shadow: var(--dz-shadow-sm);
}

/* Checkout button prominence */
.cart__checkout-button,
.shopify-payment-button__button,
[name="checkout"] {
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  min-height: 52px !important;
  border-radius: 10px !important;
  font-size: 1rem !important;
}

/* Product gallery images — soft rounded corners */
.product__media,
.media--product,
.product-gallery__media {
  border-radius: 14px !important;
  overflow: hidden;
}

/* Product detail content spacing */
.product-information,
.product__info,
.product-info-panel {
  padding: 1rem 0;
}

/* Variant picker polish */
.variant-picker__option-value,
.variant-swatch,
[data-variant-swatch] {
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s !important;
}

.variant-picker__option-value:hover,
.variant-swatch:hover {
  transform: translateY(-1px);
}

.variant-picker__option-value[aria-checked="true"],
.variant-swatch[aria-checked="true"] {
  border-color: #2874f0 !important;
  box-shadow: 0 0 0 2px rgba(40, 116, 240, 0.2) !important;
}

/* Quantity stepper polish */
.quantity-selector,
.qty-input,
.quantity__input {
  border-radius: 8px !important;
}

/* Toast / notifications area (if used) */
.toast,
.notification,
.message-banner {
  border-radius: 10px !important;
  box-shadow: var(--dz-shadow-md) !important;
}

/* Modal polish */
dialog,
.modal,
[role="dialog"] {
  border-radius: 16px !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2) !important;
}

/* Focus-visible consistency (keyboard nav) */
*:focus-visible {
  outline: 2px solid #2874f0 !important;
  outline-offset: 2px;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background: rgba(40, 116, 240, 0.22);
  color: #111827;
}

/* Page / container max-width consistency — match prototype's 1280px */
.main-content,
.page-width,
[class*="container--page"] {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ═════════════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE POLISH (Apr 15 2026)
   ═════════════════════════════════════════════════════════════ */
.product__title,
[class*="product-title"] h1,
.product-info-panel h1 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
}
.product__price .price__number,
.product-info-panel .price__number {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 800 !important;
}
.price--on-sale .price__regular .price__number {
  text-decoration: line-through !important;
  color: #9ca3af !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}
.price--on-sale .price__sale .price__number {
  color: #c62828 !important;
}
variant-picker fieldset[role="radiogroup"] label,
.variant-picker__option-value {
  min-width: 44px !important;
  min-height: 44px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
product-form button[type="submit"],
.product-form__submit,
.quick-add__submit {
  min-height: 56px !important;
  font-size: 15px !important;
  letter-spacing: 0.03em !important;
  background: linear-gradient(135deg, #2874f0, #e8b455) !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(40, 116, 240, 0.28) !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
}
product-form button[type="submit"]:hover,
.product-form__submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(40, 116, 240, 0.38) !important;
}
.shopify-payment-button__button {
  min-height: 56px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  border-radius: 10px !important;
}
.product-gallery,
product-gallery,
[class*="product__media"] {
  border-radius: 16px !important;
  overflow: hidden;
}
.product-gallery__thumbnails [class*="thumbnail"],
product-gallery [class*="thumbnail"] {
  border-radius: 8px !important;
  overflow: hidden;
  transition: box-shadow 0.15s, border-color 0.15s !important;
}
.product-gallery__thumbnails [class*="thumbnail"][aria-current="true"],
product-gallery [class*="thumbnail"][aria-current="true"] {
  box-shadow: 0 0 0 2px #2874f0 !important;
}
.product-info-panel [class*="description"],
product-description {
  line-height: 1.7 !important;
  font-size: 14px !important;
  color: #333 !important;
}
.quantity-selector,
quantity-selector {
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  overflow: hidden;
}
@media (max-width: 749px) {
  [class*="sticky-add-to-cart"] {
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08) !important;
    border-top: 1px solid #e5e7eb !important;
    backdrop-filter: blur(10px);
  }
}


/* ── Collapse empty marketplace pilot sections (no gap until JS loads content) ── */
.dzipmart-marketplace-pilot {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  min-height: 0 !important;
}
.dzipmart-marketplace-pilot.dz-pilot-loaded {
  padding-block-start: 48px !important;
  padding-block-end: 56px !important;
}


/* ── Collapse empty marketplace pilot sections (no gap until JS loads content) ── */
.dzipmart-marketplace-pilot {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
  min-height: 0 !important;
}
.dzipmart-marketplace-pilot.dz-pilot-loaded {
  padding-block-start: 48px !important;
  padding-block-end: 56px !important;
}
