/* Daisy Flowers: product module. Every rule is isolated to product pages. */
body.single-product .df-single-product-container {
  box-sizing: border-box;
  margin-inline: auto;
  max-width: calc(100vw - 40px);
  padding: 26px 20px 64px;
  width: min(calc(100vw - 40px), 1240px);
}

body.single-product .df-product-breadcrumbs-band {
  background: #fff0f4;
  box-sizing: border-box;
  margin: 0;
  max-width: none;
  padding: 18px 20px;
  width: 100%;
}
body.single-product .df-product-breadcrumbs-band .woocommerce-breadcrumb {
  color: #8f747c;
  font-size: 12px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}
body.single-product .df-product-breadcrumbs-band .woocommerce-breadcrumb a { color: #6f5960; text-decoration: none; }
body.single-product .df-product-breadcrumbs-band .woocommerce-breadcrumb a:hover { color: var(--wp--preset--color--primary); }

/* Main product area */
body.single-product .df-product-main {
  align-items: start;
  display: grid !important;
  gap: 32px;
  grid-template-columns: minmax(0, 420px) minmax(420px, 1fr);
  margin: 0;
  max-width: 100%;
}
body.single-product .df-product-main > .wp-block-column,
body.single-product .df-product-bottom > .wp-block-column {
  margin: 0 !important;
  min-width: 0;
  width: auto !important;
}

/* Gallery: preserve WooCommerce lightbox and zoom markup. */
body.single-product .df-product-module__gallery .woocommerce-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-inline: auto;
  max-width: 380px;
  width: min(100%, 380px);
}
body.single-product .df-product-module__gallery,
body.single-product .df-product-module__summary,
body.single-product .df-product-module__gallery .woocommerce-product-gallery__wrapper,
body.single-product .df-product-module__gallery .flex-viewport { min-width: 0; }
body.single-product .df-product-module__gallery .flex-viewport { max-width: 100%; }
body.single-product .df-product-module__gallery .woocommerce-product-gallery__wrapper { order: 1; }
body.single-product .df-product-module__gallery .woocommerce-product-gallery__image {
  align-items: center;
  background: #fff;
  border: 1px solid #f3e7ea;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(74, 29, 42, .06);
}
body.single-product .df-product-module__gallery .woocommerce-product-gallery__image img {
  aspect-ratio: 1 / 1;
  height: auto;
  max-height: 360px;
  max-width: 360px;
  object-fit: contain;
  width: min(100%, 360px);
}
body.single-product .df-product-module__gallery .flex-control-thumbs {
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style: none;
  margin: 0;
  order: 2;
  overflow-x: auto;
  padding: 2px 0;
}
body.single-product .df-product-module__gallery .flex-control-thumbs li {
  flex: 0 0 72px;
  float: none;
  list-style: none;
  margin: 0;
  width: 72px;
}
body.single-product .df-product-module__gallery .flex-control-thumbs img {
  border: 1px solid #f1e3e7;
  border-radius: 9px;
  padding: 3px;
  transition: border-color .2s ease, transform .2s ease;
}
body.single-product .df-product-module__gallery .flex-control-thumbs img.flex-active,
body.single-product .df-product-module__gallery .flex-control-thumbs img:hover {
  border-color: var(--wp--preset--color--primary);
  transform: translateY(-1px);
}

/* Summary rhythm */
body.single-product .df-product-module__summary { align-self: start; }
body.single-product .df-product-module__summary h1 {
  font-size: clamp(27px, 2.1vw, 35px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  overflow-wrap: anywhere;
}
body.single-product .df-product-review-proof {
  align-items: center;
  background: linear-gradient(135deg, #fff5f7 0%, #fff 100%);
  border: 1px solid #f2dce3;
  border-radius: 12px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  margin-top: 12px;
  padding: 12px 14px;
}
body.single-product .df-product-review-proof__icon {
  align-items: center;
  background: var(--wp--preset--color--primary);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}
body.single-product .df-product-review-proof__icon svg { fill: none; height: 20px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; width: 20px; }
body.single-product .df-product-review-proof__rating { align-items: center; color: #171014; display: flex; flex-wrap: wrap; gap: 7px; text-decoration: none; }
body.single-product .df-product-review-proof .star-rating { color: var(--wp--preset--color--primary); float: none; margin: 0; }
body.single-product .df-product-review-proof__copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
body.single-product .df-product-review-proof__copy strong { color: #171014; font-size: 13px; line-height: 1.25; }
body.single-product .df-product-review-proof__copy small,
body.single-product .df-product-review-proof__excerpt { color: var(--wp--preset--color--meta-color); font-size: 11px; line-height: 1.35; }
body.single-product .df-product-review-proof__link { align-items: center; color: var(--wp--preset--color--primary); display: inline-flex; font-size: 12px; font-weight: 700; gap: 5px; text-decoration: none; white-space: nowrap; }
body.single-product .df-product-review-proof__link:hover { color: var(--wp--preset--color--heading-color); }
body.single-product .df-product-rating__value { font-weight: 700; }
body.single-product .df-product-rating__count { color: var(--wp--preset--color--meta-color); }
body.single-product .df-product-module__summary .wp-block-woocommerce-product-price {
  color: var(--wp--preset--color--heading-color);
  font-size: 24px !important;
  font-weight: 700;
  line-height: 1.2;
  margin: 14px 0 0;
}
body.single-product .df-product-composition {
  background: #fff3f6;
  border: 1px solid #f7e0e7;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  margin: 18px 0 0;
  padding: 16px 18px;
}
body.single-product .df-product-composition strong { display: block; margin-bottom: 7px; }
body.single-product .df-product-composition ul { margin: 0; padding-left: 20px; }
body.single-product .df-product-composition li { margin: 3px 0; }

/* Quantity and purchase controls */
body.single-product .df-product-module__summary .wc-block-add-to-cart-form { margin-top: 18px; }
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart {
  align-items: stretch;
  display: grid !important;
  gap: 10px;
  grid-template-columns: 100px minmax(0, 1fr) minmax(0, 1fr) !important;
}
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart .quantity { margin: 0; width: 100px; }
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart .df-quantity-control {
  align-items: center;
  border: 1px solid #eadde1;
  border-radius: 8px;
  display: flex;
  min-height: 50px;
  overflow: hidden;
  width: 100px;
}
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart .df-quantity-control input.qty {
  appearance: textfield;
  border: 0;
  box-shadow: none;
  flex: 1;
  margin: 0;
  min-width: 0;
  padding: 0;
  text-align: center;
  width: 30px;
}
body.single-product .df-quantity-control__button {
  background: transparent;
  border: 0;
  color: var(--wp--preset--color--heading-color);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  min-height: 48px;
  padding: 0;
  transition: background-color .2s ease, color .2s ease;
  width: 31px;
}
body.single-product .df-quantity-control__button:hover,
body.single-product .df-quantity-control__button:focus-visible { background: #fff0f4; color: var(--wp--preset--color--primary); }
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .single_add_to_cart_button,
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .awooc-custom-order {
  border-radius: 8px;
  cursor: pointer;
  justify-self: stretch;
  margin: 0;
  min-height: 50px;
  padding-inline: 12px;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
  white-space: nowrap;
  width: 100%;
}
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .single_add_to_cart_button { grid-column: 2; }
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .single_add_to_cart_button:hover,
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .single_add_to_cart_button:focus-visible {
  background: #d77f9f !important;
  box-shadow: 0 8px 20px rgba(190, 91, 127, .24);
  color: #fff !important;
  transform: translateY(-2px);
}
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .awooc-custom-order {
  background: #fff !important;
  border: 1px solid var(--wp--preset--color--primary) !important;
  color: var(--wp--preset--color--primary) !important;
  grid-column: 3;
}
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .awooc-custom-order:hover,
body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .awooc-custom-order:focus-visible {
  background: #fff2f6 !important;
  border-color: #d77f9f !important;
  box-shadow: 0 8px 20px rgba(190, 91, 127, .13);
  color: #c96f90 !important;
  transform: translateY(-2px);
}
body.single-product .df-product-module__summary button:focus-visible,
body.single-product .df-product-module__summary input:focus-visible,
body.single-product .df-product-tabs button:focus-visible { outline: 2px solid var(--wp--preset--color--secondary); outline-offset: 2px; }

/* Quick contact cards */
body.single-product .df-product-contact-options {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}
body.single-product .df-product-contact-card {
  align-items: center;
  background: #fff;
  border: 1px solid #eadde1;
  border-radius: 8px;
  box-shadow: 0 7px 18px rgba(74, 29, 42, .07);
  box-sizing: border-box;
  color: #171014;
  display: flex;
  gap: 12px;
  justify-content: center;
  min-height: 70px;
  padding: 10px 14px;
  text-decoration: none;
}
body.single-product .df-product-contact-card__icon {
  align-items: center;
  background: #fff2f6;
  border-radius: 50%;
  color: var(--wp--preset--color--primary);
  display: inline-flex;
  flex: 0 0 38px;
  height: 38px;
  justify-content: center;
  width: 38px;
}
body.single-product .df-product-contact-card__icon svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 20px;
}
body.single-product .df-product-contact-card--phone .df-product-contact-card__icon svg {
  fill: currentColor;
  stroke: none;
}
body.single-product .df-product-contact-card strong {
  display: block;
  font-size: 12px;
  line-height: 1.25;
}
body.single-product .df-product-contact-card small {
  align-items: center;
  color: #df8fa8;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: 7px;
  line-height: 1.25;
  margin-top: 4px;
}
body.single-product .df-product-contact-card > span:last-child {
  min-width: 0;
}
body.single-product .df-product-contact-card--messengers small {
  justify-content: center;
}
body.single-product .df-product-messenger {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  height: 32px;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  width: 32px;
}
body.single-product .df-product-messenger svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}
body.single-product .df-product-messenger--whatsapp { background: #25d366; }
body.single-product .df-product-messenger--telegram { background: #28a9e8; }
body.single-product .df-product-messenger--viber { background: #7662a9; }
body.single-product .df-product-contact-card:hover,
body.single-product .df-product-contact-card:focus-visible {
  border-color: #e4a8ba;
}

/* Benefits */
body.single-product .df-product-benefits {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}
body.single-product .df-product-benefit {
  align-items: center;
  background: #fff;
  border: 1px solid #f2e5e8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 112px;
  padding: 12px 8px;
  text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
body.single-product .df-product-benefit:hover {
  background: #fff9fb;
  border-color: #e8bcc9;
  box-shadow: 0 8px 22px rgba(74, 29, 42, .09);
  transform: translateY(-3px);
}
body.single-product .df-product-benefit:hover svg { stroke: #cf708f; transform: scale(1.08); }
body.single-product .df-product-benefit svg {
  fill: none;
  height: 25px;
  margin-bottom: 8px;
  stroke: var(--wp--preset--color--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: stroke .2s ease, transform .2s ease;
  width: 25px;
}
body.single-product .df-product-benefit strong { color: var(--wp--preset--color--heading-color); font-size: 13px; line-height: 1.2; }
body.single-product .df-product-benefit span { color: var(--wp--preset--color--foreground); font-size: 11px; line-height: 1.25; margin-top: 3px; }

/* Lower composition: separate cards, never equal-height columns. */
body.single-product .df-product-bottom {
  align-items: start !important;
  display: grid !important;
  gap: 24px;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
  margin-top: 32px;
}
body.single-product .df-product-module__details,
body.single-product .df-product-addons {
  align-self: start !important;
  box-sizing: border-box;
  height: auto !important;
}
body.single-product .df-product-module__details {
  background: #fff;
  border: 1px solid #f1e6e9;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(74, 29, 42, .045);
  min-width: 0;
  padding: 0 24px 24px;
}
body.single-product .df-product-tabs__list {
  border-bottom: 1px solid #f1e6e9;
  display: flex;
  gap: 30px;
  min-height: 44px;
  overflow-x: auto;
  white-space: nowrap;
}
body.single-product .df-product-tabs__list button {
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--wp--preset--color--heading-color);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
  padding: 0;
}
body.single-product .df-product-tabs__list button[aria-selected="true"] { border-bottom-color: var(--wp--preset--color--primary); color: var(--wp--preset--color--primary); }
body.single-product .df-product-tabs__list button:hover { color: var(--wp--preset--color--primary); }
body.single-product .df-product-tabs__panel { color: var(--wp--preset--color--foreground); font-size: 14px; line-height: 1.6; padding-top: 22px; }
body.single-product .df-product-tabs__panel h1,
body.single-product .df-product-tabs__panel h2,
body.single-product .df-product-tabs__panel h3 { color: var(--wp--preset--color--heading-color); font-size: 18px; line-height: 1.3; margin: 0 0 10px; }
body.single-product .df-product-tabs__panel p { margin: 0 0 12px; }
body.single-product .df-product-tabs__panel ul { margin: 0; padding-left: 20px; }

/* Recent reviews come from the existing Site Reviews page (/vidguky/). */
body.single-product .df-product-testimonials {
  background: linear-gradient(135deg, #fff7f9 0%, #fff 56%, #fff4f7 100%);
  border: 1px solid #efdde3;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(74, 29, 42, .055);
  box-sizing: border-box;
  margin-top: 32px;
  overflow: hidden;
  padding: 24px;
  width: 100%;
}
body.single-product .df-product-testimonials__header {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
body.single-product .df-product-testimonials__header > div { display: grid; gap: 4px; }
body.single-product .df-product-testimonials__header span {
  color: var(--wp--preset--color--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
body.single-product .df-product-testimonials__header h2 {
  color: #171014;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
}
body.single-product .df-product-testimonials__actions {
  align-items: center;
  display: flex;
  gap: 12px;
}
body.single-product .df-product-testimonials__actions > a {
  color: #171014;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
body.single-product .df-product-testimonials__actions > a span {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0;
  margin-left: 5px;
  text-transform: none;
  transition: transform .2s ease;
}
body.single-product .df-product-testimonials__actions > a:hover,
body.single-product .df-product-testimonials__actions > a:focus-visible { color: var(--wp--preset--color--primary); }
body.single-product .df-product-testimonials__actions > a:hover span { transform: translateX(3px); }
body.single-product .df-product-testimonials__controls { display: flex; gap: 8px; }
body.single-product .df-product-testimonials__controls[hidden] { display: none !important; }
body.single-product .df-product-testimonials__controls button {
  align-items: center;
  background: #fff;
  border: 1px solid #ebccd5;
  border-radius: 50%;
  color: #171014;
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  width: 38px;
}
body.single-product .df-product-testimonials__controls button:hover:not(:disabled) { background: var(--wp--preset--color--primary); color: #fff; }
body.single-product .df-product-testimonials__controls button:disabled { cursor: default; opacity: .35; }
body.single-product .df-product-testimonials__controls svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}
body.single-product .df-product-testimonials__reviews { overflow: hidden; }
body.single-product .df-product-testimonials__reviews .glsr-reviews {
  display: flex !important;
  gap: 16px;
  margin: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
body.single-product .df-product-testimonials__reviews .glsr-reviews::-webkit-scrollbar { display: none; }
body.single-product .df-product-testimonials__reviews .glsr-review {
  background: #fff;
  border: 1px solid #f0e4e7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(74, 29, 42, .045);
  box-sizing: border-box;
  display: grid;
  gap: 12px;
  grid-template-areas:
    "rating date"
    "content content"
    "person person";
  grid-template-columns: minmax(0, 1fr) auto;
  flex: 0 0 calc((100% - 16px) / 2);
  margin: 0 !important;
  min-width: 0;
  padding: 18px;
  scroll-snap-align: start;
}
body.single-product .df-product-testimonials__reviews .glsr-review-rating { grid-area: rating; }
body.single-product .df-product-testimonials__reviews .glsr-review-date {
  align-self: center;
  color: #8f7d83;
  font-size: 12px;
  grid-area: date;
  white-space: nowrap;
}
body.single-product .df-product-testimonials__reviews .glsr-review-content {
  color: #4f4247;
  font-size: 14px;
  grid-area: content;
  line-height: 1.6;
  margin: 0;
}
body.single-product .df-product-testimonials__reviews .glsr-review-content .glsr-tag-value {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  overflow: hidden;
}
body.single-product .df-product-testimonials__reviews .glsr-review-content p { margin: 0; }
body.single-product .df-product-testimonials__reviews .glsr-review-title { display: none !important; }
body.single-product .df-product-testimonials__reviews .glsr-review-avatar,
body.single-product .df-product-testimonials__reviews .glsr-review-author { grid-area: person; }
body.single-product .df-product-testimonials__reviews .glsr-review-avatar {
  align-self: center;
  justify-self: start;
}
body.single-product .df-product-testimonials__reviews .glsr-review-avatar img {
  border-radius: 50%;
  height: 38px;
  object-fit: cover;
  width: 38px;
}
body.single-product .df-product-testimonials__reviews .glsr-review-author {
  align-self: center;
  color: #171014;
  font-size: 13px;
  font-weight: 700;
  margin-left: 50px;
}
body.single-product .df-product-testimonials__reviews .glsr-star-rating {
  color: #f2a900;
  display: inline-flex;
  font-size: 17px;
  letter-spacing: 2px;
  line-height: 1;
}
body.single-product .df-product-testimonials__reviews .glsr-star-rating::before { content: "★★★★★"; }
body.single-product .df-product-testimonials__reviews .glsr-star-rating[data-rating="1"]::before { content: "★☆☆☆☆"; }
body.single-product .df-product-testimonials__reviews .glsr-star-rating[data-rating="2"]::before { content: "★★☆☆☆"; }
body.single-product .df-product-testimonials__reviews .glsr-star-rating[data-rating="3"]::before { content: "★★★☆☆"; }
body.single-product .df-product-testimonials__reviews .glsr-star-rating[data-rating="4"]::before { content: "★★★★☆"; }
body.single-product .df-product-testimonials__reviews .glsr-star-rating .glsr-star { display: none; }
body.single-product .df-product-testimonials__reviews .glsr-pagination,
body.single-product .df-product-testimonials__reviews .glsr-summary { display: none !important; }
body.single-product .df-product-testimonials__fallback { color: #65555b; margin: 0; }
body.single-product .df-product-testimonials__cta {
  align-items: center;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 8px;
  box-sizing: border-box;
  color: var(--wp--preset--color--primary);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  justify-content: center;
  margin-top: 16px;
  min-height: 42px;
  padding: 0 18px;
  text-decoration: none;
}
body.single-product .df-product-testimonials__cta:hover,
body.single-product .df-product-testimonials__cta:focus-visible { background: var(--wp--preset--color--primary); color: #fff; }

/* Add-ons are a compact product strip, not a second tall column. */
body.single-product .df-product-page { overflow-x: clip; }
body.single-product .df-product-addons {
  background: #fff;
  border: 1px solid #f1e6e9;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(74, 29, 42, .045);
  min-width: 0;
  padding: 20px;
}
body.single-product .df-product-addons__heading { align-items: center; display: flex; gap: 14px; justify-content: space-between; margin: 0 0 18px; }
body.single-product .df-product-addons__heading h2 { color: #171014; font-size: 20px; line-height: 1.25; margin: 0; }
body.single-product .df-product-addons__controls { display: flex; gap: 8px; }
body.single-product .df-product-addons__arrow {
  align-items: center;
  background: #fff;
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: 50%;
  color: var(--wp--preset--color--heading-color);
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  padding: 0;
  transition: background-color .2s ease, border-color .2s ease, opacity .2s ease;
  width: 38px;
}
body.single-product .df-product-addons__arrow svg { fill: none; height: 19px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; width: 19px; }
body.single-product .df-product-addons__arrow:hover:not(:disabled) { background: var(--wp--preset--color--primary); color: #fff; }
body.single-product .df-product-addons__arrow:disabled { cursor: default; opacity: .38; }
body.single-product .df-product-addons .products-block-post-template {
  display: flex !important;
  gap: 16px;
  margin: 0;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 100%;
}
body.single-product .df-product-addons .products-block-post-template::-webkit-scrollbar { display: none; }
body.single-product .df-product-addons { container-type: inline-size; }
body.single-product .df-product-addons .wp-block-shortcode,
body.single-product .df-product-addons__products { max-width: 100%; min-width: 0; }
body.single-product .df-product-addons__products { overflow: hidden; }
body.single-product .df-product-addons .products-block-post-template > li { flex: 0 0 calc((100% - 16px) / 2); margin: 0 !important; min-width: 0; scroll-snap-align: start; }
body.single-product .df-product-addons__card {
  align-content: start;
  display: grid;
  gap: 8px;
  grid-template-rows: 154px minmax(58px, auto) minmax(24px, auto) auto;
  height: auto;
  min-width: 0;
  overflow: visible;
  padding: 0;
}
body.single-product .df-product-addons__card > * { margin-block: 0 !important; }
body.single-product .df-product-addons__card .wp-block-woocommerce-product-image { align-items: center; display: flex; justify-content: center; }
body.single-product .df-product-addons__card .wp-block-woocommerce-product-image img { height: 154px; object-fit: contain; width: 100%; }
body.single-product .df-product-addons__card h3 {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #171014;
  display: -webkit-box;
  font-size: 14px;
  line-height: 1.32;
  margin: 0;
  overflow: hidden;
}
body.single-product .df-product-addons__card h3 a { color: #171014; text-decoration: none; }
body.single-product .df-product-addons__card h3 a:hover { color: var(--wp--preset--color--primary); }
body.single-product .df-product-addons__card .wc-block-components-product-price { align-self: start; color: #171014; font-size: 15px; font-weight: 700; margin: 0; min-height: 24px; }
body.single-product .df-product-addons__card .wc-block-components-product-price * { font-weight: 700; }
body.single-product .df-product-addons__card .wp-block-button { margin-top: 2px !important; width: 100%; }
body.single-product .df-product-addons__card .wp-block-button__link { border-radius: 8px; box-sizing: border-box; font-size: 13px; min-height: 42px; padding: 11px 8px; width: 100%; }
body.single-product .df-product-addons__card .wp-block-button__link.df-addon-is-added { background: #4d9d70; }
body.single-product .df-product-addons__card .wp-block-button__link.df-addon-is-loading { cursor: wait; opacity: .72; pointer-events: none; }

@container (min-width: 620px) {
  body.single-product .df-product-addons .products-block-post-template > li { flex-basis: calc((100% - 32px) / 3); }
}

@media (max-width: 1023px) {
  body.single-product .df-product-main { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
  body.single-product .df-product-bottom { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 1240px) {
  body.single-product .df-product-main { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; }
}

@media (max-width: 1080px) {
  body.single-product .df-product-main { grid-template-columns: minmax(0, 1fr); }
  body.single-product .df-product-module__summary { width: 100%; }
}

@media (max-width: 767px) {
  body.single-product .df-single-product-container { padding: 18px 16px 48px; }
  body.single-product .df-product-breadcrumbs-band { padding: 14px 16px; }
  body.single-product .df-product-review-proof { grid-template-columns: auto minmax(0, 1fr); }
  body.single-product .df-product-review-proof__link { grid-column: 2; justify-self: start; }
  body.single-product .df-product-main { display: flex !important; flex-direction: column; gap: 24px; }
  body.single-product .df-product-module__gallery,
  body.single-product .df-product-module__summary { flex-basis: auto !important; width: 100%; }
  body.single-product .df-product-module__gallery .flex-control-thumbs li { flex: 0 0 64px; }
  body.single-product .df-product-module__summary h1 { font-size: 24px; line-height: 1.14; }
  body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart {
    display: grid !important;
    gap: 10px !important;
    grid-template-columns: 98px minmax(0, 1fr) !important;
    width: 100% !important;
  }
  body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .quantity,
  body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .df-quantity-control {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin: 0 !important;
  }
  body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .single_add_to_cart_button {
    box-sizing: border-box;
    font-size: 13px;
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-width: 0 !important;
    overflow: hidden;
    padding-inline: 10px !important;
    text-overflow: ellipsis;
    width: 100% !important;
  }
  body.single-product .df-product-module__summary .wc-block-add-to-cart-form form.cart > .awooc-custom-order {
    box-sizing: border-box;
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    min-width: 0 !important;
    width: 100% !important;
  }
  body.single-product .df-product-contact-options {
    grid-template-columns: minmax(0, 1fr);
  }
  /* Keep all order benefits in one compact row on phones. */
  body.single-product .df-product-benefits {
    gap: 6px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 18px;
  }
  body.single-product .df-product-benefit {
    background: #fff;
    border: 1px solid #f0c9d5;
    border-radius: 8px;
    justify-content: flex-start;
    min-height: 116px;
    padding: 10px 3px 8px;
  }
  body.single-product .df-product-benefit:hover {
    background: #fff;
    border-color: #e4a8ba;
  }
  body.single-product .df-product-benefit svg {
    height: 28px;
    margin-bottom: 7px;
    width: 28px;
  }
  body.single-product .df-product-benefit strong {
    font-size: 12px;
    line-height: 1.2;
    min-height: 2.4em;
  }
  body.single-product .df-product-benefit span {
    font-size: 10px;
    line-height: 1.25;
    margin-top: 4px;
    min-height: 2.5em;
  }
  body.single-product .df-product-bottom { gap: 22px; margin-top: 26px; }
  body.single-product .df-product-testimonials { margin-top: 26px; padding: 18px 16px; }
  body.single-product .df-product-testimonials__header { align-items: center; margin-bottom: 16px; }
  body.single-product .df-product-testimonials__header h2 { font-size: 21px; }
  body.single-product .df-product-testimonials__actions > a { display: none; }
  body.single-product .df-product-testimonials__controls { display: flex; }
  body.single-product .df-product-testimonials__reviews .glsr-reviews {
    display: flex !important;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  body.single-product .df-product-testimonials__reviews .glsr-reviews::-webkit-scrollbar { display: none; }
  body.single-product .df-product-testimonials__reviews .glsr-review {
    flex: 0 0 100%;
    min-height: 250px;
    padding: 16px;
    scroll-snap-align: start;
  }
  body.single-product .df-product-testimonials__cta {
    max-width: 100%;
    padding-inline: 12px;
    width: 100%;
  }
  body.single-product .df-product-module__details { padding: 0 16px 18px; }
  body.single-product .df-product-tabs__list { gap: 22px; }
  body.single-product .df-product-addons { padding: 16px; }
  body.single-product .df-product-addons__card {
    grid-template-rows: 118px minmax(58px, auto) minmax(24px, auto) auto;
  }
  body.single-product .df-product-addons__card .wp-block-woocommerce-product-image img {
    height: 118px;
  }
  body.single-product .df-product-addons .products-block-post-template > li { flex-basis: min(82%, 300px); }
}
