/* ============================================================
   Product Detail Page — premium visual refresh
   Layered AFTER dekole-brand.css to elevate the existing .dekole-pdp
   markup. Purely presentational — no markup or JS changes. All rules are
   scoped under .dekole-pdp so nothing else on the site is affected.
   ============================================================ */

.dekole-pdp {
  --pdp-ink: #0b1220;
  --pdp-muted: #64748b;
  --pdp-line: #e6eaf0;
  --pdp-primary: #2563eb;
  --pdp-primary-2: #1d4ed8;
  --pdp-accent: #0ea5e9;
  --pdp-ok: #059669;
  background: #f5f7fb;
}

.dekole-pdp .container { max-width: 91%; }

/* ---------- Layout: media+info column beside a sticky buy-box ----------
   Wrapping gallery+info in .dekole-pdp-main lets the left column size to its
   own content instead of being stretched to match the taller buy-box (which
   was creating a big empty gap between the gallery and the description). */
.dekole-pdp .dekole-pdp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  grid-template-areas: none;
  align-items: start;
  gap: 28px;
}
.dekole-pdp .dekole-pdp-main {
  grid-area: auto; grid-column: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dekole-pdp .dekole-pdp-sidebar { grid-area: auto; grid-column: 2; }
.dekole-pdp .dekole-pdp-gallery,
.dekole-pdp .dekole-pdp-info { grid-area: auto; }

@media (min-width: 993px) {
  .dekole-pdp .dekole-pdp-sidebar { position: sticky; top: 16px; align-self: start; }
}
@media (max-width: 1100px) {
  .dekole-pdp .dekole-pdp-grid { grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; }
}
/* Single column on tablet/mobile — commerce order: image → buy box → details */
@media (max-width: 900px) {
  .dekole-pdp .dekole-pdp-grid { grid-template-columns: 1fr; gap: 20px; }
  .dekole-pdp .dekole-pdp-main { display: contents; }
  .dekole-pdp .dekole-pdp-gallery { order: 1; }
  .dekole-pdp .dekole-pdp-sidebar { order: 2; }
  .dekole-pdp .dekole-pdp-info    { order: 3; }
}

/* ---------- Breadcrumb ---------- */
.dekole-pdp-hero { padding: 16px 0; }
.dekole-pdp-hero .breadcrumb-item,
.dekole-pdp-hero .breadcrumb-item a { font-size: 12.5px; font-weight: 500; }

/* ---------- Shared card surfaces ---------- */
.dekole-pdp .dekole-pdp-gallery-main,
.dekole-pdp .dekole-pdp-info,
.dekole-pdp .dekole-pdp-box,
.dekole-pdp .dekole-pdp-seller-box {
  border: 1px solid var(--pdp-line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 28px rgba(15,23,42,.05);
}

/* ---------- Gallery ---------- */
.dekole-pdp .dekole-pdp-gallery-main { padding: 22px; }
.dekole-pdp .dekole-pdp-gallery-thumbs .img-item {
  width: 68px; height: 68px; border-radius: 12px;
}
.dekole-pdp .dekole-pdp-gallery-thumbs .img-item.is-active {
  border-color: var(--pdp-primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.18);
}

/* ---------- Info column ---------- */
.dekole-pdp .dekole-pdp-info { padding: 26px 28px; }
.dekole-pdp-title { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.02em; }
.dekole-pdp-category {
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(14,165,233,.10));
  color: var(--pdp-primary); font-weight: 800;
}

/* Tabs → clean underline pills */
.dekole-pdp .dekole-pdp-tabs-nav { gap: 2px; }
.dekole-pdp .dekole-pdp-tabs-nav button { font-size: 13.5px; padding: 10px 14px; }
.dekole-pdp .dekole-pdp-tabs-nav button.is-active {
  color: var(--pdp-primary);
  border-bottom-color: var(--pdp-primary);
}
.dekole-pdp .dekole-pdp-spec-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 2px; border-bottom: 1px dashed var(--pdp-line); font-size: 13.5px;
}
.dekole-pdp .dekole-pdp-spec-list li span { color: var(--pdp-muted); }
.dekole-pdp .dekole-pdp-spec-list li strong { color: var(--pdp-ink); text-align: right; }

/* ---------- Buy box ---------- */
.dekole-pdp .dekole-pdp-box { padding: 22px; }
.dekole-pdp .dekole-pdp-box-price {
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px;
  padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--pdp-line);
}
.dekole-pdp .dekole-pdp-price-sale {
  font-size: 34px; font-weight: 900; letter-spacing: -0.02em; color: var(--pdp-ink); line-height: 1;
}
.dekole-pdp .dekole-pdp-price-orig {
  font-size: 16px; color: var(--pdp-muted); text-decoration: line-through;
}
.dekole-pdp .dekole-pdp-price-save {
  flex-basis: 100%; margin-top: 4px;
  display: inline-flex; align-items: center; gap: 6px; width: fit-content;
  font-size: 12.5px; font-weight: 800; color: var(--pdp-ok);
  background: rgba(5,150,105,.10); padding: 4px 10px; border-radius: 999px;
}

/* Variant blocks */
.dekole-pdp .dekole-pdp-variant { margin-bottom: 18px; }
.dekole-pdp .dekole-pdp-variant-label {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12.5px; font-weight: 700; color: var(--pdp-ink);
  text-transform: uppercase; letter-spacing: .03em; margin-bottom: 10px;
}
.dekole-pdp .dekole-pdp-variant-label strong { text-transform: none; letter-spacing: 0; color: var(--pdp-muted); font-weight: 600; }

/* Color swatches */
.dekole-pdp .dekole-pdp-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.dekole-pdp .dekole-pdp-swatches .custom_check span {
  display: inline-block; width: 30px; height: 30px; border-radius: 50%;
  cursor: pointer; transition: box-shadow .15s ease, transform .15s ease;
}
.dekole-pdp .dekole-pdp-swatches input { position: absolute; opacity: 0; }
.dekole-pdp .dekole-pdp-swatches input:checked + span {
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--pdp-primary); transform: translateY(-1px);
}

/* Size / style chips */
.dekole-pdp .dekole-pdp-sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.dekole-pdp .dekole-pdp-sizes .custom_check { position: relative; }
.dekole-pdp .dekole-pdp-sizes .custom_check input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.dekole-pdp .dekole-pdp-sizes .custom_check label {
  margin: 0; min-width: 44px; padding: 9px 14px; text-align: center; cursor: pointer;
  border: 1.5px solid var(--pdp-line); border-radius: 10px; font-size: 13px; font-weight: 700;
  color: var(--pdp-ink); background: #fff; transition: all .15s ease;
}
.dekole-pdp .dekole-pdp-sizes .custom_check input:checked ~ label {
  border-color: var(--pdp-ink); background: var(--pdp-ink); color: #fff;
}
.dekole-pdp .dekole-pdp-sizeguide-btn {
  border: 0; background: none; color: var(--pdp-primary); font-weight: 700; font-size: 12px; cursor: pointer;
}

/* Quantity stepper.
   NOTE: this page loads Bootstrap 3 (for the legacy modals), whose
   `.input-group-btn { width: 1% }` collapses the − / + buttons to nothing.
   We override the whole group to a plain flex row so the buttons stay visible
   and full-size, regardless of Bootstrap. */
.dekole-pdp .dekole-pdp-qty {
  display: inline-flex; align-items: stretch; width: auto; max-width: 100%;
}
.dekole-pdp .dekole-pdp-qty .input-group-btn {
  display: flex; width: auto; position: static; font-size: 0;
}
.dekole-pdp .dekole-pdp-qty .btn-number {
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; border: 1.5px solid var(--pdp-line); background: #fff;
  width: 44px; height: 44px; color: var(--pdp-ink); font-size: 14px;
  cursor: pointer; border-radius: 0; margin: 0;
}
.dekole-pdp .dekole-pdp-qty .btn-number.minus { border-radius: 10px 0 0 10px; }
.dekole-pdp .dekole-pdp-qty .btn-number.plus  { border-radius: 0 10px 10px 0; border-left: 0; }
.dekole-pdp .dekole-pdp-qty .btn-number:hover:not(:disabled) { background: #f1f5f9; }
.dekole-pdp .dekole-pdp-qty .btn-number:disabled { color: #cbd5e1; cursor: not-allowed; background: #f8fafc; }
.dekole-pdp .dekole-pdp-qty .input-number {
  flex: 0 0 auto; width: 60px; height: 44px; text-align: center; font-weight: 800;
  border: 1.5px solid var(--pdp-line); border-left: 0; border-right: 0; border-radius: 0;
  color: var(--pdp-ink); background: #fff; box-shadow: none;
  -moz-appearance: textfield; appearance: textfield;
}
.dekole-pdp .dekole-pdp-qty .input-number:focus { outline: none; box-shadow: none; }
.dekole-pdp .dekole-pdp-qty .input-number::-webkit-outer-spin-button,
.dekole-pdp .dekole-pdp-qty .input-number::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Delivery options as selectable cards */
.dekole-pdp .dekole-pdp-delivery { display: flex; flex-direction: column; gap: 8px; }
.dekole-pdp .dekole-pdp-delivery-opt {
  display: flex; align-items: flex-start; gap: 10px; margin: 0; cursor: pointer;
  border: 1.5px solid var(--pdp-line); border-radius: 12px; padding: 12px 14px; transition: all .15s ease;
}
.dekole-pdp .dekole-pdp-delivery-opt:has(input:checked) {
  border-color: var(--pdp-primary); background: rgba(37,99,235,.04);
}
.dekole-pdp .dekole-pdp-delivery-opt span { display: flex; flex-direction: column; font-size: 13.5px; font-weight: 700; color: var(--pdp-ink); }
.dekole-pdp .dekole-pdp-delivery-opt small { font-weight: 500; color: var(--pdp-muted); }
.dekole-pdp .dekole-pdp-delivery-opt i { color: var(--pdp-primary); }
.dekole-pdp .dekole-pdp-store-select { margin-top: 4px; border-radius: 10px; border: 1.5px solid var(--pdp-line); height: 42px; }

/* ---------- Action buttons ---------- */
.dekole-pdp .dekole-pdp-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.dekole-pdp .dekole-pdp-actions .dekole-btn {
  width: 100%; height: 52px; border-radius: 12px; font-size: 15px; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.dekole-pdp .dekole-pdp-actions .dekole-btn-primary {
  background: linear-gradient(135deg, var(--pdp-primary), var(--pdp-primary-2)); color: #fff;
  box-shadow: 0 10px 22px rgba(37,99,235,.28);
}
.dekole-pdp .dekole-pdp-actions .dekole-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(37,99,235,.34); }
.dekole-pdp .dekole-pdp-actions .dekole-btn-electric {
  background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff;
}
.dekole-pdp .dekole-pdp-actions .dekole-btn-electric:hover { transform: translateY(-1px); }
.dekole-pdp .dekole-pdp-actions .dekole-btn-outline-dark {
  background: #fff; color: var(--pdp-ink); border-color: var(--pdp-line); height: 48px; font-size: 14px;
}
.dekole-pdp .dekole-pdp-actions .dekole-btn-outline-dark:hover { border-color: var(--pdp-ink); background: #f8fafc; }

.dekole-pdp .dekole-pdp-secondary-row {
  display: flex; gap: 8px; margin-top: 4px;
}
.dekole-pdp .dekole-pdp-secondary-row a {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; border: 1.5px solid var(--pdp-line); border-radius: 10px;
  font-size: 13px; font-weight: 700; color: var(--pdp-muted); background: #fff; transition: all .15s ease;
}
.dekole-pdp .dekole-pdp-secondary-row a:hover { color: var(--pdp-ink); border-color: #cbd5e1; }

/* ---------- Trust signals ---------- */
.dekole-pdp .dekole-pdp-trust {
  list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--pdp-line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px;
}
.dekole-pdp .dekole-pdp-trust li {
  display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #475569;
}
.dekole-pdp .dekole-pdp-trust li i { color: var(--pdp-ok); font-size: 13px; }

/* ---------- Seller box ---------- */
.dekole-pdp .dekole-pdp-seller-box { padding: 18px 20px; margin-top: 16px; }

/* ---------- Section headings below the fold ---------- */
.dekole-pdp-block-title, .dekole-pdp-fbt-title {
  font-size: 20px; font-weight: 800; letter-spacing: -0.01em; color: var(--pdp-ink); margin: 0 0 16px;
}

/* Frequently bought together */
.dekole-pdp .dekole-pdp-fbt {
  background: #fff; border: 1px solid var(--pdp-line); border-radius: 16px; padding: 22px;
  box-shadow: 0 1px 2px rgba(15,23,42,.04), 0 12px 28px rgba(15,23,42,.05);
}

/* Reviews aggregate */
.dekole-pdp .dekole-pdp-reviews-score-num { font-size: 46px; font-weight: 900; color: var(--pdp-ink); }
.dekole-pdp .dekole-pdp-reviews-bar { background: #eef2f7; border-radius: 999px; overflow: hidden; height: 8px; }
.dekole-pdp .dekole-pdp-reviews-bar-fill { background: linear-gradient(90deg, #fbbf24, #f59e0b); height: 100%; }

/* ---------- Gallery sizing fix ----------
   The 1:1 aspect-ratio made the image a giant square on a wide column.
   Cap the height and let the image sit contained + centered. */
.dekole-pdp .dekole-pdp-gallery-main {
  aspect-ratio: auto !important;
  height: 460px;
  background: #fff;
}
.dekole-pdp .dekole-pdp-gallery-main .img-showcase { height: 100%; }
/* The legacy layout slider sets an inline translateX on .img-showcase; this
   gallery stacks images and toggles opacity instead, so never let it slide. */
.dekole-pdp .dekole-pdp-gallery-main .img-showcase { transform: none !important; }
.dekole-pdp .dekole-pdp-gallery-main .img-showcase img { object-fit: contain; }
.dekole-pdp .dekole-pdp-gallery-thumbs { justify-content: flex-start; }

/* ---------- Size / style row cleanup ----------
   The legacy `.size-wrapper .checkbox_colr-grey label` rule sets the size
   labels to position:absolute, so they stacked on top of each other and
   overlapped the "SIZE" heading. Force them back into normal flow. */
.dekole-pdp .dekole-pdp-sizes.size-wrapper .checkbox_colr-grey { position: static; }
.dekole-pdp .dekole-pdp-sizes .custom_check label,
.dekole-pdp .dekole-pdp-sizes.size-wrapper .checkbox_colr-grey label {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  width: auto !important;
  font-size: 13px !important;
}
/* Kill the leftover empty checkbox <span> and any blank-value chips that
   were overlapping the "Size" label. */
.dekole-pdp .dekole-pdp-sizes .custom_check > span:empty { display: none !important; }
.dekole-pdp .dekole-pdp-sizes .custom_check label:empty { display: none !important; }
.dekole-pdp .dekole-pdp-sizes .custom_check:not(:has(label)) { display: none !important; }
.dekole-pdp .dekole-pdp-sizes .checkbox_colr-grey:has(label:empty) { display: none !important; }
.dekole-pdp .dekole-pdp-sizes { margin-top: 2px; row-gap: 8px; }
.dekole-pdp .dekole-pdp-variant-label { margin-bottom: 12px; }
/* Keep the selected size chip on-brand (blue) to match the rest of the CTA set */
.dekole-pdp .dekole-pdp-sizes .custom_check input:checked ~ label {
  background: var(--pdp-primary); border-color: var(--pdp-primary); color: #fff;
}

/* ---------- Mobile ---------- */
@media (max-width: 880px) {
  .dekole-pdp .dekole-pdp-info { padding: 20px; }
  .dekole-pdp .dekole-pdp-price-sale { font-size: 30px; }
  .dekole-pdp .dekole-pdp-gallery-main { height: 360px; padding: 16px; }
}

/* ---------- Responsive hardening ----------
   Bootstrap 3 is retained for legacy PDP modals, so these scoped rules restore
   predictable sizing and prevent its global component styles from overflowing. */
.dekole-pdp,
.dekole-pdp *,
.dekole-pdp *::before,
.dekole-pdp *::after {
  box-sizing: border-box;
}

.dekole-pdp {
  max-width: 100%;
  overflow-x: hidden;
}

.dekole-pdp img,
.dekole-pdp video,
.dekole-pdp iframe {
  max-width: 100%;
}

.dekole-pdp .dekole-pdp-grid,
.dekole-pdp .dekole-pdp-main,
.dekole-pdp .dekole-pdp-gallery,
.dekole-pdp .dekole-pdp-info,
.dekole-pdp .dekole-pdp-sidebar,
.dekole-pdp .dekole-pdp-box,
.dekole-pdp .dekole-pdp-tabs,
.dekole-pdp .dekole-pdp-block,
.dekole-pdp .dekole-pdp-fbt {
  min-width: 0;
  max-width: 100%;
}

.dekole-pdp .dekole-pdp-prose,
.dekole-pdp .dekole-pdp-review-body,
.dekole-pdp .dekole-pdp-qa-q,
.dekole-pdp .dekole-pdp-qa-a,
.dekole-pdp .dekole-pdp-seller-line {
  overflow-wrap: anywhere;
}

.dekole-pdp .dekole-pdp-prose table,
.dekole-pdp .dekole-pdp-tabs-panel table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 991.98px) {
  .dekole-pdp .container {
    max-width: 760px;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .dekole-pdp .dekole-section {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .dekole-pdp .dekole-pdp-grid {
    gap: 18px;
    grid-template-columns: minmax(0, 1fr);
  }

  .dekole-pdp .dekole-pdp-sidebar {
    grid-column: 1;
    position: static;
    width: 100%;
  }

  .dekole-pdp .dekole-pdp-gallery-thumbs {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .dekole-pdp .dekole-pdp-gallery-thumbs .img-item {
    flex: 0 0 64px;
    height: 64px;
    width: 64px;
  }

  .dekole-pdp .dekole-pdp-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .dekole-pdp .dekole-pdp-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .dekole-pdp .dekole-pdp-tabs-nav button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .dekole-pdp .dekole-pdp-fbt-row {
    align-items: flex-start;
  }

  .dekole-pdp .dekole-pdp-fbt-cta {
    flex: 1 0 180px;
  }

  .dekole-pdp .dekole-pdp-reviews-grid {
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
  }

  .dekole-pdp .dekole-pdp-reviews-aggregate {
    border-bottom: 1px solid var(--pdp-line);
    border-right: 0;
    padding-bottom: 22px;
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .dekole-pdp-hero {
    padding: 10px 0;
  }

  .dekole-pdp-hero .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    padding-bottom: 3px !important;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .dekole-pdp-hero .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .dekole-pdp-hero .breadcrumb-item {
    flex: 0 0 auto;
  }

  .dekole-pdp .dekole-pdp-gallery-main {
    height: clamp(270px, 76vw, 350px);
  }

  .dekole-pdp .dekole-pdp-gallery-main,
  .dekole-pdp .dekole-pdp-info,
  .dekole-pdp .dekole-pdp-box,
  .dekole-pdp .dekole-pdp-seller-box,
  .dekole-pdp .dekole-pdp-fbt,
  .dekole-pdp .dekole-pdp-block {
    border-radius: 12px;
  }

  .dekole-pdp .dekole-pdp-info,
  .dekole-pdp .dekole-pdp-box,
  .dekole-pdp .dekole-pdp-fbt,
  .dekole-pdp .dekole-pdp-block {
    padding: 18px;
  }

  .dekole-pdp .dekole-pdp-seller-box {
    padding: 16px;
  }

  .dekole-pdp-title {
    font-size: 22px;
    letter-spacing: 0;
    line-height: 1.3;
  }

  .dekole-pdp .dekole-pdp-rating-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .dekole-pdp .dekole-pdp-tabs-nav button {
    font-size: 12.5px;
    padding: 9px 11px;
  }

  .dekole-pdp .dekole-pdp-spec-list li {
    align-items: flex-start;
    gap: 10px;
  }

  .dekole-pdp .dekole-pdp-spec-list li span,
  .dekole-pdp .dekole-pdp-spec-list li strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .dekole-pdp .dekole-pdp-price-sale {
    font-size: 28px;
  }

  .dekole-pdp .dekole-pdp-box-price {
    gap: 8px;
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .dekole-pdp .dekole-pdp-variant {
    margin-bottom: 14px;
  }

  .dekole-pdp .dekole-pdp-variant-label {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 5px 10px;
  }

  .dekole-pdp .dekole-pdp-sizes .custom_check label,
  .dekole-pdp .dekole-pdp-sizes.size-wrapper .checkbox_colr-grey label {
    min-width: 42px;
    padding: 8px 11px;
  }

  .dekole-pdp .dekole-pdp-actions .dekole-btn {
    font-size: 14px;
    height: 48px;
    min-width: 0;
    white-space: normal;
  }

  .dekole-pdp .dekole-pdp-secondary-row {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dekole-pdp .dekole-pdp-secondary-row a {
    min-width: 0;
    text-align: center;
  }

  .dekole-pdp .dekole-pdp-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dekole-pdp .dekole-pdp-seller-head {
    align-items: flex-start;
  }

  .dekole-pdp .dekole-pdp-seller-actions {
    flex-wrap: wrap;
  }

  .dekole-pdp .dekole-pdp-seller-actions .dekole-btn {
    min-width: 130px;
  }

  .dekole-pdp .dekole-pdp-fbt-images {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .dekole-pdp .dekole-pdp-fbt-images li {
    flex: 0 0 auto;
  }

  .dekole-pdp .dekole-pdp-fbt-cta {
    flex: 1 0 100%;
    margin-left: 0;
    width: 100%;
  }

  .dekole-pdp .dekole-pdp-fbt-cta .dekole-btn {
    justify-content: center;
    width: 100%;
  }

  .dekole-pdp .dekole-pdp-fbt-list li {
    align-items: flex-start;
  }

  .dekole-pdp .dekole-pdp-fbt-list label span {
    overflow-wrap: anywhere;
  }

  .dekole-pdp .dekole-pdp-block-title,
  .dekole-pdp .dekole-pdp-fbt-title {
    font-size: 18px;
  }

  .dekole-pdp .dekole-row-grid {
    display: grid;
    gap: 10px;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    grid-auto-rows: 1fr;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
    width: 100%;
  }

  .dekole-pdp .dekole-row-grid > * {
    display: flex;
    min-width: 0;
    scroll-snap-align: none;
    width: 100%;
  }

  .dekole-pdp .dekole-row-grid > * > .dekole-pcard {
    width: 100%;
  }

  .dekole-pdp .dekole-pdp-review-head {
    flex-wrap: wrap;
  }

  .dekole-pdp .dekole-pdp-review-stars {
    flex: 0 0 100%;
    padding-left: 50px;
  }

  .dekole-pdp .dekole-pdp-qa-form {
    align-items: stretch;
    flex-direction: column;
  }

  .dekole-pdp .dekole-pdp-qa-input-shell {
    min-width: 0;
    width: 100%;
  }

  .dekole-pdp .dekole-pdp-qa-form > .dekole-btn {
    justify-content: center;
    width: 100%;
  }

  .dekole-pdp .dekole-pdp-qa-tabs {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
  }

  .dekole-pdp .dekole-pdp-qa-tabs .nav-link {
    white-space: nowrap;
  }

  .dekole-pdp .dekole-pdp-qa-author > div {
    min-width: 0;
  }

  .dekole-pdp .dekole-pdp-qa-a {
    margin-left: 0;
  }
}

@media (max-width: 479.98px) {
  .dekole-pdp .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dekole-pdp .dekole-section {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .dekole-pdp .dekole-pdp-grid {
    gap: 12px;
  }

  .dekole-pdp .dekole-pdp-gallery-main {
    height: clamp(240px, 78vw, 310px);
    padding: 10px;
  }

  .dekole-pdp .dekole-pdp-gallery-thumbs .img-item {
    flex-basis: 56px;
    height: 56px;
    width: 56px;
  }

  .dekole-pdp .dekole-pdp-info,
  .dekole-pdp .dekole-pdp-box,
  .dekole-pdp .dekole-pdp-fbt,
  .dekole-pdp .dekole-pdp-block {
    padding: 14px;
  }

  .dekole-pdp .dekole-pdp-seller-box {
    padding: 14px;
  }

  .dekole-pdp-title {
    font-size: 19px;
  }

  .dekole-pdp .dekole-pdp-price-sale {
    font-size: 25px;
  }

  .dekole-pdp .dekole-pdp-price-orig {
    font-size: 13px;
  }

  .dekole-pdp .dekole-pdp-price-save {
    border-radius: 7px;
    max-width: 100%;
    padding: 5px 8px;
    white-space: normal;
  }

  .dekole-pdp .dekole-pdp-delivery-opt {
    padding: 10px;
  }

  .dekole-pdp .dekole-pdp-secondary-row,
  .dekole-pdp .dekole-pdp-trust {
    grid-template-columns: minmax(0, 1fr);
  }

  .dekole-pdp .dekole-pdp-seller-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .dekole-pdp .dekole-pdp-seller-actions .dekole-btn {
    min-width: 0;
    width: 100%;
  }

  .dekole-pdp .dekole-pdp-fbt-images img {
    height: 58px;
    width: 58px;
  }

  .dekole-pdp .dekole-pdp-fbt-list li {
    flex-wrap: wrap;
  }

  .dekole-pdp .dekole-pdp-fbt-price {
    padding-left: 24px;
  }

  .dekole-pdp .dekole-pdp-reviews-score {
    gap: 12px;
  }

  .dekole-pdp .dekole-pdp-reviews-score-num {
    font-size: 38px;
  }

  .dekole-pdp .dekole-pdp-reviews-bar-row {
    gap: 6px;
    grid-template-columns: 48px minmax(0, 1fr) 34px;
  }

  .dekole-pdp .dekole-pdp-review-stars {
    padding-left: 0;
  }

  .dekole-pdp .dekole-pdp-qa-author {
    gap: 9px;
  }

  .dekole-pdp .dekole-pdp-qa-avatar,
  .dekole-pdp .dekole-pdp-review-avatar {
    height: 36px;
    width: 36px;
  }
}
