/* ===== Основной стиль ===== */
body {
  font-family:  Playfair Display, Montserrat, sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar-brand {
  font-size: 1.8rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.nav-link {
  font-weight: 500;
  margin-left: 1rem;
}

.nav-link:hover {
  color: #555;
}

/* ===== Hero section ===== */
.hero {
  background-color: #f4f6f5;
  padding: 100px 0;
  text-align: center;
  border-radius: 59px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero .lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

.btn-custom {
  background-color: #000;
  color: #fff;
  border-radius: 0;
  padding: 12px 30px;
  font-weight: 500;
}

.btn-ozon {
            width: 221px !important;
            height: 82px !important;
            border-radius: 10px;
            background-color: #005BFF;
            color: #F1117E;
            font-size: 18px;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

  .btn-ozon:hover,
        .btn-ozon:focus,
        .btn-ozon:active {
            background-color: #004AC0; /* Чуть более темный оттенок */
        }
.btn-custom:hover {
  background-color: #333;
  color: #fff;
}

/* ===== Cards ===== */
.card {
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card-title {
  font-weight: bold;
}

/* ===== Brands section ===== */
section.text-center a {
  font-weight: 600;
  font-size: 1.1rem;
  color: #333;
}

section.text-center a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
footer {
  font-size: 0.95rem;
  background-color: #000;
  color: #fff;
}