﻿/* =========================================================
   PROBOW PRODUCT CARD STYLES
   ========================================================= */

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(22, 35, 26, 0.05);
  border: 1px solid rgba(22, 35, 26, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 480px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  isolation: isolate;
  min-width: 0;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(22, 35, 26, 0.09);
}

/* Card Image & Carousel */
.card-img-carousel {
  height: 205px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--paper-dim);
}
.carousel-slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease-in-out;
}
.carousel-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.card-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  backdrop-filter: blur(2px);
}
.card-carousel-btn.prev { left: 6px; }
.card-carousel-btn.next { right: 6px; }
.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 4px;
  z-index: 5;
}
.dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}
.dot.active {
  background: #fff;
  width: 12px;
  border-radius: 6px;
}
.card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: "Space Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--leaf-deep);
  padding: 0.2rem 0.55rem;
  border-radius: 10px;
  z-index: 6;
}

/* Card Body & Footer layout */
.card-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  min-width: 0;
}
.card-content-top {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.1rem;
}
.card-tags .tag-recommended {
  display: none !important;
}

.food-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.12rem 0.45rem;
  border-radius: 6px;
  background: var(--leaf-tint);
  color: var(--leaf-deep);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}
.food-tag i {
  font-size: 0.72rem;
  line-height: 1;
}
.food-tag.tag-spicy {
  background: #FBE7E1;
  color: #A63823;
}
.food-tag.tag-vegan {
  background: #E7F1E3;
  color: #2F6A2A;
}
.food-tag.tag-recommended {
  background: #FFF1D8;
  color: #8A5A12;
}

.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.card-title:hover {
  color: var(--leaf);
}

.card-desc {
  font-size: 0.8rem;
  color: var(--ink-70);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  min-height: 3.45em;
}

.read-more-link {
  background: none;
  border: none;
  color: var(--leaf);
  font-weight: 700;
  font-size: 0.76rem;
  cursor: pointer;
  padding: 0;
  margin-top: 2px;
  text-align: left;
  text-decoration: underline;
  display: block;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(22, 35, 26, 0.12);
  padding-top: 0.8rem;
  margin-top: auto;
  min-height: 49px;
}
.card-price {
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--leaf-deep);
}
.card-action-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card .qty-picker {
  display: none !important;
}

.btn-customize {
  background: var(--leaf);
  border: none;
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0.65rem 1.05rem !important;
  border-radius: 18px !important;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 46px !important;
  min-width: 112px;
  box-shadow: 0 6px 16px rgba(36, 69, 31, .18) !important;
  white-space: nowrap;
}
.btn-customize:hover {
  background: var(--leaf-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(36, 69, 31, .23) !important;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .card {
    display: flex;
    flex-direction: row;
    width: 100% !important;
    max-width: none !important;
    min-height: 168px;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
  }
  
  /* Badge positioned top-right inside the main card container */
  .card-badge {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    font-size: .52rem !important;
    padding: 0.15rem 0.45rem !important;
    z-index: 10 !important;
  }

  /* Right-hand side image container with reserved bottom space for the Add button to avoid overlap */
  .card-img-carousel {
    order: 2;
    flex: 0 0 120px;
    width: 120px;
    height: 106px;
    margin: 8px 8px 44px 0;
    border-radius: 12px;
    align-self: flex-start;
    position: relative !important;
  }

  /* Left-hand side content container */
  .card-body {
    order: 1;
    flex: 1 1 auto;
    padding: 10px 8px 10px 12px !important;
    min-width: 0;
    justify-content: flex-start !important;
  }
  .card-content-top {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  /* Compact tag layout to conserve horizontal space */
  .card-tags {
    order: 2;
    gap: 3px;
    margin-bottom: 2px;
  }
  .food-tag {
    font-size: 0.52rem !important;
    padding: 0.08rem 0.3rem !important;
    letter-spacing: 0.01em !important;
    gap: 0.2rem !important;
  }
  .food-tag i {
    font-size: 0.6rem !important;
  }

  .card-title {
    order: 1;
    font-size: 0.92rem !important;
    line-height: 1.15;
    padding-right: 0 !important;
    margin-bottom: 1px;
  }
  .card-desc {
    order: 3;
    font-size: 0.7rem !important;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    min-height: 2.7em;
    max-width: 100% !important;
    margin-bottom: 2px;
  }
  .read-more-link {
    order: 4;
    font-size: 0.64rem !important;
    margin-top: 0;
    margin-bottom: 4px;
  }

  .card-footer {
    order: 5;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: auto !important;
    min-height: auto !important;
  }
  .card-price {
    font-size: 0.98rem !important;
  }

  /* Add button pinned neatly below the image on the right side without overlapping */
  .card-action-wrap {
    position: absolute !important;
    z-index: 8;
    right: 8px !important;
    bottom: 8px !important;
    width: 120px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  .card .btn-customize {
    position: static !important;
    font-size: 0.76rem !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 34px !important;
    min-height: 34px !important;
    padding: 0.2rem 0.4rem !important;
    border-radius: 10px !important;
    background: var(--card) !important;
    color: var(--leaf-deep) !important;
    border: 1.5px solid var(--leaf) !important;
    box-shadow: 0 4px 12px rgba(22, 35, 26, .12) !important;
  }
  .card-carousel-btn {
    width: 22px;
    height: 22px;
  }
}


/* =========================================================
   PROBOW POPUP MODAL STYLES
   ========================================================= */

.modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  padding: 20px !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(22, 35, 26, .64) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 2147483000 !important;
  overflow: auto !important;
}

.modal-card {
  position: relative;
  width: min(760px, calc(100vw - 40px)) !important;
  max-width: 760px !important;
  height: min(88dvh, 720px);
  max-height: min(88dvh, 720px) !important;
  margin: auto !important;
  background: var(--paper);
  border-radius: 26px !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32) !important;
  animation: modalIn .25s ease-out;
}

@keyframes modalIn {
  from { transform: translateY(14px) scale(.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-handle { display: none; }

.modal-product {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.modal-product-image {
  min-height: 0;
  height: 100%;
  background: var(--paper-dim);
  overflow: hidden;
}

.modal-product-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.modal-product-content {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.modal-header-text {
  padding: 26px 56px 12px 24px;
}
.modal-kicker {
  font-family: "Space Mono", monospace;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--leaf);
  font-weight: 700;
  margin-bottom: 5px;
}
.modal-header-text h3 {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.modal-food-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.modal-food-tags .food-tag {
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  font-size: .68rem;
  font-weight: 700;
  padding: .22rem .5rem;
  border-radius: 8px;
}
.modal-food-tags .tag-spicy { background: #FBE7E1; color: #A63823; }
.modal-food-tags .tag-vegan { background: #E7F1E3; color: #2F6A2A; }
.modal-food-tags .tag-recommended { background: #FFF1D8; color: #8A5A12; }

.modal-close {
  position: absolute !important;
  top: 12px !important;
  right: 12px !important;
  width: 36px !important;
  height: 36px !important;
  z-index: 20 !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: rgba(22, 35, 26, .78) !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 8px 24px 16px;
  -webkit-overflow-scrolling: touch;
}

.modal-body p {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--ink-70);
  margin-bottom: 18px;
}

.variant-group-title {
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.variant-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.variant-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  min-height: 54px;
  padding: 11px 13px;
  border: 1.5px solid rgba(22, 35, 26, .15);
  border-radius: 14px;
  background: var(--card);
  cursor: pointer;
  font-size: .84rem;
  font-weight: 650;
  transition: background .18s, border-color .18s, transform .12s;
}

.variant-label:active { transform: scale(.99); }
.variant-label:has(input:checked) {
  border-color: var(--leaf);
  background: var(--leaf-tint);
}
.variant-label > span:first-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.variant-label input {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: -4px;
  accent-color: var(--leaf);
}

.modal-qty-section {
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid rgba(22, 35, 26, .09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.modal-qty-label { font-weight: 800; font-size: .88rem; }
.modal-qty-sub { font-size: .7rem; color: var(--ink-45); margin-top: 2px; }
.modal-qty-picker {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  border: 1.5px solid rgba(22, 35, 26, .18);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.modal-qty-picker button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--leaf-deep);
  font-size: 1.25rem;
  font-weight: 900;
  cursor: pointer;
}
.modal-qty-picker button:active { transform: scale(.94); }
.modal-qty-picker span {
  width: 38px;
  text-align: center;
  font-weight: 900;
  font-size: .95rem;
}

.modal-footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 24px calc(15px + env(safe-area-inset-bottom));
  background: var(--card);
  border-top: 1px solid rgba(22, 35, 26, .1);
}
.modal-total-block { min-width: 90px; }
.modal-footer .tot-label {
  font-family: "Space Mono", monospace;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-45);
}
.modal-footer .tot-price {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--leaf-deep);
}

.btn-modal-wa {
  flex: 1 1 auto;
  min-height: 54px !important;
  max-width: none;
  padding: .85rem 1.25rem !important;
  border: 0;
  border-radius: 16px !important;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem !important;
  text-decoration: none;
  font-weight: 850 !important;
  font-size: .9rem !important;
  white-space: nowrap;
}
.btn-modal-wa i { font-size: 1.25rem !important; }

@media (max-width: 768px) {
  .modal-overlay {
    width: 100%;
    height: 100dvh;
    min-height: 100dvh;
    padding: 12px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .modal-card {
    width: min(430px, calc(100vw - 24px)) !important;
    max-width: 430px !important;
    height: auto;
    max-height: calc(100dvh - 24px) !important;
    border-radius: 22px !important;
  }
  .modal-product {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .modal-product-image {
    min-height: 155px;
    height: 155px;
    flex: 0 0 155px;
  }
  .modal-product-image img {
    min-height: 155px;
    height: 155px;
    object-fit: cover;
  }
  .modal-header-text {
    padding: 14px 48px 5px 16px;
  }
  .modal-kicker { font-size: .56rem; }
  .modal-header-text h3 { font-size: 1.2rem; }
  .modal-body {
    padding: 7px 16px 12px;
  }
  .modal-body p { font-size: .76rem; line-height: 1.42; margin-bottom: 12px; }
  .variant-group-title { font-size: .6rem; }
  .variant-options { gap: 6px; }
  .variant-label {
    min-height: 47px;
    padding: 8px 9px;
    font-size: .72rem;
  }
  .modal-qty-section { margin-top: 12px; padding: 11px; }
  .modal-qty-label { font-size: .8rem; }
  .modal-qty-sub { font-size: .62rem; }
  .modal-qty-picker button { width: 37px; height: 37px; }
  .modal-qty-picker span { width: 34px; }
  .modal-footer {
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 9px;
  }
  .modal-total-block { min-width: 70px; }
  .tot-label { font-size: .55rem !important; }
  .tot-price { font-size: 1.18rem !important; }
  .btn-modal-wa {
    min-height: 50px !important;
    padding: .72rem 1rem !important;
    font-size: .82rem !important;
    gap: .5rem !important;
  }
  .btn-modal-wa i { font-size: 1.15rem !important; }
  .modal-close {
    top: 9px !important;
    right: 9px !important;
    width: 32px !important;
    height: 32px !important;
  }
}

/* =========================================================
   TODAY'S PICK SECTION STYLES
   ========================================================= */
.todays-pick-section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.todays-pick-container {
  background: linear-gradient(135deg, rgba(20, 30, 20, 0.95), rgba(10, 15, 10, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.todays-pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--leaf-deep, #2d5a27);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.todays-pick-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: center;
}

.todays-pick-img-wrap {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
}

.todays-pick-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.todays-pick-card:hover .todays-pick-img-wrap img {
  transform: scale(1.03);
}

.todays-pick-content .eyebrow {
  display: block;
  font-size: 0.85rem;
  color: #a3b899;
  margin-bottom: 0.25rem;
}

.todays-pick-content h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.todays-pick-content p {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.todays-pick-action .btn {
  background-color: #ffd700;
  color: #111;
  font-weight: 700;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.todays-pick-action .btn:hover {
  background-color: #ffc400;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .todays-pick-card {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .todays-pick-img-wrap {
    height: 180px;
  }
  .todays-pick-content h2 {
    font-size: 1.4rem;
  }
}

/* Category Icon */
.menu-tabs .tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
}

.menu-tabs .tab-btn i {
  font-size: .82rem;
}

.category-icon-image {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: cover;
  border-radius: 50%;
}

/* =========================================================
   PROBOW — RELATED PRODUCTS
   ========================================================= */

.related-products-section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed rgba(22, 35, 26, .14);
}

.related-products-section[hidden] {
  display: none !important;
}

.related-products-title {
  margin-bottom: 10px;
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink);
}

.related-products-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 5px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.related-products-list::-webkit-scrollbar {
  display: none;
}

.related-product-card {
  flex: 0 0 205px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: var(--card);
  border: 1px solid rgba(22, 35, 26, .10);
  border-radius: 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.related-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 35, 26, .18);
  box-shadow: 0 8px 22px rgba(22, 35, 26, .08);
}

.related-product-card img,
.related-product-image-placeholder {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 10px;
  object-fit: cover;
}

.related-product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-dim);
  color: var(--leaf-deep);
  font-size: 1.1rem;
}

.related-product-info {
  min-width: 0;
  flex: 1;
}

.related-product-name {
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.22;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-product-price {
  margin-top: 3px;
  font-family: "Fraunces", serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--leaf-deep);
}

.related-product-add {
  margin-top: 6px;
  height: 27px;
  min-width: 62px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--card);
  color: var(--leaf-deep);
  border: 1px solid var(--leaf);
  border-radius: 7px;
  font-size: .67rem;
  font-weight: 850;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.related-product-add:hover {
  background: var(--leaf-deep);
  color: #fff;
}

.related-product-add:active {
  transform: scale(.96);
}

.related-product-add span:last-child {
  font-size: .95rem;
  font-weight: 500;
  line-height: 1;
}

.related-product-add.is-added {
  min-width: 72px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--leaf-deep);
  color: #fff;
}

.related-product-add.is-added:hover {
  background: var(--leaf);
}

.related-product-add.is-added span {
  line-height: 1;
}

.related-product-add .related-minus,
.related-product-add .related-plus {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.related-product-add .related-minus:hover,
.related-product-add .related-plus:hover {
  background: rgba(255,255,255,.18);
}

@media (max-width: 768px) {
  .related-products-section {
    margin-top: 14px;
    padding-top: 14px;
  }
  .related-products-list {
    margin-right: -16px;
    padding-right: 16px;
  }
  .related-product-card {
    flex: 0 0 185px;
  }
  .related-product-card img,
  .related-product-image-placeholder {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }
  .related-product-name {
    font-size: .72rem;
  }
  .related-product-price {
    font-size: .88rem;
  }
}