/* ==========================================================================
   HOME PAGE (VERMEER STYLE)
   ========================================================================== */

/* Большой баннер (Hero Section) */
.hero {
  position: relative;
  width: 100%;
  min-height: 45vh;
  background: radial-gradient(circle at 80% 20%, #252830 0%, var(--color-brand-black) 100%);
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--color-brand-yellow);
  padding: 40px 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__text-box {
  background-color: var(--color-brand-yellow);
  padding: 30px 40px 30px 30px;
  max-width: 580px;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0% 100%); /* Фирменный скос */
}

.hero__text-box h2 {
  font-size: 2.5rem;
  color: var(--color-brand-black);
  margin-bottom: 12px;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero__text-box p {
  font-size: 1.1rem;
  color: var(--color-brand-darkgrey);
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.hero__text-box .btn {
  background-color: var(--color-brand-black);
  color: var(--color-brand-yellow);
  border-color: var(--color-brand-black);
  padding: 10px 24px;
  font-size: 0.95rem;
}

.hero__text-box .btn:hover {
  background-color: var(--color-bg-white);
  color: var(--color-brand-black);
  border-color: var(--color-bg-white);
}

/* Плитка продукции */
.products-grid-section {
  padding: 80px 0;
  background-color: var(--color-brand-lightgrey);
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-brand-black);
  margin-bottom: 40px;
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--color-bg-white);
  border-bottom: 4px solid var(--color-brand-yellow);
  display: block;
  transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-card__img {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-color: #e0e0e0;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

.product-card__info {
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-bg-white);
  position: relative;
  z-index: 2;
}

.product-card__info h4 {
  font-size: 1.4rem;
  color: var(--color-brand-black);
  margin: 0;
}

.product-card__arrow {
  font-size: 1.5rem;
  color: var(--color-brand-yellow);
  font-weight: 700;
  transition: transform var(--transition-speed) ease;
}

.product-card:hover .product-card__arrow {
  transform: translateX(5px);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .hero__text-box {
    clip-path: none;
    padding: 30px 20px;
  }
  .hero__text-box h2 {
    font-size: 2.5rem;
  }
}
