.prices {
max-width: 920px;
margin: 0 auto;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
line-height: 1.45;
color: #1f2937;
}
.prices .hint { font-size: 12px; color:#6b7280; margin: 6px 0 18px; }
.prices details {
border: 1px solid #e5e7eb;
border-radius: 12px;
background: #fff;
margin: 10px 0 14px;
overflow: hidden;
transition: box-shadow .25s ease;
}
.prices details[open] { box-shadow: 0 6px 18px rgba(0,0,0,.06); }
.prices summary {
display: flex;
align-items: center;
gap: 10px;
list-style: none;
cursor: pointer;
padding: 14px 16px;
background: #f3f4f6;
font-weight: 600;
position: relative;
user-select: none;
}
.prices summary::-webkit-details-marker { display: none; }
.prices summary .chev {
margin-left: auto;
transition: transform .25s ease;
}
.prices details[open] summary .chev { transform: rotate(180deg); }
.prices .panel {
padding: 8px 14px 16px;
background: #fff;
} .price-table {
width: 100%;
border-collapse: collapse;
font-size: 15px;
}
.price-table th, .price-table td {
padding: 10px 8px;
vertical-align: top;
}
.price-table th {
text-align: left;
font-weight: 600;
color: #374151;
background: #fafafa;
}
.price-table td.price {
width: 180px; white-space: nowrap;
text-align: right;
font-variant-numeric: tabular-nums;
color: #111827;
font-weight: 600;
}
.subttl {
margin: 16px 0 8px;
font-weight: 700;
color:#374151;
font-size: 14px;
text-transform: uppercase;
letter-spacing: .02em;
}
.note {
font-size: 12px;
color:#6b7280;
margin-top: 8px;
} @media (max-width: 560px) {
.price-table td, .price-table th { padding: 10px 6px; }
.price-table tr {
display: grid;
grid-template-columns: 1fr auto;
row-gap: 4px;
}
.price-table td.price { grid-column: 2; }
.price-table th { display:none; }
}