.pkgcat-crs {
  font-family: 'Lato', sans-serif;
  position: relative;
  overflow: hidden;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 3rem 0;
  margin-bottom:20px;
}

.pkgcat-track {
  display: flex;
  transition: transform 0.5s ease;
  padding-left: 3%;
  padding-right: 3%;
  gap: 3%;
}

.pkgcat-item {
  flex: 0 0 70%;
  max-width: 70%;
  background: #ffffff;
  border-radius: 16px;
  padding: 5rem 3rem;
  min-height: 360px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  box-sizing: border-box;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  color: #111;
}

.pkgcat-text {
  flex: 1;
}

.pkgcat-text .label {
  font-size: 1rem;
  color: #e53935;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pkgcat-text .title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #222;
}

.pkgcat-text .subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.2rem;
  letter-spacing: 0.3px;
}

.pkgcat-text .price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #000;
}

.pkgcat-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.pkgcat-buttons a.primary {
  background-color: #da2128;
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.3s;
}
.pkgcat-buttons a.primary:hover {
  background-color: #b4000f;
}

.pkgcat-buttons a.secondary {
  color: #da2128;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}
.pkgcat-buttons a.secondary::after {
  content: " →";
}

.pkgcat-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  overflow: hidden;
}

.pkgcat-image img {
  max-width: 120%;
  max-height: 100%;
  transform: translateX(5%);
  object-fit: contain;
}

.pkgcat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  color: #333;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 0.6rem 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background 0.3s;
}
.pkgcat-arrow:hover {
  background-color: #f0f0f0;
}
.pkgcat-arrow.left { left: 10px; }
.pkgcat-arrow.right { right: 10px; }


.pkgcat-indicators {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.pkgcat-indicator-dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  transition: background 0.3s;
}
.pkgcat-indicator-dot.active {
  background: #da2128;
}


@media (max-width: 1024px) {
  .pkgcat-track {
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1.5rem;
  }

  .pkgcat-item {
    flex: 0 0 100%;
    max-width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1.2rem;
    min-height: auto;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  }

  .pkgcat-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pkgcat-text .title {
    font-size: 2rem;
  }

  .pkgcat-text .subtitle {
    font-size: 1rem;
    color: #666;
  }

  .pkgcat-text .price {
    font-size: 1.3rem;
  }

  .pkgcat-buttons a.primary {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }

  .pkgcat-image {
    margin-top: 2rem;
    justify-content: center;
  }

  .pkgcat-image img {
    transform: none;
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
  }
}
