

:root {
  --df-font-serif: "Cormorant Garamond", Georgia, serif;
  --df-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --df-color-page: #f1e9df;
  --df-color-page-decor: rgba(222, 208, 189, 0.48);
  --df-color-card: #f7f4ee;
  --df-color-card-border: rgba(148, 122, 92, 0.28);
  --df-color-accent: #9b7348;
  --df-color-text: #3f2c22;
  --df-color-text-soft: rgba(45, 35, 26, 0.82);
  --df-color-text-muted: rgba(45, 35, 26, 0.66);
  --df-color-rule: rgba(148, 122, 92, 0.24);
  --df-color-rule-strong: rgba(148, 122, 92, 0.72);

  --df-container-max: 1400px;
  --df-container-padding: 32px;
  --df-section-padding-top: 34px;
  --df-section-padding-bottom: 92px;
  --df-grid-gap: 32px;

  --df-card-radius: 22px;
  --df-card-padding: 24px;
  --df-card-top-padding: 18px;
  --df-card-min-height: 500px;
  --df-card-shadow: 0 10px 22px rgba(78, 56, 33, 0.04);
}

/* Shared eyebrow normalization */
.df-trays-intro__eyebrow,
.df-selection-summary__eyebrow{
  margin: 0 0 10px !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #6f6258 !important;
}

@media (min-width: 1025px){
  .df-trays-hero-pattern{
    background:
      linear-gradient(rgba(224, 208, 190, 0.90), rgba(224, 208, 190, 0.90)),
      url("/images/logo.png") center center / 420px auto repeat,
      #e0d0be !important;
    opacity: 1 !important;
  }
}

/* Final desktop hero replacement: brand color + subtle logo pattern */
@media (min-width: 1025px){
  .df-trays-hero-pattern{
    background:
      linear-gradient(rgba(224, 208, 190, 0.88), rgba(224, 208, 190, 0.88)),
      url("/images/logo.png") center center / 360px auto no-repeat,
      url("/images/icon_trays.png") center center / 720px auto repeat,
      #e0d0be !important;
    background-repeat: no-repeat, no-repeat, repeat, no-repeat !important;
    background-size: auto, 360px auto, 720px auto, auto !important;
    background-position: center center, center center, center center, center center !important;
    opacity: 1 !important;
  }
}

/* Desktop hero replacement: brand color + subtle logo pattern */
@media (min-width: 1025px){
  .df-trays-hero-pattern{
    background-color: #e0d0be !important;
    background-image:
      linear-gradient(rgba(224, 208, 190, 0.88), rgba(224, 208, 190, 0.88)),
      url("/images/logo.png") !important;
    background-repeat: repeat !important;
    background-size: auto, 168px auto !important;
    background-position: center center !important;
    opacity: 1 !important;
  }
}

.df-trays-page {
  background: var(--df-color-page);
}

.df-trays-page .footer {
  margin-top: 0;
}

.df-trays-section {
  position: relative;
  overflow: hidden;
  padding: var(--df-section-padding-top) 0 var(--df-section-padding-bottom);
  background: var(--df-color-page);
  color: var(--df-color-text);
  font-family: var(--df-font-sans);
}

.df-trays-section__decor {
  position: absolute;
  pointer-events: none;
  background-image: url('/images/icon_trays.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.08;
  filter: grayscale(100%) contrast(0.9);
}


.df-trays-section__decor--top-right {
  top: 54px !important;
  right: 18px !important;
  width: 230px !important;
  height: 230px !important;
  transform: none !important;
  opacity: 0.05 !important;
}


.df-trays-section__decor--bottom-left {
  bottom: 34px;
  left: -28px;
  width: 220px;
  height: 220px;
  transform: rotate(8deg);
}

.df-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - (var(--df-container-padding) * 2)), var(--df-container-max));
  margin-inline: auto;
}

.df-trays-intro {
  max-width: 1320px;
  margin-bottom: 28px;
}

.df-trays-intro__eyebrow {
  margin: 0 0 10px;
  color: var(--df-color-text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--df-font-sans);
}

.df-trays-intro__title {
  max-width: 1160px;
  margin: 0;
  font-family: var(--df-font-serif);
  font-size: clamp(3rem, 4.6vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--df-color-text);
}

.df-trays-intro__description {
  max-width: 980px;
  margin: 14px 0 0;
  color: var(--df-color-text-soft);
  font-family: var(--df-font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  white-space: nowrap;
}

.df-trays-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--df-grid-gap);
}

.df-tray-card {
  min-height: var(--df-card-min-height);
  padding: var(--df-card-top-padding) var(--df-card-padding) var(--df-card-padding);
  border: 1px solid var(--df-color-card-border);
  border-radius: var(--df-card-radius);
  background: var(--df-color-card);
  box-shadow: var(--df-card-shadow);
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
}

.df-tray-card__top-rule {
  width: calc(100% + (var(--df-card-padding) * 2));
  height: 8px;
  margin: -18px calc(var(--df-card-padding) * -1) 20px;
  border-radius: 999px;
  background: var(--df-color-accent);
}

.df-tray-card__head {
  display: block;
  max-width: 100%;
}

.df-tray-card__title {
  margin: 0;
  color: var(--df-color-text);
  font-family: var(--df-font-serif);
  font-size: clamp(2.45rem, 2.7vw, 3.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
}

.df-tray-card__copy {
  max-width: 100%;
  margin: 10px 0 0;
  color: var(--df-color-text-soft);
  font-family: var(--df-font-serif);
  font-size: clamp(1.22rem, 1.45vw, 1.55rem);
  font-style: italic;
  line-height: 1.28;
}

.df-tray-card__meta {
  margin-top: 18px;
}

.df-tray-card__price-line {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--df-color-text);
}

.df-tray-card__includes {
  margin-top: 18px;
}

.df-tray-card__mini-rule {
  width: 92px;
  height: 3px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--df-color-rule-strong);
  opacity: 0.5;
}

.df-tray-card__label {
  margin: 0;
  color: var(--df-color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--df-font-sans);
}

.df-tray-card__list {
  max-width: 100%;
  margin: 10px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  color: #5A473B;
}

.df-tray-card__footer {
  margin-top: auto;
  padding-top: 18px;
}

.df-tray-card__divider {
  width: 100%;
  height: 1px;
  background: var(--df-color-rule);
}

.df-tray-card__pairing {
  max-width: 100%;
  margin: 14px 0 0;
  color: var(--df-color-text-muted);
  font-family: var(--df-font-serif);
  font-size: clamp(1.22rem, 1.45vw, 1.55rem);
  font-style: italic;
  line-height: 1.34;
}

.df-tray-card__seasonal {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(148, 122, 92, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.24);
}

.df-tray-card__seasonal-title {
  margin: 0 0 12px;
  color: var(--df-color-accent);
  font-family: var(--df-font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.df-tray-card__seasonal-options {
  display: grid;
  gap: 8px;
}

.df-tray-card__seasonal-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--df-color-text);
  font-family: var(--df-font-serif);
  font-size: clamp(1.18rem, 1.25vw, 1.34rem);
  font-weight: 500;
  line-height: 1.35;
  cursor: pointer;
}

.df-tray-card__seasonal-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--df-color-accent);
}

.df-tray-card__seasonal-copy {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--df-color-rule);
  color: var(--df-color-text-soft);
  font-family: var(--df-font-serif);
  font-size: clamp(1.14rem, 1.3vw, 1.36rem);
  line-height: 1.48;
}

@media (min-width: 901px) {
  .df-tray-card__seasonal-options {
    max-width: 420px;
  }

  .df-tray-card__seasonal-copy {
    max-width: 620px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(148, 122, 92, 0.36);
  }
}

@media (max-width: 640px) {
  .df-tray-card__seasonal {
    margin-top: 20px;
    padding: 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.32);
  }

  .df-tray-card__seasonal-title {
    margin-bottom: 12px;
  }

  .df-tray-card__seasonal-option {
    font-size: 1.18rem;
    line-height: 1.35;
  }

  .df-tray-card__seasonal-copy {
    font-size: 1.14rem;
    line-height: 1.5;
  }
}

.df-tray-card__seasonal-copy[hidden] {
  display: none;
}

.df-tray-card__seasonal-copy p {
  margin: 0;
}

.df-tray-card__seasonal-copy p + p {
  margin-top: 12px;
}

.df-tray-card__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
}

.df-quantity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border: 1px solid var(--df-color-card-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.df-quantity__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--df-color-text);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.df-quantity__button:hover {
  opacity: 0.7;
}

.df-quantity__input {
  width: 24px;
  min-width: 24px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--df-color-text);
  font-family: var(--df-font-sans);
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}

.df-quantity__input::-webkit-outer-spin-button,
.df-quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.df-tray-card__cta {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--df-color-text);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.28em;
  cursor: pointer;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.df-tray-card__cta:hover {
  opacity: 0.72;
}

.df-tray-card__cta.is-added {
  transform: translateY(-1px);
  opacity: 0.82;
}

.df-selection-summary {
  margin-top: 34px;
}

.df-selection-summary__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px;
  border: 1px solid var(--df-color-card-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.32);
}

.df-selection-summary__eyebrow {
  margin: 0 0 6px;
  color: var(--df-color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.df-selection-summary__title {
  margin: 0;
  font-family: var(--df-font-serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--df-color-text);
}

.df-selection-summary__text {
  margin-top: 10px;
}

.df-selection-summary__empty {
  margin: 0;
  color: var(--df-color-text-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.df-selection-summary__item + .df-selection-summary__item {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--df-color-rule);
}

.df-selection-summary__item-main,
.df-selection-summary__item-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.df-selection-summary__item-main {
  margin-bottom: 2px;
}

.df-selection-summary__item-name {
  color: var(--df-color-text);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

.df-selection-summary__item-qty {
  color: var(--df-color-text);
  font-weight: 600;
  white-space: nowrap;
}

.df-selection-summary__item-sub {
  color: var(--df-color-text-muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.df-selection-summary__item-line-total {
  color: var(--df-color-text);
  font-weight: 600;
  white-space: nowrap;
}

.df-selection-summary__total {
  margin: 8px 0 0;
  color: var(--df-color-text);
  font-weight: 700;
  font-size: 1rem;
}

.df-bulk-order-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--df-color-rule);
  color: var(--df-color-text-soft);
}

.df-bulk-order-note__title {
  margin: 0 0 5px;
  font-family: var(--df-font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--df-color-accent);
}

.df-bulk-order-note__text {
  margin: 0 0 7px;
  color: var(--df-color-text);
  font-size: 1rem;
  line-height: 1.45;
}

.df-bulk-order-note__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--df-font-sans);
  font-size: 0.92rem;
  line-height: 1.35;
}

.df-bulk-order-note__links a {
  color: var(--df-color-accent);
  font-weight: 700;
  text-decoration: none;
}

.df-bulk-order-note__links a:hover {
  opacity: 0.85;
}

.df-selection-summary__actions {
  flex-shrink: 0;
}

.df-selection-summary__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--df-color-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.df-selection-summary__cta:hover {
  opacity: 0.9;
}

.df-selection-summary__cta.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .df-trays-intro__title {
    max-width: 700px;
    font-size: clamp(3rem, 5vw, 3.7rem);
  }

  .df-trays-intro__description {
    font-size: 1.18rem;
    max-width: 680px;
    white-space: normal;
  }
}

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

  .df-trays-intro {
    max-width: 760px;
  }

  .df-trays-intro__title {
    max-width: 720px;
  }

  .df-trays-intro__description {
    white-space: normal;
  }

  .df-selection-summary__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .df-trays-intro__title {
    font-size: 40px;
    line-height: 1.02;
    max-width: 500px;
  }

  .df-trays-intro__description {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.65;
    white-space: normal;
  }
}

@media (max-width: 640px) {
  :root {
    --df-container-padding: 16px;
    --df-section-padding-top: 34px;
    --df-section-padding-bottom: 80px;
    --df-card-padding: 22px;
    --df-card-top-padding: 16px;
    --df-card-min-height: auto;
  }

  
.df-trays-section__decor--top-right {
  top: 54px !important;
  right: 18px !important;
  width: 230px !important;
  height: 230px !important;
  transform: none !important;
  opacity: 0.05 !important;
}


  .df-trays-section__decor--bottom-left {
    bottom: -8px;
    left: -56px;
    width: 190px;
    height: 190px;
  }

  .df-trays-intro {
    margin-bottom: 18px;
  }

  .df-trays-intro__title {
    max-width: 9ch;
    font-size: 42px;
    line-height: 1.02;
  }

  .df-trays-intro__description {
    max-width: 100%;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.7;
    white-space: normal;
  }

  .df-tray-card__title {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .df-tray-card__copy,
  .df-tray-card__pairing,
  .df-tray-card__list {
    max-width: 100%;
  }

  .df-tray-card__copy {
    font-size: clamp(1.16rem, 5.2vw, 1.4rem);
    line-height: 1.3;
  }

  .df-tray-card__pairing {
    font-size: clamp(1.16rem, 5.2vw, 1.4rem);
  }

  .df-tray-card__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .df-selection-summary__title {
    font-size: 1.7rem;
  }

  .df-selection-summary__cta {
    width: 100%;
  }

  .df-selection-summary__actions {
    width: 100%;
  }
  
  
  
  /* =========================================================
   ADDON_TRAYS_CART_HEADER_AND_DRAWER_V1
   - Icona carrello mobile in alto a destra
   - Drawer cart da sinistra (vuoto / con prodotti)
   ========================================================= */

/* HEADER MOBILE: permette posizionamento assoluto */
@media (max-width: 900px){
  header .nav{
    position: relative;
  }

  /* Icona carrello trigger (creata via JS) */
  header .df-cart-trigger{
    position:absolute;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    width:38px;
    height:38px;
    border-radius:999px;
    border:1px solid rgba(184,146,69,0.35);
    background:rgba(248,244,238,0.92);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
    cursor:pointer;
    z-index:20;
  }
  header .df-cart-trigger svg{
    width:20px;
    height:20px;
  }
}

/* Overlay scuro dietro al drawer */
.df-cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
  z-index:10000;
}

/* Drawer carrello che entra da sinistra */
.df-cart-drawer{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  max-width:480px;
  height:100%;
  background:var(--df-color-page, #f1e9df);
  box-shadow:0 0 40px rgba(0,0,0,0.16);
  transform:translateX(-100%);
  transition:transform .25s ease;
  z-index:10001;
  display:flex;
  flex-direction:column;
}

/* Header del drawer ("CART" + X) */
.df-cart-drawer-header{
  padding:18px 20px;
  border-bottom:1px solid rgba(0,0,0,0.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-family: var(--df-font-serif);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:14px;
  color:var(--df-color-text);
}

@media (max-width: 900px){
  .df-cart-drawer-header{
    border-bottom:1px solid rgba(184,146,69,0.28);
  }
}
.df-cart-drawer-close{
  background:none;
  border:0;
  font-size:20px;
  cursor:pointer;
}

/* Corpo del drawer */
.df-cart-drawer-body{
  padding:26px 22px;
  flex:1;
  overflow-y:auto;
  font-family: var(--df-font-serif);
  color:var(--df-color-text);
}

/* Stato vuoto */
.df-cart-empty{
  text-align:center;
  margin-top:40px;
}
.df-cart-empty-title{
  font-size:18px;
  margin-bottom:40px;
}
.df-cart-empty-circle{
  width:90px;
  height:90px;
  border-radius:999px;
  margin:0 auto 18px;
  background:rgba(222, 208, 189, 0.48);
  display:flex;
  align-items:center;
  justify-content:center;
}
.df-cart-empty-circle svg{
  width:26px;
  height:26px;
  opacity:.5;
}
.df-cart-empty-cta{
  font-family: var(--df-font-sans);
  font-size:13px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--df-color-text);
}

/* Lista prodotti */
.df-cart-items{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.df-cart-item{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(0,0,0,0.06);
}
.df-cart-item img{
  width:80px;
  height:80px;
  object-fit:cover;
  border-radius:8px;
}
.df-cart-item-title{
  font-size:16px;
  margin-bottom:4px;
}
.df-cart-item-meta{
  font-size:14px;
  opacity:.8;
}

/* Footer con totale + pulsante checkout */
.df-cart-drawer-footer{
  padding:14px 18px 18px;
  border-top:1px solid rgba(0,0,0,0.06);
}
.df-cart-summary-line{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
  font-family: var(--df-font-sans);
  font-size:14px;
}
.df-cart-checkout-btn{
  width:100%;
  border-radius:999px;
  border:0;
  padding:12px 18px;
  background:var(--df-color-accent);
  color:#fff;
  font-family: var(--df-font-sans);
  font-size:14px;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
}

/* Stato aperto */
body.df-cart-open .df-cart-overlay{
  opacity:1;
  pointer-events:auto;
}
body.df-cart-open .df-cart-drawer{
  transform:translateX(0);
}
body.df-cart-open{
  overflow:hidden;
}



}

/* ADDON_DF_CART_DRAWER_EDITABLE_STYLE_V2 */

.df-cart-item{
  padding:16px 0;
  border-bottom:1px solid rgba(0,0,0,0.06);
}

.df-cart-item-main{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
  margin-bottom:8px;
}

.df-cart-item-text{
  display:flex;
  flex-direction:column;
  gap:2px;
  flex:1 1 auto;
  min-width:0;
}

.df-cart-item-title{
  font-family: var(--df-font-serif, "Cormorant Garamond", Georgia, serif);
  font-size:16px;
  line-height:1.3;
  color: var(--df-color-text, #2d231a);
  overflow-wrap:normal;
  word-break:normal;
  white-space:normal;
}

.df-cart-item-price{
  font-family: var(--df-font-sans, "Inter", sans-serif);
  font-size:14px;
  color: var(--df-color-text-soft, rgba(45,35,26,0.82));
}

/* cestino */
.df-cart-item-remove{
  background:none;
  border:0;
  cursor:pointer;
  padding:4px;
  flex:0 0 auto;
}

/* box quantità + subtotale */
.df-cart-item-controls{
  display:flex;
  align-items:center;
  gap:12px;
  font-family: var(--df-font-sans, "Inter", sans-serif);
  font-size:14px;
}

.df-cart-qty-box{
  display:inline-flex;
  align-items:center;
  border-radius:6px;
  border:1px solid rgba(148,122,92,0.45);
  background:#f7f4ee;
  overflow:hidden;
}

.df-cart-qty-btn{
  width:32px;
  height:32px;
  border:0;
  background:transparent;
  font-size:18px;
  line-height:1;
  cursor:pointer;
  color: var(--df-color-text, #2d231a);
}

.df-cart-qty{
  min-width:32px;
  text-align:center;
  font-weight:600;
}

.df-cart-item-line{
  margin-left:auto;
  font-weight:600;
  color: var(--df-color-text, #2d231a);
}

/* =========================================================
ICONA CESTINO — VERSIONE SVG DEFINITIVA
========================================================= */

.df-cart-item-remove{
background: none;
border: 0;
cursor: pointer;
padding: 4px;

width: 28px;
height: 28px;

display: inline-flex;
align-items: center;
justify-content: center;
}

.df-trash-icon{
width: 18px;
height: 18px;
display: block;
flex-shrink: 0;
}

/* =========================================================
   TRAYS MENU CLOSE — COMPLETE FIX
   ========================================================= */
.menu-close{
  display:none;
}

.menu-overlay{
  position: fixed;
  inset: 0;
  background: rgba(46,36,29,0.16);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 9997;
}

.menu-overlay.is-active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 900px){
  #primary-nav{
    position: fixed !important;
    padding-top: 72px !important;
    z-index: 9998 !important;
  }

  body > header{
    z-index: 9999 !important;
  }

  #primary-nav .menu-close{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(184,146,69,0.28) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,0.42) !important;
    color: #b89245 !important;
    font-family: "Cormorant Garamond", Georgia, serif !important;
    font-size: 28px !important;
    line-height: 1 !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10000 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }
}


/* =========================================================
   TRAYS CART CLOSE — MATCH GLOBAL MENU CLOSE
   ========================================================= */
.df-cart-drawer-close{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:40px !important;
  height:40px !important;
  padding:0 !important;
  margin:0 !important;
  border:1px solid rgba(184,146,69,0.35) !important;
  border-radius:999px !important;
  background:rgba(255,255,255,0.42) !important;
  color:#b89245 !important;
  font-family:"Cormorant Garamond", Georgia, serif !important;
  font-size:28px !important;
  line-height:1 !important;
  cursor:pointer !important;
  appearance:none !important;
  -webkit-appearance:none !important;
}

.df-cart-drawer-close:hover{
  background:rgba(255,255,255,0.62) !important;
}

.df-cart-drawer-close:active{
  transform:scale(0.96) !important;
}



/* =========================================================
   TRAYS PAGE — NARRATIVE RESTRUCTURE + SUMMARY FIXES
   ========================================================= */

.df-trays-overview{
  max-width: 980px;
  margin: 0 0 34px;
}

.df-trays-overview__title{
  margin: 0 0 10px;
  color: var(--df-color-text);
  font-family: var(--df-font-serif);
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
  font-weight: 500;
  line-height: 1.06;
  display: none !important;
}

.df-trays-overview__text{
  margin: 0;
  color: var(--df-color-text-soft);
  font-family: var(--df-font-sans);
  font-size: 1.02rem;
  line-height: 1.68;
  max-width: 70ch;
}

.df-trays-intro__tagline{
  max-width: 980px;
  margin: 10px 0 0;
  color: var(--df-color-text-soft);
  font-family: var(--df-font-serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.35;
  white-space: nowrap;
}

.df-trays-intro__description{
  display: none;
}

/* Keep "the oven" together a bit more cleanly */
.df-trays-intro__title{
  max-width: 12ch;
  line-height: 1.02;
}

/* Remove brown bar above tray cards */
.df-tray-card__top-rule{
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
}

.df-tray-card{
  gap: 0;
  min-height: 0;
}

.df-tray-card__media{
  border-radius: 18px;
  overflow: hidden;
  margin: 0 0 22px;
}

.df-tray-card__media img{
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.df-tray-card__content{
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
}

.df-tray-card__details{
  margin-top: 18px;
  border-top: 1px solid var(--df-color-rule);
  padding-top: 16px;
}

.df-tray-card__details summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--df-font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--df-color-accent);
  text-decoration: none;
}

.df-tray-card__details summary::after{
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.df-tray-card__details[open] summary::after{
  transform: rotate(225deg);
}

.df-tray-card__details summary::-webkit-details-marker{
  display:none;
}

.df-tray-card__details-body{
  padding-top: 14px;
}

.df-tray-card__details-body p{
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  color: #5A473B;
}

.df-tray-card__details-body p:last-child{
  margin-bottom: 0;
}

.df-tray-card__detail-label{
  color: #7A5A43;
  font-family: var(--df-font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Selection summary fixes */
.df-selection-summary{
  position: relative;
  margin-top: 28px;
}

.df-selection-summary__inner{
  position: relative;
  padding: 20px 24px;
  gap: 18px;
  overflow: hidden;
  z-index: 1;
}

.df-selection-summary__copy{
  max-width: 640px;
}

.df-selection-summary__eyebrow{
  margin-bottom: 4px;
}

.df-selection-summary__title{
  font-size: 1.78rem;
}

.df-selection-summary__text{
  margin-top: 8px;
}

.df-selection-summary__item + .df-selection-summary__item{
  margin-top: 10px;
  padding-top: 10px;
}

.df-selection-summary__total{
  margin-top: 6px;
}

.df-selection-summary__actions{
  align-self: center;
}

.df-selection-summary__cta{
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  background: #B89245;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: none;
}

.df-selection-summary__cta:hover{
  opacity: 0.92;
}

/* Move decorative logo into top-right empty area */
.df-selection-summary::before{
  content: "";
  position: absolute;
  right: 46px;
  top: 34px;
  left: auto;
  bottom: auto;
  width: 210px;
  height: 210px;
  background-image: url('/images/icon_trays.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.045;
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 901px){
  .df-trays-grid{
    gap: 40px;
  }

  .df-tray-card{
    display: grid;
    grid-template-columns: minmax(280px, 40%) minmax(0, 1fr);
    align-items: stretch;
    column-gap: 28px;
  }

  .df-tray-card__top-rule{
    grid-column: 1 / -1;
  }

  .df-tray-card__media{
    margin: 0;
    align-self: stretch;
    height: 100%;
  }

  .df-tray-card__media img{
    height: 100%;
    min-height: 100%;
  }

  .df-tray-card__content{
    min-width: 0;
  }

  .df-tray-card--gran{
    grid-template-columns: minmax(0, 1fr) minmax(280px, 40%);
  }

  .df-tray-card--gran .df-tray-card__media{
    order: 2;
  }

  .df-tray-card--gran .df-tray-card__content{
    order: 1;
  }
}

@media (max-width: 900px){
  .df-selection-summary__inner{
    padding: 18px 20px;
  }

  .df-selection-summary__title{
    font-size: 1.64rem;
  }

  .df-selection-summary__cta{
    width: auto;
    min-width: 240px;
    border-radius: 16px;
  }

  .df-selection-summary::before{
    right: 32px;
    top: 28px;
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px){
  .df-trays-intro__eyebrow{
    margin-bottom: 8px;
  }

  .df-trays-intro__title{
    max-width: 13ch;
  }

  .df-trays-intro__tagline{
    font-size: 1.15rem;
    line-height: 1.4;
    max-width: 18ch;
  }

  .df-trays-overview{
    margin-bottom: 24px;
  }

  .df-trays-overview__title{
    font-size: 1.8rem;
    line-height: 1.08;
  }

  .df-trays-overview__text{
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .df-tray-card{
    display: block;
  }

  .df-tray-card__media{
    margin: 18px 0 18px;
  }

  .df-tray-card__meta{
    margin-top: 16px;
  }

  .df-tray-card__includes{
    margin-top: 16px;
  }

  .df-tray-card__details{
    margin-top: 16px;
    padding-top: 14px;
  }

  .df-tray-card__footer{
    padding-top: 16px;
  }

  .df-tray-card__actions{
    margin-top: 14px;
  }
}

@media (max-width: 640px){
  .df-trays-intro__title{
    max-width: 13.5ch !important;
  }

  .df-selection-summary{
    margin-top: 24px;
  }

  .df-selection-summary__inner{
    padding: 18px 18px;
    gap: 16px;
  }

  .df-selection-summary__title{
    font-size: 1.56rem;
  }

  .df-selection-summary__cta{
    width: 100%;
    min-width: 0;
    min-height: 50px;
    border-radius: 16px;
  }

  .df-selection-summary__eyebrow{
    font-size: 0.74rem;
  }

  .df-selection-summary::before{
    right: 22px;
    top: 26px;
    width: 150px;
    height: 150px;
  }
}


/* =========================================================
   TRAYS PAGE — REMOVE DECOR LOGOS + LIGHTER HOME-LIKE BACKGROUNDS
   ========================================================= */

/* Page and sections closer to Home tone */
.df-trays-page,
.df-trays-section{
  background: #f7f3ee !important;
}

.df-tray-card{
  background: #fbf8f3 !important;
}

.df-selection-summary__inner{
  background: #fbf8f3 !important;
}

/* Remove decorative logos / icons from lower areas */
.df-trays-section__decor,
.df-selection-summary::before{
  display: none !important;
  content: none !important;
}

/* Keep summary panel soft and clean */
.df-selection-summary__inner{
  border-color: rgba(148, 122, 92, 0.22) !important;
  box-shadow: 0 10px 24px rgba(78, 56, 33, 0.03) !important;
}

/* Slightly cleaner section contrast */
.df-trays-overview,
.df-selection-summary{
  background: transparent !important;
}


/* =========================================================
   TRAYS — DARKER BEIGE CARD BACKGROUND (match Home band)
   ========================================================= */

/* Darker beige like Home section band */
.df-tray-card{
  background: #efe6d8 !important;   /* warmer beige */
  border-color: rgba(148, 122, 92, 0.28) !important;
}

/* Keep summary consistent with same tone */
.df-selection-summary__inner{
  background: #efe6d8 !important;
}

/* Slightly stronger contrast for separation */
.df-tray-card:hover{
  box-shadow: 0 12px 28px rgba(78, 56, 33, 0.06);
}



/* =========================================================
   TRAYS — HERO DECORATIVE LOGO (RIGHT SIDE)
   ========================================================= */

.df-trays-intro{
  position: relative;
  overflow: hidden;
}

/* Decorative logo in the empty right area */


/* Responsive scaling */
@media (max-width: 1200px){
  
}

@media (max-width: 768px){
  
}



/* =========================================================
   TRAYS — FIX HERO LOGO VISIBILITY (NOT CUT)
   ========================================================= */

/* Allow logo to be fully visible */
.df-trays-intro{
  overflow: visible !important;
}

/* Reposition and resize so it sits fully inside section */


/* Responsive adjustments */
@media (max-width: 1200px){
  
}

@media (max-width: 768px){
  
}



/* =========================================================
   TRAYS — MOVE HERO LOGO HIGHER (ALIGN WITH TITLE)
   ========================================================= */



@media (max-width: 1200px){
  
}

@media (max-width: 768px){
  
}



/* =========================================================
   TRAYS — FINAL HERO LOGO POSITION (TITLE AREA RIGHT)
   ========================================================= */

/* Remove previous logo anchors */


/* Use main section container as reference */
.df-trays-section .df-container{
  position: relative;
}

/* Decorative logo aligned with title */


/* Ensure text layers above */
.df-trays-intro,
.df-trays-overview{
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px){
  
}

@media (max-width: 768px){
  
}


@media (max-width: 640px){
  .df-trays-section__decor--top-right {
    top: 78px !important;
    right: 6px !important;
    width: 150px !important;
    height: 150px !important;
    opacity: 0.045 !important;
  }
}


/* =========================================================
   TRAYS — FINAL HERO DECOR LOGO (VISIBLE + POSITIONED)
   ========================================================= */

/* Ensure the top-right decorative logo is visible */
.df-trays-section__decor--top-right{
  display: block !important;
  position: absolute !important;
  top: 54px !important;
  right: 18px !important;
  width: 230px !important;
  height: 230px !important;
  transform: none !important;
  opacity: 0.05 !important;
  pointer-events: none !important;
}

/* Keep the bottom-left decor hidden */
.df-trays-section__decor--bottom-left{
  display: none !important;
}

@media (max-width: 640px){
  .df-trays-section__decor--top-right{
    display: block !important;
    top: 78px !important;
    right: 6px !important;
    width: 150px !important;
    height: 150px !important;
    opacity: 0.045 !important;
  }
}

/* =========================================================
   MOBILE TRAYS INTRO - align with Biscuits typography
   ========================================================= */
@media (max-width: 768px){
  .df-trays-intro__eyebrow{
    margin: 0 0 10px !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: .78rem !important;
    font-weight: 400 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    color: #76695f !important;
  }

  .df-trays-intro__tagline{
    font-size: 1.265rem !important;
    color: var(--df-color-accent) !important;
    display: none !important;
  }

  .df-trays-overview{
    margin-top: 18px !important;
    width: 100% !important;
    max-width: none !important;
  }

  .df-trays-overview__title{
    display: none !important;
  }

  .df-trays-overview__text{
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #5A473B !important;
    display: block !important;
    width: min(100%, 32ch) !important;
    max-width: 32ch !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    text-align: left !important;
    text-align-last: left !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
    text-wrap: auto !important;
  }

  .df-trays-overview__text::after{
    content: "for meaningful moments";
    display: block;
    margin-top: 18px;
    font-family: var(--df-font-serif);
    font-size: 28px;
    line-height: 1.12;
    font-style: italic;
    color: var(--df-color-accent);
  }
}

/* Match main page titles with Home, Biscuits, Around the Oven, and Journal */
.df-trays-intro__title{
  margin: 0 0 14px !important;
  font-family: var(--df-font-serif) !important;
  font-size: 34px !important;
  line-height: 1.18 !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
  color: var(--df-color-text) !important;
}

@media (min-width: 1025px){
  .df-trays-intro__title{
    font-size: clamp(46px, 4vw, 68px) !important;
    line-height: 1.08 !important;
    margin-bottom: 16px !important;
  }
}

@media (max-width: 768px){
  .df-trays-intro__title{
    font-size: 32px !important;
    line-height: 1.18 !important;
  }
}

/* =========================================================
   TRAYS DESKTOP ALIGNMENT WITH HOME/BISCUITS
   ========================================================= */
@media (min-width: 1025px){
  .df-trays-section{
    padding-top: 0 !important;
  }

  .df-trays-hero-pattern{
    width: 100vw !important;
    height: clamp(420px, 30vw, 620px) !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-bottom: 46px !important;
    background: #efe6d8 url("/images/trays-abstract-pattern-desktop.png") center center / cover no-repeat !important;
    background-color: #efe6d8 !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    border: 0 !important;
  }

  .df-trays-intro{
    text-align: center !important;
    max-width: none !important;
    margin-bottom: 24px !important;
  }

  .df-trays-intro__eyebrow{
    margin: 0 0 12px !important;
    font-family: Inter, Arial, sans-serif !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    letter-spacing: 0.16em !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #6f6258 !important;
  }

  .df-trays-intro__title{
    max-width: none !important;
    white-space: nowrap !important;
    margin: 0 auto 18px !important;
    font-family: var(--df-font-serif) !important;
    font-size: clamp(46px, 4vw, 68px) !important;
    line-height: 1.08 !important;
    font-weight: 500 !important;
    letter-spacing: -0.01em !important;
    color: var(--df-color-text) !important;
    text-align: center !important;
  }

  .df-trays-intro__tagline{
    margin: 0 auto !important;
    font-family: var(--df-font-serif) !important;
    font-size: 36px !important;
    line-height: 1.12 !important;
    font-style: italic !important;
    font-weight: 400 !important;
    color: var(--df-color-accent) !important;
    text-align: center !important;
  }

  .df-trays-overview{
    width: calc(100vw - 80px) !important;
    max-width: none !important;
    margin-top: 30px !important;
    margin-bottom: 44px !important;
    margin-left: calc(50% - 50vw + 40px) !important;
    margin-right: calc(50% - 50vw + 40px) !important;
    transform: none !important;
    text-align: center !important;
  }

  .df-trays-overview__title{
    display: none !important;
  }

  .df-trays-overview__text{
    margin: 0 auto !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 19px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    color: #5A473B !important;
    text-align: center !important;
    white-space: nowrap !important;
    transform: none !important;
  }

  .df-trays-overview__line{
    display: inline-block !important;
    white-space: nowrap !important;
    transform: translateX(-124px) !important;
  }

  .df-trays-grid{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px !important;
    align-items: start !important;
  }

  .df-tray-card,
  .df-tray-card--gran{
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    padding: 0 0 28px !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #efe6d8 !important;
  }

  .df-selection-summary__inner{
    background: #efe6d8 !important;
  }

  .df-tray-card__top-rule{
    display: none !important;
  }

  .df-tray-card__media,
  .df-tray-card--gran .df-tray-card__media{
    order: 0 !important;
    width: calc(100% - 48px) !important;
    height: auto !important;
    margin: 24px 24px 24px !important;
    align-self: auto !important;
    border: 1px solid rgba(148, 122, 92, 0.22) !important;
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #fff !important;
  }

  .df-tray-card__media img{
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #fff !important;
  }

  .df-tray-card__content,
  .df-tray-card--gran .df-tray-card__content{
    order: 1 !important;
    width: 100% !important;
    padding: 0 28px !important;
  }
}

/* Final shared eyebrow normalization */
.df-trays-intro__eyebrow,
.df-selection-summary__eyebrow{
  margin: 0 0 10px !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 0.78rem !important;
  line-height: 1.2 !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #6f6258 !important;
}

/* EOF desktop hero replacement: brand color + subtle logo pattern */
@media (min-width: 1025px){
  .df-trays-hero-pattern{
    position: relative !important;
    background:
      linear-gradient(rgba(239, 230, 216, 0.88), rgba(239, 230, 216, 0.88)),
      url("/images/logo.png") center center / 360px auto no-repeat,
      #efe6d8 !important;
    background-repeat: no-repeat, no-repeat, no-repeat !important;
    background-size: auto, 360px auto, auto !important;
    background-position: center center, center center, center center !important;
    opacity: 1 !important;
  }

  .df-trays-hero-pattern::after{
    content: "" !important;
    position: absolute !important;
    left: clamp(34px, 5vw, 76px) !important;
    bottom: clamp(28px, 4vw, 58px) !important;
    width: clamp(92px, 9vw, 138px) !important;
    aspect-ratio: 1 / 1 !important;
    background: url("/images/icon_trays.png") center center / contain no-repeat !important;
    opacity: 0.16 !important;
    pointer-events: none !important;
  }

  .df-trays-hero-pattern::before{
    content: "" !important;
    position: absolute !important;
    right: clamp(34px, 5vw, 76px) !important;
    top: clamp(28px, 4vw, 58px) !important;
    width: clamp(92px, 9vw, 138px) !important;
    aspect-ratio: 1 / 1 !important;
    background: url("/images/icon_trays.png") center center / contain no-repeat !important;
    opacity: 0.16 !important;
    pointer-events: none !important;
  }

  .df-trays-section__decor--top-right{
    display: none !important;
    content: none !important;
  }
}

@media (min-width: 1025px){
  .df-tray-card__media img.is-pistachio-tray{
    transform: scale(1.5) !important;
    transform-origin: center center !important;
  }
}

/* Final mobile hero alignment with Around the Oven */
@media (max-width: 768px){
  .df-trays-section{
    padding-top: 0 !important;
  }

  .df-trays-hero-pattern{
    display: block !important;
    position: relative !important;
    width: 100vw !important;
    height: auto !important;
    max-height: 420px !important;
    aspect-ratio: 1.7 / 1 !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    margin-top: 0 !important;
    margin-bottom: 28px !important;
    background:
      linear-gradient(rgba(239, 230, 216, 0.88), rgba(239, 230, 216, 0.88)),
      url("/images/logo.png") center center / 250px auto no-repeat,
      #efe6d8 !important;
    background-repeat: no-repeat, no-repeat, no-repeat !important;
    background-size: auto, 250px auto, auto !important;
    background-position: center center, center center, center center !important;
    opacity: 1 !important;
  }

  .df-trays-hero-pattern::after,
  .df-trays-hero-pattern::before{
    content: "" !important;
    position: absolute !important;
    width: 82px !important;
    aspect-ratio: 1 / 1 !important;
    background: url("/images/icon_trays.png") center center / contain no-repeat !important;
    opacity: 0.14 !important;
    pointer-events: none !important;
  }

  .df-trays-hero-pattern::after{
    left: 22px !important;
    bottom: 20px !important;
  }

  .df-trays-hero-pattern::before{
    right: 22px !important;
    top: 20px !important;
  }

  .df-trays-section__decor--top-right{
    display: none !important;
    content: none !important;
  }
}

/* Cart drawer title wrapping fix: current cart markup has no product image column. */
.df-cart-drawer .df-cart-item{
  display:block !important;
  grid-template-columns:none !important;
}

.df-cart-drawer .df-cart-item-main{
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:16px !important;
}

.df-cart-drawer .df-cart-item-text{
  flex:1 1 auto !important;
  min-width:0 !important;
  max-width:calc(100% - 36px) !important;
}

.df-cart-drawer .df-cart-item-title{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  white-space:normal !important;
  word-break:normal !important;
  overflow-wrap:break-word !important;
  hyphens:none !important;
}

/* Mobile final override: remove the top hero image/pattern */
@media (max-width: 768px){
  .df-trays-section{
    padding-top: 30px !important;
  }

  .df-trays-intro{
    padding-top: 8px !important;
  }

  .df-trays-hero-pattern{
    display: none !important;
  }
}
