.edical-products-section {
  --edical-cream: #f7f5f1;
  --edical-card: #ffffff;
  --edical-border: #e6e1d9;
  --edical-title: #111827;
  --edical-muted: #6b7280;
  --edical-gold: #c79b34;
  --edical-gold-deep: #af8425;
  --edical-gold-gradient: linear-gradient(135deg, #cda43d 0%, #af8425 100%);
  display: block;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: transparent;
}

@supports (width: 100dvw) {
  .edical-products-section {
    width: 100dvw;
    max-width: 100dvw;
    margin-left: calc(50% - 50dvw);
    margin-right: calc(50% - 50dvw);
  }
}

.edical-products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/Pattern.png") center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

.edical-products-section__container {
  position: relative;
  z-index: 2;
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto;
}

.edical-products-section__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.edical-products-section__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--edical-gold);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 12px;
  font-weight: 700;
}

.edical-products-section__title {
  margin: 0 0 14px;
  color: var(--edical-title);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
}

.edical-products-section__title br {
  display: none;
}

.edical-products-section__subtitle {
  margin: 0 auto;
  color: var(--edical-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 700px;
}

.edical-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 42px;
}

.edical-product-card {
  display: flex;
  flex-direction: column;
  background: var(--edical-card);
  border: 1px solid var(--edical-border);
  border-radius: 18px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edical-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 28px rgba(17, 24, 39, 0.09);
}

.edical-product-card__image-wrap {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: linear-gradient(145deg, #f8f4ee 0%, #efe6d6 100%);
}

.edical-product-card__image-wrap img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.edical-product-card:hover .edical-product-card__image-wrap img {
  transform: scale(1.05);
}

.edical-product-card__badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: var(--edical-gold-gradient);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
}

.edical-product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px;
}

.edical-product-card__name {
  margin: 0 0 4px;
  color: var(--edical-title);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(23px, 1.4vw, 29px);
  line-height: 1.24;
}

.edical-product-card__desc {
  margin: 0 0 18px;
  color: var(--edical-muted);
  font-size: 14px;
}

.edical-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.edical-product-card__price {
  color: var(--edical-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 700;
}

.edical-product-card__price span {
  color: var(--edical-muted);
  font-family: "Inter", Arial, sans-serif;
  font-size: 12px;
  margin-left: 4px;
}

.edical-product-card__btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--edical-gold-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(175, 132, 37, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edical-product-card__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 22px rgba(175, 132, 37, 0.45);
}

.edical-product-card__btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.edical-products-section__cta {
  text-align: center;
}

.edical-products-section__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--edical-gold-gradient);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 14px 24px rgba(175, 132, 37, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edical-products-section__cta-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(175, 132, 37, 0.45);
}

.edical-products-section__cta-link svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1024px) {
  .edical-products-section {
    padding: 84px 0;
  }

  .edical-products-section__container {
    width: min(1380px, calc(100% - 44px));
  }

  .edical-products-section__header {
    margin-bottom: 46px;
  }

  .edical-products-section__title {
    font-size: clamp(33px, 6vw, 48px);
  }

  .edical-products-section__subtitle {
    font-size: 16px;
  }

  .edical-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .edical-product-card {
    min-height: 490px;
  }

  .edical-product-card__image-wrap {
    min-height: 250px;
    padding: 20px;
  }

  .edical-product-card__image-wrap img {
    max-height: 200px;
  }

  .edical-product-card__name {
    font-size: clamp(22px, 2.4vw, 28px);
  }

  .edical-product-card__price {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .edical-products-section {
    padding: 68px 0;
  }

  .edical-products-section__container {
    width: min(1380px, calc(100% - 24px));
  }

  .edical-products-section__header {
    margin-bottom: 42px;
  }

  .edical-products-section__label {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .edical-products-section__title {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.15;
  }

  .edical-products-section__subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .edical-products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .edical-product-card {
    min-height: 0;
  }

  .edical-product-card__image-wrap {
    min-height: 230px;
  }

  .edical-product-card__name {
    font-size: clamp(24px, 6.6vw, 30px);
  }

  .edical-product-card__price {
    font-size: 30px;
  }

  .edical-product-card__btn {
    width: 46px;
    height: 46px;
  }

  .edical-products-section__cta-link {
    width: 100%;
    min-width: 0;
    font-size: 14px;
    padding: 14px 22px;
  }
}
