.elementor-21123 .elementor-element.elementor-element-f0c64f8{--display:flex;overflow:visible;}.elementor-21123 .elementor-element.elementor-element-0ab30d6{--display:flex;overflow:visible;}/* Start custom CSS */.ds-home {
  --ds-bg: #f5f3ee;
  --ds-text: #1e1e1b;
  --ds-muted: #6e6a61;
  --ds-accent: #7f8d72;
  --ds-dark: #161616;
  --ds-light: #ffffff;

  background: var(--ds-bg);
  color: var(--ds-text);
  padding: 40px 0 80px;
  font-family: "Inter", sans-serif;
}

.ds-home * {
  box-sizing: border-box;
}

.ds-hero {
  max-width: 1380px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ds-hero-content {
  max-width: 620px;
}

.ds-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ds-muted);
  margin-bottom: 18px;
}

.ds-hero h1 {
  font-size: 58px;
  line-height: 1.05;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}

.ds-hero p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--ds-muted);
  margin: 0 0 28px;
}

.ds-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ds-btn-primary {
  background: var(--ds-dark);
  color: var(--ds-light);
}

.ds-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.ds-btn-secondary {
  border: 1px solid #d7d2c8;
  color: var(--ds-text);
  background: transparent;
}

.ds-btn-secondary:hover {
  border-color: var(--ds-text);
  transform: translateY(-2px);
}

.ds-hero-image img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.ds-categories {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ds-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  color: #fff;
  background: #ddd;
  min-height: 460px;
}

.ds-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ds-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.12));
}

.ds-card:hover img {
  transform: scale(1.05);
}

.ds-card-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.ds-card-overlay span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 8px;
}

.ds-card-overlay h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .ds-hero {
    grid-template-columns: 1fr;
  }

  .ds-hero h1 {
    font-size: 44px;
  }

  .ds-hero-image img {
    height: 540px;
  }

  .ds-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .ds-home {
    padding: 20px 0 50px;
  }

  .ds-hero {
    gap: 24px;
    margin-bottom: 50px;
  }

  .ds-hero h1 {
    font-size: 34px;
  }

  .ds-hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .ds-hero-image img {
    height: 420px;
    border-radius: 20px;
  }

  .ds-categories {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ds-card,
  .ds-card img {
    min-height: 360px;
  }

  .ds-card-overlay h3 {
    font-size: 24px;
  }
}/* End custom CSS */