﻿:root {
  --bg-color: #1f3c32;
  --card-bg: rgba(22, 52, 40, 0.75);
  --text-color: #e9f3e2;
  --muted-text: #bfd6c0;
  --accent-primary: #a8d38a;
  --accent-primary-hover: #b6df98;
  --accent-outline: #c3e2a4;
  --accent-blog-bg: rgba(168, 211, 138, 0.12);
  --accent-blog-border: #a8d38a;
  --font-family: "DM Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
  font-family: var(--font-family);
  color: var(--text-color);
  padding: 32px 16px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.card {
  width: 100%;
  max-width: 920px;
  background: rgba(19, 48, 38, 0.9);
  border-radius: 32px;
  padding: 40px 28px 48px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.card__header {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.card__logo {
  width: 208px;
  height: auto;
}

.block+.block {
  margin-top: 32px;
}

.block__title {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFF;
  font-family: "DM Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.42px;
}

.block__title span {
  width: 10px;
  height: 10px;
  background: url("images/icon-arrow-down-right.svg") no-repeat left bottom / contain;
  flex-shrink: 0;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.link-button img {
  width: 17px;
  height: 17px;
}

.link-button--primary {
  background: var(--accent-primary);
  color: #fff;
  box-shadow: 0 8px 18px rgba(14, 49, 28, 0.22);
}

.link-button--primary:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-2px);
}

.link-button--outline {
  border: 2px solid var(--accent-outline);
  color: var(--text-color);
  background: transparent;
  justify-content: center;
}

.link-button--outline:hover {
  background: rgba(168, 211, 138, 0.1);
  transform: translateY(-2px);
}

.link-button--blog {
  border: 2px solid var(--accent-blog-border);
  background: var(--accent-blog-bg);
  justify-content: center;
}

.link-button--blog:hover {
  background: rgba(168, 211, 138, 0.2);
  transform: translateY(-2px);
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
  padding: 22px 28px;
  `n padding-right: 132px;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 160px;
}

.product-card img {
  position: absolute;
  right: 20px;
  bottom: 0;
  width: auto;
  pointer-events: none;
}

.product-card--fit {
  background: linear-gradient(135deg, #a44531 0%, #d36f5f 100%);
}

.product-card--collagen {
  background: linear-gradient(135deg, #794a7e 0%, #b073c0 100%);
}

.product-card--aura {
  background: linear-gradient(135deg, #e09a74 0%, #f3b9a0 100%);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.social-card {
  background: #f4f7ef;
  color: #1f362e;
  border-radius: 18px;
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card img {
  width: 16px;
  height: auto;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.block--addresses {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
}

.address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.5;
}

.address img {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.address h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-color);
}

.address p {
  margin: 0;
}

.address__link:hover h3 {
  color: var(--accent-primary);
}

@media (min-width: 768px) {
  
  .card {
    max-width: 920px;
    padding: 48px 36px 56px;
  }

  .product-card {
    font-size: 14px;
    padding-right: 140px;
  }

}

@media (max-width: 768px) {
  body {
    padding: 0px;
  }

  .card {
    border-radius: 0px;
  }

}