.ent-banner {
  background: #fefaf0;
}

.ent-banner img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  object-position: left center;
  display: block;
}

.ent-hero {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fefaf0;
}

.ent-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ent-hero-text h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.ent-hero-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 24px 0;
}

.ent-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.ent-hero-list li {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}

.ent-hero-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: #E67E50;
  font-size: 1.2rem;
}


.ent-hero-carousel {
  position: relative;
}

.ent-carousel-box {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.ent-carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ent-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
}

.ent-carousel-item img,
.ent-carousel-item video {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.ent-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.ent-offers {
  padding: 80px 0;
  background: #f3ebd3;
}

.ent-offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.ent-offer-main {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.ent-offer-img {
  position: relative;
}

.ent-offer-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ent-offer-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(241, 144, 107, 0.9);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 24px;
  white-space: nowrap;
}

.ent-offer-main h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin: 20px 24px 8px;
}

.ent-offer-main p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 24px 24px;
}

.ent-offer-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ent-offer-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.ent-offer-card-img {
  position: relative;
}

.ent-offer-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.ent-offer-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(241, 144, 107, 0.9);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ent-offer-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin: 16px 20px 6px;
}

.ent-offer-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0 20px 20px;
}

.ent-vente {
  padding: 80px 0;
  background: #ffffff;
}

.ent-vente-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ent-vente-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.ent-vente-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.ent-vente-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 28px 0;
}

@media (max-width: 768px) {
  .ent-hero {
    padding-top: 80px;
  }

  .ent-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ent-hero-text h1 {
    font-size: 1.1rem;
  }

  .ent-offers h2 {
    font-size: 1.2rem;
  }
  .ent-offers-grid {
    grid-template-columns: 1fr;
  }
  .ent-vente h2 {
    font-size: 1.2rem;
  }

  .ent-vente-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ent-carousel-box {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: 14px;
  }
  .ent-carousel-box::-webkit-scrollbar { display: none; }
  .ent-carousel-track {
    transition: none;
    transform: none !important;
  }
  .ent-carousel-item {
    scroll-snap-align: center;
  }
}
