/* Page: /how-to-order-fireworks/ */

body.page-how-to-order-fireworks {
  background: #fffefa;
}

.howto-order {
  padding-top: 28px;
  padding-bottom: 40px;
  /* Full-width layout with fixed side paddings like on the screenshot */
  max-width: none !important;
  width: 100%;
  box-sizing: border-box;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1025px) {
  .howto-order {
    padding-left: 92px;
    padding-right: 92px;
  }
}

.howto-order__hero {
  width: 100%;
  max-width: none;
  margin: 0 0 22px;
}

.howto-order__hero-title {
  width: 100%;
  padding: 18px 22px;
  border: 1px solid #e6dbc7;
  border-radius: 12px;
  background: #fffcf6;
  color: #75728d;
  font-family: Geologica, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
  user-select: none;
}

.howto-order__hero-hint {
  margin-top: 10px;
  text-align: center;
  color: #75728d;
  font-family: Geologica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}

.howto-order__grid {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px; /* horizontal between columns */
  row-gap: 0;
  align-items: start;
}

@media (max-width: 1024px) {
  .howto-order__grid {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }
}

.howto-order__col {
  display: flex;
  flex-direction: column;
  gap: 12px; /* vertical between questions */
  min-width: 0;
}

.howto-faq__item {
  border: 1px solid #e6dbc7;
  border-radius: 12px;
  background: #fffcf6;
  padding: 14px 16px;
}

.howto-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  margin: 0;
  color: #373449;
  font-family: Geologica, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  font-variant-numeric: lining-nums tabular-nums;
}

.howto-faq__arrow {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #75728d;
}

.howto-faq__arrow svg {
  display: block;
  fill: currentColor;
}

.toggle-icon {
  transition: transform 0.25s ease;
}

.toggle-icon.rotated {
  transform: rotate(180deg);
}

.toggle-item.is-open .toggle-icon {
  transform: rotate(180deg);
}

.howto-faq__a {
  margin: 10px 0 0;
  color: #373449;
  font-family: Geologica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  font-variant-numeric: lining-nums tabular-nums;
}

/* All answers are hidden by default (opened state is controlled by JS via slideToggle + .is-open). */

/* Keep spacing to match screenshot */
.howto-ask {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 56px;
}

.howto-ask__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  /* Same background as the block */
  background: #fffcf6;
  color: #373449;
  border: 1px solid #75728d;
  border-radius: 12px;
  padding: 20px;
  opacity: 1;
  font-family: Geologica, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-transform: uppercase;
}

@media (min-width: 1025px) {
  .howto-ask__btn {
    width: 479px;
    height: 70px;
  }
}


