:root {
  --transition: all 0.3s ease;
}

#price-container {
  max-width: 800px;
  margin: 20px auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
  padding: 0 15px;
  color: var(--text-color);
  transition: var(--transition);
}

/* Accordion Styling */
.price-accordion {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.price-accordion[open] {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

summary {
  padding: 18px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  color: var(--primary-color);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "\002B"; /* Plus sign */
  font-size: 20px;
  color: var(--text-color);
}

.price-accordion[open] summary::after {
  content: "\2212"; /* Minus sign */
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th {
  text-align: left;
  padding: 12px 18px;
  background: #fcfcfc;
  font-size: 12px;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 1px;
}

td {
  padding: 15px 18px;
  border-top: 1px solid #f0f0f0;
  vertical-align: top;
}

.price-cell {
  white-space: nowrap;
  font-weight: 600;
  text-align: right;
  color: var(--primary-color);
}

@media (max-width: 480px) {
  th {
    display: none;
  }

  td {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 10px 18px;
  }

  .price-cell {
    text-align: left;
    padding-top: 0;
    padding-bottom: 15px;
    color: #e67e22;
  }

  td strong {
    display: block;
    margin-bottom: 4px;
  }
}
