/* ==========================================================================
   Dokodeals — Storefront Redesign Layer
   Loaded last (after all.css / custom.css / oliver.css / sundar.css) so these
   rules win the cascade without touching the existing stylesheets. Restyles
   the existing markup/classes only — no JS behavior depends on anything here.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --dd-primary: #38a852;
  --dd-primary-dark: #2b8a41;
  --dd-primary-light: #eaf7ee;
  --dd-accent: #ff6f3c;
  --dd-ink: #14181b;
  --dd-body: #4a5259;
  --dd-muted: #8a929a;
  --dd-line: #eaecef;
  --dd-surface: #ffffff;
  --dd-canvas: #f6f8f7;
  --dd-radius-sm: 8px;
  --dd-radius: 14px;
  --dd-radius-lg: 20px;
  --dd-shadow-sm: 0 2px 8px rgba(20, 24, 27, 0.06);
  --dd-shadow: 0 8px 24px rgba(20, 24, 27, 0.08);
  --dd-shadow-lg: 0 20px 48px rgba(20, 24, 27, 0.14);
  --dd-ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* keep the theme's existing var in sync so untouched components stay consistent */
  --primary-color: var(--dd-primary);
}

body {
  color: var(--dd-body);
  background: var(--dd-canvas);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
.navbar .nav-logo,
.popular-card .text a,
.explore-card .text a {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--dd-ink);
}

/* No blanket `a { color }` here on purpose — it kept leaking green into
   navigation/menu chrome (footer, category sidebar, etc.) that should stay
   neutral. Every component below that intentionally wants the brand color
   sets it explicitly on its own class instead. */

/* --------------------------------------------------------------------
   Buttons — rounded, confident, consistent hover motion
   -------------------------------------------------------------------- */
.btn-primary,
.btn-primary-outline,
#add-to-cart,
#quick-add-to-cart {
  border-radius: 999px !important;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
  letter-spacing: 0.01em;
  transition: transform 0.18s var(--dd-ease), box-shadow 0.18s var(--dd-ease), background-color 0.18s var(--dd-ease);
  border: 2px solid var(--dd-primary) !important;
}

.btn-primary {
  background: var(--dd-primary) !important;
  color: #fff !important;
  box-shadow: var(--dd-shadow-sm);
}
.btn-primary:hover {
  background: var(--dd-primary-dark) !important;
  border-color: var(--dd-primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: var(--dd-shadow);
}

.btn-primary-outline {
  background: transparent !important;
  color: var(--dd-primary) !important;
}
.btn-primary-outline:hover {
  background: var(--dd-primary-light) !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------
   Section headers — eyebrow + title + "View all" pattern, generous rhythm
   -------------------------------------------------------------------- */
.popular-wrapper, .explore, .highlights-wrapper, .similar-deals {
  margin-bottom: 2.75rem;
}

.popular-wrapper > h3,
.explore > .container-fluid > h3,
.similar-deals > h3,
.highlights-wrapper h3 {
  position: relative;
  font-weight: 700;
  font-size: 1.55rem;
  padding-left: 1rem;
  margin-bottom: 1.5rem !important;
  display: flex;
  align-items: center;
}

.popular-wrapper > h3::before,
.explore > .container-fluid > h3::before,
.similar-deals > h3::before,
.highlights-wrapper h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--dd-primary), var(--dd-accent));
}

/* --------------------------------------------------------------------
   Header / navbar polish
   -------------------------------------------------------------------- */
.navbar-top {
  box-shadow: 0 1px 0 rgba(20, 24, 27, 0.06);
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.navbar-form .form-control {
  border-radius: 999px 0 0 999px !important;
  border: 1.5px solid var(--dd-line) !important;
  padding-left: 1.25rem;
  height: 46px;
}
.navbar-form .form-control:focus {
  border-color: var(--dd-primary) !important;
  box-shadow: 0 0 0 3px var(--dd-primary-light) !important;
}
/* .search-div (the round search button next to the hero search box) and
   .nav-right li (the white-outlined wishlist/cart circles on the dark hero
   navbar) already have correct shape/color rules in oliver.css — don't
   override color/shape here, it breaks their contrast against the dark
   hero background. Only add a hover transition. */
.search-div {
  transition: background-color 0.15s var(--dd-ease);
}
.search-div:hover { background-color: var(--dd-primary-dark) !important; }

.nav-right .nav-link {
  transition: color 0.15s var(--dd-ease);
}
.nav-right .nav-link:hover { color: var(--dd-primary) !important; }

/* --------------------------------------------------------------------
   Hero carousel — rounded, elevated, with a soft gradient edge for legibility
   -------------------------------------------------------------------- */
.landing-page {
  padding: 1rem clamp(0.5rem, 2vw, 2rem) 0;
}
#carouselExampleSlidesOnly {
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  box-shadow: var(--dd-shadow);
}
#carouselExampleSlidesOnly .carousel-item img {
  min-height: 220px;
  object-fit: cover;
}
#carouselExampleSlidesOnly::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(20, 24, 27, 0.28) 0%, rgba(20, 24, 27, 0) 45%);
}
#carouselExampleSlidesOnly .carousel-indicators li {
  border-radius: 999px;
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.55);
}
#carouselExampleSlidesOnly .carousel-indicators .active {
  width: 22px;
  background-color: #fff;
}

/* --------------------------------------------------------------------
   Trust bar (new .dd-trust-bar block, see v2/components/trust-bar.blade.php)
   -------------------------------------------------------------------- */
.dd-trust-bar {
  background: var(--dd-surface);
  border-radius: var(--dd-radius);
  box-shadow: var(--dd-shadow-sm);
  margin: 1.5rem clamp(0.5rem, 2vw, 2rem) 2.5rem;
  padding: 1.1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  justify-content: space-between;
}
.dd-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 200px;
}
.dd-trust-bar__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--dd-primary-light);
  color: var(--dd-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}
.dd-trust-bar__title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dd-ink);
  margin: 0;
}
.dd-trust-bar__subtitle {
  font-size: 0.78rem;
  color: var(--dd-muted);
  margin: 0;
}

/* --------------------------------------------------------------------
   Explore / category strip — icon-forward, pill cards with hover lift
   -------------------------------------------------------------------- */
/* Swiper JS sets an inline height on .swiper-explore/.swiper-wrapper equal
   to its tallest possible slide (its normal height-equalization behavior
   for swipeable carousels). We shrank the slides themselves to fit their
   content below, but never told the container to follow — leaving dead
   space in the gap between the shrunk cards and whatever comes next.
   !important is required to beat Swiper's own inline style. */
.swiper-explore,
.swiper-explore .swiper-wrapper {
  height: auto !important;
}
.swiper-explore .swiper-wrapper {
  align-items: flex-start;
}
.swiper-explore .swiper-slide {
  height: auto;
}
.explore-wrapper {
  gap: 0.6rem;
  background: var(--dd-surface);
  border-radius: var(--dd-radius);
  padding: 0.75rem;
  box-shadow: var(--dd-shadow-sm);
}
.explore-wrapper .explore-card {
  box-shadow: none;
  padding: 0.5rem;
}
.explore-wrapper .explore-card:hover {
  background: var(--dd-canvas);
  transform: none;
}
.explore-card {
  background: var(--dd-surface);
  border-radius: var(--dd-radius);
  padding: 0.6rem 0.9rem 0.6rem 0.6rem;
  box-shadow: var(--dd-shadow-sm);
  transition: transform 0.2s var(--dd-ease), box-shadow 0.2s var(--dd-ease);
}
.explore-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dd-shadow);
}
.explore-card .image {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--dd-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.explore-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.explore-card .text a {
  color: var(--dd-ink) !important;
  font-weight: 600;
}

/* --------------------------------------------------------------------
   Product / deal cards — the core visual unit across the whole site
   -------------------------------------------------------------------- */
.popular-card {
  background: var(--dd-surface);
  border-radius: var(--dd-radius);
  overflow: hidden;
  box-shadow: var(--dd-shadow-sm);
  transition: transform 0.22s var(--dd-ease), box-shadow 0.22s var(--dd-ease);
  height: 100%;
  border: 1px solid var(--dd-line);
}
.popular-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--dd-shadow-lg);
  border-color: transparent;
}

/* Regular product cards: square/vertical crop, as before this redesign. */
.popular-card .image.rounded-img-div {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--dd-canvas);
  border-radius: 0 !important;
}
.popular-card .image.rounded-img-div img.img-popular {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  transition: transform 0.4s var(--dd-ease);
}

/* Deal-type cards (countdown timer deals) keep their existing 16:9 aspect
   ratio (see .deal-img in oliver.css) but crop-to-fill instead of
   letterboxing — oliver.css's object-fit:contain left white gaps above/below
   whenever the source image wasn't exactly 16:9, so card images looked
   inconsistent next to each other. !important needed to beat that rule. */
.popular-card .image.rounded-img-div:has(img.deal-img) {
  aspect-ratio: 16 / 9;
}
.popular-card .image.rounded-img-div img.deal-img {
  object-fit: cover !important;
}

.popular-card:hover .image.rounded-img-div img.img-popular {
  transform: scale(1.06);
}

.popular-card .wishlist1 {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--dd-shadow-sm);
  color: var(--dd-muted) !important;
  transition: color 0.15s var(--dd-ease), transform 0.15s var(--dd-ease);
}
.popular-card .wishlist1:hover {
  color: var(--dd-accent) !important;
  transform: scale(1.08);
}

.popular-card .text {
  padding: 0.9rem 1rem 1.1rem !important;
  border: none !important;
}
.popular-card .text a.product-name-max {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
  font-size: 0.95rem !important;
  margin-left: 0 !important;
}
.popular-card .popular-text {
  margin-left: 0 !important;
  font-size: 0.8rem;
}
.popular-card .text > span.text-primary {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dd-primary-dark) !important;
  margin-left: 0 !important;
}
.popular-card .line-through {
  color: var(--dd-muted);
  font-size: 0.82rem;
  margin-left: 0 !important;
}

.percentOff {
  background: var(--dd-accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 0.25rem 0.6rem !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  float: none !important;
  display: inline-block;
  margin-left: 0.4rem !important;
}

.deal-counter .counter-container {
  font-weight: 700;
  color: var(--dd-accent);
}

/* --------------------------------------------------------------------
   Product detail page
   -------------------------------------------------------------------- */
.breadcrumb-container { padding-top: 1.25rem; }
.breadcrumb {
  background: transparent;
  font-size: 0.85rem;
  padding-left: 0;
}

.product-detail .swiper-image-wrapper {
  border-radius: var(--dd-radius-lg);
  overflow: hidden;
  background: var(--dd-surface);
  box-shadow: var(--dd-shadow-sm);
}
.product-detail .mySwiper2 img.product-img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}
.product-detail .mySwiper .swiper-slide img.product-img {
  border-radius: var(--dd-radius-sm);
  border: 2px solid var(--dd-line);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: pointer;
  transition: border-color 0.15s var(--dd-ease);
}
.product-detail .mySwiper .swiper-slide-thumb-active img.product-img {
  border-color: var(--dd-primary);
}
.favorite-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--dd-shadow-sm);
  color: var(--dd-muted) !important;
}
.favorite-icon:hover { color: var(--dd-accent) !important; }

.product-detail-right {
  background: var(--dd-surface);
  border-radius: var(--dd-radius-lg);
  padding: 1.75rem;
  box-shadow: var(--dd-shadow-sm);
  border: 1px solid var(--dd-line);
}
.product-detail-right.product-detail-sticky {
  box-shadow: var(--dd-shadow-lg);
}
.product-detail-right .top > h3 {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0.25rem 0 0.5rem;
}
.product-detail-right .review i.checked { color: #ffb400; }

.product-price h4.marked-p {
  color: var(--dd-muted);
  font-weight: 500;
  text-decoration: line-through;
  font-size: 1.05rem !important;
}
.product-price h4.discount-p {
  color: var(--dd-primary-dark);
  font-weight: 800;
  font-size: 1.9rem !important;
}
/* oliver.css puts a translucent green wash on the outer <p class="discount-tag">
   itself (background: #68a03748) — that shows through around our solid pill
   as a second, mismatched colored box. Neutralize the outer element so only
   the pill below is visible. */
.discount-tag {
  background: transparent !important;
  padding: 0 !important;
  display: inline-block;
}
.discount-tag span {
  background: var(--dd-accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
}

.product-select-color .circle,
.product-size .circle {
  transition: transform 0.15s var(--dd-ease), border-color 0.15s var(--dd-ease);
}
.product-select-color .circle:hover,
.product-size .circle:hover { transform: translateY(-2px); }

ul:has(> li > .qtminus) ,
.d-flex > ul:has(.qty-cart-button) {
  border: 1.5px solid var(--dd-line);
  border-radius: 999px;
  overflow: hidden;
  width: fit-content;
}
.qty-cart-button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s var(--dd-ease);
}
.qtminus:hover, .qtplus:hover { background: var(--dd-primary-light); }
.qttotal { font-weight: 700; }

#add-to-cart, #quick-add-to-cart {
  width: 100%;
}

/* Trust strip inside the buy box */
.dd-pdp-trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--dd-line);
}
.dd-pdp-trust span {
  font-size: 0.78rem;
  color: var(--dd-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dd-pdp-trust i { color: var(--dd-primary); }

.similar-deals { margin-top: 3.5rem !important; }

/* --------------------------------------------------------------------
   Footer polish
   -------------------------------------------------------------------- */
footer {
  margin-top: 2rem;
}
/* Keep footer text/links/social icons neutral (as originally designed) —
   the global `a { color: var(--dd-primary) }` above is meant for body
   content links, not a footer full of green text. */
footer a {
  color: var(--dd-body) !important;
}
footer a:hover {
  color: var(--dd-primary) !important;
}
footer .footer-know .icon a {
  border-color: var(--dd-line);
  color: var(--dd-ink) !important;
  transition: border-color 0.15s var(--dd-ease), color 0.15s var(--dd-ease);
}
footer .footer-know .icon a:hover {
  border-color: var(--dd-primary);
  color: var(--dd-primary) !important;
}

/* --------------------------------------------------------------------
   Responsive tuning
   -------------------------------------------------------------------- */
@media (max-width: 767.98px) {
  .popular-wrapper > h3, .explore > .container-fluid > h3, .similar-deals > h3 {
    font-size: 1.2rem;
  }
  .dd-trust-bar { padding: 0.9rem 1rem; }
  .product-detail-right { padding: 1.25rem; }
  .product-price h4.discount-p { font-size: 1.5rem !important; }
}

/* --------------------------------------------------------------------
   Live search dropdown
   -------------------------------------------------------------------- */
.dd-search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--dd-surface);
  border-radius: var(--dd-radius);
  box-shadow: var(--dd-shadow-lg);
  border: 1px solid var(--dd-line);
  max-height: 420px;
  overflow-y: auto;
  z-index: 1050;
  text-align: left;
}
.dd-search-dropdown--open {
  display: block;
}
.dd-search-suggestion {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  color: var(--dd-ink) !important;
  border-bottom: 1px solid var(--dd-line);
  transition: background-color 0.12s var(--dd-ease);
}
.dd-search-suggestion:last-child { border-bottom: none; }
.dd-search-suggestion:hover {
  background: var(--dd-canvas);
  color: var(--dd-ink) !important;
}
.dd-search-suggestion img {
  width: 42px;
  height: 42px;
  border-radius: var(--dd-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--dd-canvas);
}
.dd-search-suggestion__text {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dd-search-suggestion__name {
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dd-search-suggestion__price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dd-primary-dark);
}
.dd-search-suggestion--all {
  justify-content: center;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--dd-primary-dark) !important;
  background: var(--dd-primary-light);
}
.dd-search-empty {
  padding: 1rem;
  text-align: center;
  color: var(--dd-muted);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------
   Rich-text ("prose") content — product/deal descriptions come from a
   WYSIWYG editor as raw HTML with no styling of their own. Give headings,
   paragraphs, lists, and emphasis an actual visual hierarchy instead of
   everything rendering as flat, same-size text.
   -------------------------------------------------------------------- */
.dd-prose {
  color: var(--dd-body);
  font-size: 0.95rem;
  line-height: 1.7;
}
.dd-prose > *:first-child { margin-top: 0; }
.dd-prose > *:last-child { margin-bottom: 0; }
.dd-prose p {
  margin: 0 0 1rem;
}
.dd-prose h1, .dd-prose h2, .dd-prose h3, .dd-prose h4, .dd-prose h5, .dd-prose h6 {
  color: var(--dd-ink);
  font-weight: 700;
  margin: 1.75rem 0 0.75rem;
  line-height: 1.3;
}
.dd-prose h1 { font-size: 1.4rem; }
.dd-prose h2 { font-size: 1.25rem; }
.dd-prose h3, .dd-prose h4 { font-size: 1.05rem; }
.dd-prose h5, .dd-prose h6 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dd-muted);
}
.dd-prose ul, .dd-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
}
.dd-prose li { margin-bottom: 0.4rem; }
.dd-prose li::marker { color: var(--dd-primary); }
.dd-prose strong, .dd-prose b { color: var(--dd-ink); font-weight: 700; }
.dd-prose a { color: var(--dd-primary); text-decoration: underline; }
.dd-prose hr {
  border: none;
  border-top: 1px solid var(--dd-line);
  margin: 1.5rem 0;
}
.dd-prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--dd-radius-sm);
  margin: 0.75rem 0;
}
.dd-prose iframe {
  max-width: 100%;
  border-radius: var(--dd-radius-sm);
}
.dd-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
  font-size: 0.88rem;
}
.dd-prose table td, .dd-prose table th {
  border: 1px solid var(--dd-line);
  padding: 0.5rem 0.75rem;
}
/* Editors often leave literal "?" placeholders where a checkmark/cross icon
   never got inserted (seen in real deal content, e.g. "Parking: ?[y] ?[n]")
   — can't fix the source data from CSS, but at least don't let it look
   broken; treat it as plain text, which it already is. */

/* --------------------------------------------------------------------
   Product detail page: consistent vertical rhythm + Deal vs Physical/
   Digital conditional treatment
   -------------------------------------------------------------------- */
.product-detail-right .top > h6 { margin-bottom: 0.15rem; }
.product-detail-right .top > h3 { margin-bottom: 0.6rem !important; }
.product-detail-right .review { margin-bottom: 1.25rem !important; }
.product-detail-right .product-price {
  margin-bottom: 1.1rem !important;
}
.product-detail-right .multi-select {
  margin-bottom: 0.5rem !important;
}
.product-detail-right .multi-select:last-of-type {
  margin-bottom: 1.1rem !important;
}
.product-detail-right hr { margin: 1.25rem 0; }

/* Deal add-on picker: a compact, fully-clickable row (label wraps the whole
   thing so no JS is needed to make the card clickable) with a checkmark
   instead of a visible radio dot — Amazon-style option list, not a form. */
.multi-select {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1.5px solid var(--dd-line);
  border-radius: var(--dd-radius-sm);
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.5rem !important;
  cursor: pointer;
  transition: border-color 0.15s var(--dd-ease), background-color 0.15s var(--dd-ease);
}
.multi-select:hover {
  border-color: var(--dd-primary);
}
.multi-select .form-check-input {
  /* keep it in the accessibility tree / keyboard-focusable, just not drawn
     as a radio dot — the whole label + the check icon show selection */
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.multi-select:has(.form-check-input:checked) {
  border-color: var(--dd-primary);
  background: var(--dd-primary-light);
}
.multi-select__title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dd-ink);
  flex: 1 1 auto;
}
.multi-select__price {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  white-space: nowrap;
}
.multi-select__old {
  color: var(--dd-muted);
  text-decoration: line-through;
}
.multi-select__new {
  color: var(--dd-primary-dark);
  font-weight: 700;
}
.multi-select__check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--dd-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  transition: background-color 0.15s var(--dd-ease), border-color 0.15s var(--dd-ease), color 0.15s var(--dd-ease);
}
.multi-select:has(.form-check-input:checked) .multi-select__check {
  background: var(--dd-primary);
  border-color: var(--dd-primary);
  color: #fff;
}

.btn-outline-danger.disabled {
  width: 100%;
  border-radius: 999px !important;
  border: 2px solid #f1c0c0 !important;
  color: #d64545 !important;
  background: #fdf2f2 !important;
  font-weight: 600;
  padding: 0.7rem 1.6rem;
}

.similar-deals .card-body.popular-card {
  padding: 0 !important;
}

/* Swiper's default CSS puts a solid white background on every .swiper-slide.
   These "sliders" (Popular Shopping Deals, Hot, New, Trending, Sale) render
   all cards in a single non-scrolling slide via a flex row, so whenever
   there are fewer than a full row of products the white slide background
   shows through as an ugly dead rectangle to the right of the last card. */
.swiper-flash .swiper-slide {
  background: transparent !important;
}
