:root {
  --color-primary: #7ea9be;
  --color-text-dark: #383838;
  --color-text-light: #ffffff;
  --color-text-muted: #8b8b8b;
  --color-text-active: #2d4f68;
  --color-background: #ffffff;
  --font-main: 'Alata', sans-serif;
  --font-heading: 'Abhaya Libre SemiBold', serif;
  --font-special: 'Abel', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background-color: var(--color-background);
  color: var(--color-text-dark);
}

.page-wrapper {
  max-width: 402px;
  margin: 0 auto;
  background-color: var(--color-background);
}

.content-wrapper {
  padding: 0 21px;
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.horizontal-scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

.product-section {
  margin-top: 35px;
}

.product-section__header {
  display: flex;
  gap: 4px;
  align-items: flex-start;
}

.product-section__title-decorator {
  flex-shrink: 0;
  width: 1px;
  height: 40px;
  background-color: var(--color-text-dark);
  margin-top: 4.5px;
}

.product-section__title-content h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 1.62px;
  color: var(--color-text-dark);
}

.product-section__title-content p {
  margin: -2.5px 0 0;
  font-family: var(--font-main);
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.9px;
  color: var(--color-text-dark);
}

.product-section__capacity-tags {
  display: flex;
  gap: 5px;
  margin-top: 18px;
}

.product-section__capacity-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 19px;
  background-color: var(--color-primary);
  border-radius: 4px;
  color: var(--color-text-light);
  font-family: var(--font-main);
  font-size: 14px;
  letter-spacing: 2.1px;
  text-shadow: 2px 1px 4px rgba(0, 0, 0, 0.25);
}

.product-grid {
  margin-top: 15px;
}

.product-card {
  flex-shrink: 0;
  width: 160px;
}

.product-card__image {
  width: 160px;
  height: 160px;
  border-radius: 11px;
  object-fit: cover;
  display: block;
}

.product-card__name-wrapper {
  position: relative;
  margin-top: 6px;
}

.product-card__name {
  font-family: var(--font-main);
  font-size: 12px;
  line-height: 15.6px;
  letter-spacing: 0.6px;
  color: var(--color-text-dark);
  text-align: center;
  margin: 0;
  padding: 0 10px;
}

.product-card__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
}

.product-card__icon--left {
  left: 0;
}

.product-card__icon--right {
  right: 0;
}

.brand-logo {
  display: block;
  margin-top: 30px;
}