/*
Theme Name: Hello Elementor Child
Template: hello-elementor
*/

/* =============================== */
/*          PRICE CARD              */
/* =============================== */

.package-card {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.01)
  );
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(2, 5, 10, 0.6);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  margin: auto;
}

.package-top {
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  color: white;
}

.pkg-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 -6px 12px rgba(0, 0, 0, 0.2);
}

.pkg-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.pkg-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 4px;
}

/* Price section */
.package-price {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: linear-gradient(
    180deg,
    rgba(2, 5, 10, 0.3),
    rgba(2, 5, 10, 0.15)
  );
}

.price-value {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  -webkit-background-clip: text;
  color: transparent;
}

.price-suffix {
  color: var(--muted);
  font-size: 13px;
}

/* Features section */
.package-features {
  padding: 12px 20px 6px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.01),
    rgba(255, 255, 255, 0)
  );
}

.feature {
  font-size: 14px;
  color: #d6e6ea;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature svg {
  flex-shrink: 0;
  margin-top: 3px;
}

/* Actions */
.package-actions,
.package-actions2 {
  padding: 14px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.btn-choose {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-choose.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.detail-toggle {
  width: 100%;
  background: transparent !important;
  border: none !important;
  color: var(--accent1) !important;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  padding: 8px 12px;
  font-size: 14px;
  transition: color 0.3s;
}

.detail-toggle:hover {
  color: var(--accent2) !important;
}

.detail-toggle:active {
  color: #000 !important; /* az aktív szín */
  background: transparent !important;
}

/* Detail body */
.detail-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  box-sizing: border-box;
  padding: 0;
}

.detail-body-content {
  padding: 10px 12px;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #1a1a1a;
  border-radius: 8px;
}

.detail-body-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #e6e6e6;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.detail-body-content p:first-of-type {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.detail-body-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.detail-body-content ul li {
  position: relative;
  font-size: 13px;
  line-height: 1.6;
  color: #e6e6e6;
  padding-left: 25px;
  margin-bottom: 8px;
}

.detail-body-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #0b9fbd;
  font-size: 18px;
  line-height: 1;
}

.detail-body-content p:hover,
.detail-body-content ul li:hover {
  color: #ffffff;
}

/* Package notes */
.package-note,
.package-note2 {
  font-size: 13px;
  color: #cccccc;
  background-color: #262626;
  padding: 10px 15px;
  border-left: 4px solid #0b9fbd;
  border-radius: 6px;
  margin-top: 15px;
}

.package-note2 {
  padding-bottom: 30px;
  padding-left: 10px;
}

.package-note:hover {
  background-color: #333333;
  color: #ffffff;
}

/* ================================== */
/*  Price card container (4 kártya)   */
/* ================================== */
.price-cards-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  margin: 0 auto;
}

@media (min-width: 680px) {
  .package-card {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .price-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .price-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
