/* Homepage hierarchy and section design */
.home-section {
  padding: 24px 0 28px;
}

.home-section--opportunities {
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 217, 10, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fcfa 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(218, 231, 226, 0.9);
}

.home-section--catalog {
  background: #ffffff;
}

.home-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 15px;
}

.home-section__heading {
  min-width: 0;
}

.home-section__eyebrow {
  display: block;
  margin-bottom: 5px;
  color: #07846f;
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.home-section__title {
  margin: 0;
  color: #17211f;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.home-section__subtitle {
  max-width: 640px;
  margin: 7px 0 0;
  color: #71817c;
  font-size: 11.5px;
  line-height: 1.5;
  font-weight: 600;
}

.home-section__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-section__summary {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(7, 132, 111, 0.14);
  border-radius: 999px;
  color: #52645f;
  background: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  line-height: 1;
  font-weight: 750;
  white-space: nowrap;
}

.home-section__link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid rgba(7, 132, 111, 0.18);
  border-radius: 10px;
  color: #056455;
  background: #ffffff;
  text-decoration: none;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.home-section__link:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 132, 111, 0.34);
  background: #f2faf7;
}

#opportunitiesGrid.products-grid,
#productsGrid.products-grid {
  display: grid !important;
  gap: 14px !important;
}

#opportunitiesGrid .product-card {
  border-color: rgba(7, 132, 111, 0.18) !important;
  box-shadow: 0 16px 32px -28px rgba(5, 100, 85, 0.7) !important;
}

#opportunitiesGrid .product-card::before {
  content: 'Precio atractivo';
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 4;
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  color: #4a3b07;
  background: rgba(245, 217, 10, 0.92);
  box-shadow: 0 6px 14px -10px rgba(95, 75, 0, 0.9);
  font-size: 7.5px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

#opportunitiesGrid .discount-tag {
  top: 42px !important;
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.catalog-more[hidden] {
  display: none;
}

.catalog-more__button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(7, 132, 111, 0.2);
  border-radius: 11px;
  color: #056455;
  background: #ffffff;
  box-shadow: 0 10px 20px -20px rgba(7, 72, 60, 0.7);
  font: 800 10px/1 'Inter', sans-serif;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.catalog-more__button:hover {
  transform: translateY(-1px);
  border-color: rgba(7, 132, 111, 0.38);
  background: #eff9f6;
}

.catalog-pagination {
  align-items: center;
  gap: 12px;
}

.catalog-pagination__status {
  min-width: 118px;
  color: #4b635f;
  text-align: center;
  font: 700 11px/1.25 'Inter', sans-serif;
}

.catalog-more__button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.catalog-empty {
  grid-column: 1 / -1;
  min-height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px;
  border: 1px dashed rgba(7, 132, 111, 0.22);
  border-radius: 16px;
  color: #71817c;
  background: #fafdfc;
  text-align: center;
}

.catalog-empty strong {
  color: #2e3d39;
  font-size: 13px;
  font-weight: 800;
}

.catalog-empty span {
  font-size: 10px;
  font-weight: 600;
}

@media (min-width: 1180px) {
  #opportunitiesGrid.products-grid,
  #productsGrid.products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 760px) and (max-width: 1179px) {
  #opportunitiesGrid.products-grid,
  #productsGrid.products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 360px) and (max-width: 759px) {
  #opportunitiesGrid.products-grid,
  #productsGrid.products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
}

@media (max-width: 759px) {
  .home-section {
    padding: 17px 0 19px;
  }

  .home-section__header {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 11px;
  }

  .home-section__title {
    font-size: 18px;
  }

  .home-section__subtitle {
    margin-top: 5px;
    font-size: 9.5px;
    line-height: 1.4;
  }

  .home-section__actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .home-section__summary {
    min-height: 25px;
    padding-inline: 8px;
    font-size: 7.5px;
  }

  .home-section__link {
    min-height: 29px;
    padding-inline: 9px;
    font-size: 8.5px;
  }

  #opportunitiesGrid .product-card::before {
    left: 8px;
    top: 8px;
    min-height: 20px;
    padding-inline: 6px;
    font-size: 6.5px;
  }

  #opportunitiesGrid .discount-tag {
    top: 34px !important;
  }

  .catalog-more {
    margin-top: 13px;
  }

  .catalog-more__button {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 9px;
  }
}

@media (max-width: 520px) {
  .home-section__header {
    display: block;
  }

  .home-section__actions {
    margin-top: 9px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .home-section--catalog .home-section__summary {
    margin-top: 8px;
  }
}

@media (max-width: 359px) {
  #opportunitiesGrid.products-grid,
  #productsGrid.products-grid {
    grid-template-columns: 1fr !important;
  }
}

/* v2.1 simplified homepage section headers after visual review */
.home-section--opportunities {
  background: #ffffff;
  border-bottom: 1px solid rgba(218, 231, 226, 0.88);
}

.home-section__header--simple {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin-bottom: 12px;
  padding-left: 11px;
}

.home-section__header--simple::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: #07846f;
}

.home-section__header--simple .home-section__title {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 800;
}

.home-section__header--catalog {
  margin-bottom: 13px;
}

#opportunitiesGrid .product-card::before {
  content: none !important;
  display: none !important;
}

#opportunitiesGrid .discount-tag {
  top: 12px !important;
}

@media (max-width: 759px) {
  .home-section {
    padding-top: 15px;
    padding-bottom: 17px;
  }

  .home-section__header--simple {
    min-height: 28px;
    margin-bottom: 9px;
    padding-left: 9px;
  }

  .home-section__header--simple::before {
    top: 5px;
    bottom: 5px;
    width: 2px;
  }

  .home-section__header--simple .home-section__title {
    font-size: 16px;
    line-height: 1.15;
  }

  .home-section__header--catalog {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .home-section__header--catalog .home-section__summary {
    margin-top: 0;
  }

  #opportunitiesGrid .discount-tag {
    top: 8px !important;
  }
}

/* v2.2 refined homepage headers after screenshot review */
.home-section--opportunities {
  background: linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(218, 231, 226, 0.9);
}

.home-section__header--simple {
  min-height: 36px;
  margin-bottom: 14px;
  padding-left: 0;
}

.home-section__header--simple::before {
  content: none !important;
  display: none !important;
}

.home-section__title-group {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.home-section__title-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #07846f;
  background: #eaf7f3;
  border: 1px solid rgba(7, 132, 111, 0.12);
}

.home-section__title-icon svg {
  width: 15px;
  height: 15px;
}

.home-section__title-icon--deal {
  color: #7a6200;
  background: #fff6bf;
  border-color: rgba(190, 153, 0, 0.15);
}

.home-section__header--simple .home-section__title {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.home-section__summary {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #7a8884;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
}

.home-section--catalog {
  border-top: 0;
}

@media (max-width: 759px) {
  .home-section__header--simple {
    min-height: 32px;
    margin-bottom: 10px;
    padding-left: 0;
  }

  .home-section__title-group {
    gap: 7px;
  }

  .home-section__title-icon {
    width: 27px;
    height: 27px;
    border-radius: 8px;
  }

  .home-section__title-icon svg {
    width: 14px;
    height: 14px;
  }

  .home-section__header--simple .home-section__title {
    font-size: 16px;
  }

  .home-section__summary {
    font-size: 8px;
  }
}

/* v2.3 final header cleanup after second screenshot pass */
.home-section__header--catalog {
  justify-content: flex-start;
  gap: 12px;
}

.home-section__header--catalog .home-section__summary {
  margin-left: auto;
}

@media (max-width: 759px) {
  .home-section__header--catalog .home-section__summary {
    display: none;
  }
}

/* v2.4 compact footer and cleaner page ending */
.footer {
  margin-top: 0;
  padding: 24px 0 16px;
  background: #fbfdfc;
}

.footer-grid {
  gap: 18px;
  margin-bottom: 18px;
}

.footer-logo {
  height: 31px;
  margin-bottom: 8px;
}

.footer-text {
  max-width: 420px;
  font-size: 11px;
  line-height: 1.5;
}

.footer-col h4 {
  margin-bottom: 8px;
  font-size: 11px;
}

.footer-col a {
  padding: 4px 0;
  font-size: 10.5px;
}

.footer-bottom {
  padding-top: 12px;
  font-size: 9.5px;
}

@media (max-width: 759px) {
  .footer {
    padding: 17px 0 12px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin-bottom: 14px;
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

  .footer-logo {
    height: 27px;
    margin-bottom: 6px;
  }

  .footer-text {
    max-width: 330px;
    font-size: 9.5px;
    line-height: 1.45;
  }

  .footer-col h4 {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .footer-col a {
    padding: 3px 0;
    font-size: 9px;
  }

  .footer-bottom {
    padding-top: 10px;
    font-size: 8.5px;
  }
}

/* v2.5 tighter section-title rows */
.home-section {
  padding-top: 19px;
  padding-bottom: 22px;
}

.home-section__header--simple {
  min-height: 30px;
  margin-bottom: 10px;
}

.home-section__title-group {
  gap: 7px;
}

.home-section__title-icon {
  width: 25px;
  height: 25px;
  border-radius: 7px;
}

.home-section__title-icon svg {
  width: 13px;
  height: 13px;
}

.home-section__header--simple .home-section__title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.05;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.home-section__header--catalog {
  gap: 9px;
}

@media (max-width: 759px) {
  .home-section {
    padding-top: 11px;
    padding-bottom: 14px;
  }

  .home-section__header--simple {
    min-height: 25px;
    margin-bottom: 7px;
  }

  .home-section__title-group {
    gap: 6px;
  }

  .home-section__title-icon {
    width: 23px;
    height: 23px;
    border-radius: 7px;
  }

  .home-section__title-icon svg {
    width: 12px;
    height: 12px;
  }

  .home-section__header--simple .home-section__title {
    font-size: 14.5px;
    line-height: 1.05;
    font-weight: 750;
  }
}

/* v2.6 extra-compact section title rows */
.home-section {
  padding-top: 15px;
  padding-bottom: 18px;
}

.home-section__header--simple {
  min-height: 24px;
  margin-bottom: 6px;
}

.home-section__title-group {
  gap: 5px;
}

.home-section__title-icon {
  width: 21px;
  height: 21px;
  border-radius: 6px;
}

.home-section__title-icon svg {
  width: 11px;
  height: 11px;
}

.home-section__header--simple .home-section__title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.home-section__header--catalog {
  gap: 7px;
}

@media (max-width: 759px) {
  .home-section {
    padding-top: 8px;
    padding-bottom: 11px;
  }

  .home-section__header--simple {
    min-height: 21px;
    margin-bottom: 5px;
  }

  .home-section__title-group {
    gap: 5px;
  }

  .home-section__title-icon {
    width: 20px;
    height: 20px;
    border-radius: 6px;
  }

  .home-section__title-icon svg {
    width: 10px;
    height: 10px;
  }

  .home-section__header--simple .home-section__title {
    font-size: 12.5px;
    line-height: 1;
    font-weight: 750;
  }
}

/* v2.7 ultra-compact section title rows */
.home-section {
  padding-top: 11px;
  padding-bottom: 14px;
}

.home-section__header--simple {
  min-height: 19px;
  margin-bottom: 4px;
}

.home-section__title-group {
  gap: 4px;
}

.home-section__title-icon {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.home-section__title-icon svg {
  width: 9px;
  height: 9px;
}

.home-section__header--simple .home-section__title {
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.home-section__header--catalog {
  gap: 5px;
}

@media (max-width: 759px) {
  .home-section {
    padding-top: 6px;
    padding-bottom: 9px;
  }

  .home-section__header--simple {
    min-height: 17px;
    margin-bottom: 3px;
  }

  .home-section__title-group {
    gap: 4px;
  }

  .home-section__title-icon {
    width: 17px;
    height: 17px;
    border-radius: 5px;
  }

  .home-section__title-icon svg {
    width: 8px;
    height: 8px;
  }

  .home-section__header--simple .home-section__title {
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
  }
}

/* v2.8 Ofertas de hoy as a single-row horizontal carousel */
.home-section__header--carousel {
  align-items: center;
  justify-content: space-between;
}

.opportunities-carousel__controls {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.opportunities-carousel__button {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(7, 132, 111, 0.18);
  border-radius: 7px;
  color: #056455;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, opacity 150ms ease;
}

.opportunities-carousel__button svg {
  width: 13px;
  height: 13px;
}

.opportunities-carousel__button:hover:not(:disabled) {
  color: #ffffff;
  border-color: #07846f;
  background: #07846f;
}

.opportunities-carousel__button:disabled {
  opacity: 0.32;
  cursor: default;
}

.opportunities-carousel {
  position: relative;
  min-width: 0;
}

#opportunitiesGrid.products-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 14px !important;
  width: 100%;
  max-width: 100%;
  overflow-x: auto !important;
  overflow-y: hidden;
  padding: 2px 1px 6px !important;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

#opportunitiesGrid.products-grid::-webkit-scrollbar {
  display: none;
}

#opportunitiesGrid.products-grid > .product-card {
  flex: 0 0 calc((100% - 42px) / 4) !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#opportunitiesGrid:focus-visible {
  outline: 2px solid rgba(7, 132, 111, 0.28);
  outline-offset: 3px;
  border-radius: 12px;
}

@media (min-width: 760px) and (max-width: 1179px) {
  #opportunitiesGrid.products-grid > .product-card {
    flex-basis: calc((100% - 28px) / 3) !important;
  }
}

@media (max-width: 759px) {
  .home-section__header--carousel {
    display: flex;
    align-items: center;
  }

  .opportunities-carousel__button {
    width: 21px;
    height: 21px;
    border-radius: 6px;
  }

  .opportunities-carousel__button svg {
    width: 11px;
    height: 11px;
  }

  #opportunitiesGrid.products-grid {
    gap: 8px !important;
    padding-bottom: 4px !important;
    touch-action: pan-x pan-y;
  }

  #opportunitiesGrid.products-grid > .product-card {
    flex-basis: calc((100% - 8px) / 2) !important;
  }
}

@media (max-width: 380px) {
  #opportunitiesGrid.products-grid {
    gap: 6px !important;
  }

  #opportunitiesGrid.products-grid > .product-card {
    flex-basis: calc((100% - 6px) / 2) !important;
  }
}

/* v2.9 subtle right-edge hint when more carousel items are available */
.opportunities-carousel.has-more::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 4px;
  z-index: 4;
  width: 48px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(247, 251, 249, 0), rgba(247, 251, 249, 0.88) 72%, rgba(247, 251, 249, 0.98));
}

.opportunities-carousel__hint {
  position: absolute;
  top: 50%;
  right: 5px;
  z-index: 5;
  width: 28px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(7, 132, 111, 0.20);
  border-radius: 999px;
  color: #056455;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 18px -12px rgba(5, 100, 85, 0.80);
  transform: translateY(-50%);
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, opacity 150ms ease, transform 150ms ease;
}

.opportunities-carousel__hint[hidden] {
  display: none;
}

.opportunities-carousel__hint svg {
  width: 15px;
  height: 15px;
}

.opportunities-carousel__hint:hover {
  color: #ffffff;
  border-color: #07846f;
  background: #07846f;
  transform: translateY(-50%) translateX(1px);
}

.opportunities-carousel__hint:focus-visible {
  outline: 3px solid rgba(7, 132, 111, 0.22);
  outline-offset: 2px;
}

@media (max-width: 759px) {
  .opportunities-carousel.has-more::after {
    width: 38px;
  }

  .opportunities-carousel__hint {
    right: 3px;
    width: 24px;
    height: 35px;
    border-radius: 999px;
    opacity: 0.92;
  }

  .opportunities-carousel__hint svg {
    width: 13px;
    height: 13px;
  }
}

/* v2.10 first-visit attention cue for the carousel hint */
.opportunities-carousel__hint {
  transform-origin: center center;
}

.opportunities-carousel__hint.is-intro {
  z-index: 8;
  animation: opportunitiesHintIntro 1.8s cubic-bezier(.22,.75,.22,1) both;
}

@keyframes opportunitiesHintIntro {
  0% {
    opacity: 0;
    color: #ffffff;
    background: #07846f;
    border-color: #07846f;
    box-shadow: 0 0 0 0 rgba(7, 132, 111, 0);
    transform: translateY(-50%) scale(.7);
  }
  10% {
    opacity: 1;
    color: #ffffff;
    background: #07846f;
    border-color: #07846f;
    box-shadow: 0 0 0 10px rgba(7, 132, 111, .12), 0 14px 28px -14px rgba(5, 100, 85, .9);
    transform: translateY(-50%) scale(2.1);
  }
  24% {
    opacity: .28;
    transform: translateY(-50%) scale(2.02);
  }
  36% {
    opacity: 1;
    transform: translateY(-50%) scale(2.05);
  }
  50% {
    opacity: .34;
    transform: translateY(-50%) scale(1.9);
  }
  62% {
    opacity: 1;
    color: #ffffff;
    background: #07846f;
    border-color: #07846f;
    box-shadow: 0 0 0 7px rgba(7, 132, 111, .09), 0 12px 24px -14px rgba(5, 100, 85, .8);
    transform: translateY(-50%) scale(1.75);
  }
  80% {
    opacity: 1;
    transform: translateY(-50%) scale(1.25);
  }
  100% {
    opacity: .92;
    color: #056455;
    background: rgba(255, 255, 255, .94);
    border-color: rgba(7, 132, 111, .20);
    box-shadow: 0 8px 18px -12px rgba(5, 100, 85, .80);
    transform: translateY(-50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .opportunities-carousel__hint.is-intro {
    animation: none;
  }
}

/* v2.11 controlled preview motion */
#opportunitiesGrid.is-previewing {
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

/* v2.14 compact highlighted headers for reusable homepage sections */
.home-section--opportunities {
  background: linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
  border-top: 0;
  border-bottom: 1px solid rgba(218, 231, 226, 0.9);
  box-shadow: none;
}

.home-section .home-section__header--simple {
  position: relative;
  min-height: 22px;
  margin-bottom: 5px;
  padding: 2px 6px 2px 8px;
  border: 1px solid rgba(7, 132, 111, 0.2);
  border-left: 3px solid #07846f;
  border-radius: 6px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 217, 10, 0.13), transparent 34%),
    linear-gradient(100deg, #e6f5ef 0%, #f2faf7 72%, #fffdf3 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 2px 7px rgba(5, 100, 85, 0.05);
}

.home-section .home-section__title-group {
  gap: 4px;
}

.home-section .home-section__title-icon {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  color: #06705f;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(7, 132, 111, 0.15);
  box-shadow: none;
}

.home-section .home-section__title-icon--deal {
  background: rgba(245, 217, 10, 0.23);
  border-color: rgba(193, 161, 0, 0.2);
}

.home-section .home-section__title-icon svg {
  width: 7px;
  height: 7px;
}

.home-section .home-section__header--simple .home-section__title {
  margin: 0;
  color: #064f44;
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 11.5px;
  line-height: 1;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.home-section .home-section__summary,
.home-section .home-section__header--catalog .home-section__summary {
  margin: 0;
  color: #4f6f68;
  font-size: 9.5px;
  line-height: 1;
  font-weight: 600;
}

.home-section .opportunities-carousel__controls {
  gap: 2px;
}

.home-section .opportunities-carousel__button {
  width: 19px;
  height: 19px;
  border-radius: 5px;
}

.home-section .opportunities-carousel__button svg {
  width: 9px;
  height: 9px;
}

.home-section--opportunities .product-card {
  box-shadow: initial;
}

.home-section--opportunities .opportunities-carousel.has-more::after {
  background: linear-gradient(90deg, rgba(247, 251, 249, 0), rgba(247, 251, 249, 0.88) 72%, rgba(247, 251, 249, 0.98));
}

@media (max-width: 759px) {
  .home-section .home-section__header--simple {
    min-height: 20px;
    margin-bottom: 4px;
    padding: 2px 5px 2px 7px;
    border-left-width: 3px;
    border-radius: 5px;
  }

  .home-section .home-section__title-group {
    gap: 3px;
  }

  .home-section .home-section__title-icon {
    width: 14px;
    height: 14px;
    border-radius: 4px;
  }

  .home-section .home-section__title-icon svg {
    width: 6.5px;
    height: 6.5px;
  }

  .home-section .home-section__header--simple .home-section__title {
    font-size: 10px;
  }

  .home-section .home-section__summary,
  .home-section .home-section__header--catalog .home-section__summary {
    max-width: 47%;
    overflow: hidden;
    color: #5a756f;
    font-size: 8.5px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .home-section .opportunities-carousel__button {
    width: 18px;
    height: 18px;
  }

  .home-section .opportunities-carousel__button svg {
    width: 8px;
    height: 8px;
  }
}



/* Card savings always references the 30-day average. */
.product-card .kpi-savings small {
  margin-left: 1px;
  font-size: 0.72em;
  font-weight: 800;
  line-height: 1;
  opacity: 0.78;
}
