@import url("https://fonts.googleapis.com/css2?family=Gluten:wght@100..900&display=swap");
:root {
  --bg:     #0a0a0a;
  --card:   #161616;
  --card2:  #1c1c1c;
  --border: #2a2a2a;
  --orange: #f5701e;
  --yellow: #ffb300;
  --cream:  #f0e8d8;
  --muted:  #666;
  --green:  #4caf50;
  --red:    #e53935;
  --radius: 14px;
  --font:   Gluten, cursive; }

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

html {
  scroll-behavior: smooth; }

body {
  background: #0a0a0a;
  color: #f0e8d8;
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-variation-settings: "slnt" 0;
  font-weight: 500;
  min-height: 100vh;
  overflow-x: hidden; }
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 179, 0, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0; }

@keyframes wobble {
  0%, 100% {
    transform: rotate(-4deg) scale(1); }
  50% {
    transform: rotate(4deg) scale(1.06); } }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes shake {
  0%, 100% {
    transform: translateX(0); }
  25% {
    transform: translateX(-6px); }
  75% {
    transform: translateX(6px); } }

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0; }
  to {
    opacity: 1;
    max-height: 2000px; } }

.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px 60px;
  position: relative;
  z-index: 1; }

.calc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px; }
  @media (min-width: 800px) {
    .calc-grid {
      grid-template-columns: 1fr 1fr;
      align-items: stretch; } }
.col-left, .col-right {
  display: flex;
  flex-direction: column;
  gap: 10px; }

@media (min-width: 800px) {
  .span-full {
    grid-column: 1 / -1; } }

header {
  background: #161616;
  border: 1.5px solid #2a2a2a;
  border-radius: 14px;
  transition: border-color 0.2s;
  padding: 16px 18px;
  margin-bottom: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.4s ease 0s both; }
  header:hover {
    border-color: #333; }
  header .header-inner {
    display: flex;
    align-items: center;
    gap: 14px; }
  header .logo-img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.7));
    animation: wobble 4s ease-in-out infinite; }
    @media (min-width: 800px) {
      header .logo-img {
        width: 72px;
        height: 72px; } }
  header .header-text {
    flex: 1;
    min-width: 0; }
    header .header-text h1 {
      font-family: "Gluten", cursive;
      font-optical-sizing: auto;
      font-weight: 800;
      font-style: normal;
      font-variation-settings: "slnt" 0;
      font-size: clamp(1.7rem, 7vw, 2.6rem);
      line-height: 1.05;
      color: #f5701e;
      text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5); }
      header .header-text h1 .dash {
        color: #ffb300; }
    header .header-text .tagline {
      font-size: clamp(0.6rem, 2vw, 0.72rem);
      color: #666;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 4px; }

.card {
  background: #161616;
  border: 1.5px solid #2a2a2a;
  border-radius: 14px;
  transition: border-color 0.2s;
  padding: 17px 16px;
  display: flex;
  flex-direction: column; }
  .card:hover {
    border-color: #333; }
  .card:nth-child(1) {
    animation: fadeUp 0.4s ease 0.06s both; }
  .card:nth-child(2) {
    animation: fadeUp 0.4s ease 0.12s both; }
  .card:nth-child(3) {
    animation: fadeUp 0.4s ease 0.18s both; }
  .card:nth-child(4) {
    animation: fadeUp 0.4s ease 0.24s both; }
  .card:nth-child(5) {
    animation: fadeUp 0.4s ease 0.3s both; }
  .card:nth-child(6) {
    animation: fadeUp 0.4s ease 0.36s both; }

.card-title {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  font-size: .68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffb300;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px; }
  .card-title::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 2.5px;
    background: #f5701e;
    border-radius: 2px; }

.card-fee {
  margin-top: auto;
  padding-top: 10px;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid transparent; }
  .card-fee.fee-ok {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.07);
    border-color: rgba(76, 175, 80, 0.2); }
  .card-fee.fee-warn {
    color: #ff8a80;
    background: rgba(229, 57, 53, 0.07);
    border-color: rgba(229, 57, 53, 0.2); }
  .card-fee.fee-info {
    color: #ffb300;
    background: rgba(255, 179, 0, 0.07);
    border-color: rgba(255, 179, 0, 0.2); }

.amount-row {
  display: flex;
  align-items: flex-end;
  gap: 11px;
  margin-bottom: 14px; }

.amount-big {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  font-size: clamp(2.4rem, 12vw, 3.6rem);
  color: #f5701e;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
  transition: all .1s;
  flex: 1; }

.currency-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px; }

.cur-btn {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  background: #1c1c1c;
  border: 1.5px solid #2a2a2a;
  color: #666;
  padding: 5px 13px;
  border-radius: 20px;
  font-size: .78rem;
  cursor: pointer;
  transition: all .15s;
  letter-spacing: 1px; }
  .cur-btn.active {
    background: #f5701e;
    border-color: #f5701e;
    color: #000; }

.slider-wrap {
  position: relative;
  padding: 4px 0; }

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  background: #2a2a2a;
  border-radius: 3px;
  outline: none;
  cursor: pointer; }
  input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    /* prettier-ignore */
    background: linear-gradient(to right, #f5701e 0%, #f5701e var(--pct, 0%), #2a2a2a var(--pct, 0%), #2a2a2a 100%);
    border-radius: 3px; }
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: #ffb300;
    border-radius: 50%;
    border: 3px solid #000;
    margin-top: -10px;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    transition: transform .1s; }
  input[type=range]:active::-webkit-slider-thumb {
    transform: scale(1.2); }
  input[type=range]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: #ffb300;
    border-radius: 50%;
    border: 3px solid #000; }

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: .6rem;
  color: #666;
  font-weight: 600; }

.meta-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px; }

.meta-num {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  font-size: clamp(1.8rem, 8vw, 2.5rem);
  color: #f5701e;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
  transition: all .1s;
  white-space: nowrap; }

.meta-spacer {
  flex: 1; }

.meta-info {
  font-size: .76rem;
  color: #666;
  font-weight: 600;
  line-height: 1.85;
  text-align: right; }
  .meta-info .hi {
    color: #ffb300; }
  .meta-info .ok {
    color: #4caf50; }
  .meta-info .warn {
    color: #e53935; }

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px; }

.delivery-opt {
  background: #1c1c1c;
  border: 1.5px solid #2a2a2a;
  border-radius: 10px;
  padding: 11px 9px;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: clamp(0.7rem, 2.5vw, 0.82rem);
  font-weight: 700;
  color: #f0e8d8;
  user-select: none; }
  .delivery-opt img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    flex-shrink: 0; }
  .delivery-opt:hover {
    border-color: #f5701e; }
  .delivery-opt.selected {
    border-color: #f5701e;
    background: rgba(245, 112, 30, 0.1);
    color: #ffb300; }
  .delivery-opt.wide {
    grid-column: span 2; }
  .delivery-opt.disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none; }

.mc-info {
  display: none;
  margin-top: 9px;
  background: rgba(255, 179, 0, 0.07);
  border: 1.5px solid rgba(255, 179, 0, 0.3);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: .72rem;
  font-weight: 600;
  color: #ffb300;
  line-height: 1.7; }
  .mc-info.show {
    display: block; }
  .mc-info .mc-loading {
    color: #666;
    font-style: italic; }

.summary-strip {
  background: #161616;
  border: 1.5px solid #2a2a2a;
  border-radius: 14px;
  transition: border-color 0.2s;
  border-color: rgba(245, 112, 30, 0.35);
  padding: 14px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  animation: fadeUp 0.4s ease 0.3s both; }
  .summary-strip:hover {
    border-color: #333; }

.sum-item {
  text-align: center; }

.sum-val {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  font-size: clamp(0.88rem, 3.5vw, 1.1rem);
  color: #ffb300;
  transition: all .1s;
  line-height: 1.2; }

.sum-lbl {
  font-size: .57rem;
  color: #666;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600; }

.notice {
  border-left: 3px solid #f5701e;
  padding: 10px 13px;
  font-size: .7rem;
  color: #666;
  font-weight: 600;
  line-height: 1.9;
  background: rgba(245, 112, 30, 0.04);
  border-radius: 0 8px 8px 0; }
  .notice .notice-row {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 2px; }
    .notice .notice-row:last-child {
      margin-bottom: 0; }
  .notice .n-dot {
    flex-shrink: 0; }
  .notice .n-green {
    color: #4caf50; }
  .notice .n-red {
    color: #e53935; }
  .notice strong {
    color: #f5701e; }

.btn-summary {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  width: 100%;
  background: #f5701e;
  color: #fff;
  border: 2.5px solid #000;
  border-radius: 14px;
  padding: 17px;
  font-size: clamp(0.95rem, 4vw, 1.2rem);
  letter-spacing: 2px;
  cursor: pointer;
  box-shadow: 3px 3px 0 #000;
  transition: all .15s;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3); }
  .btn-summary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #000; }
  .btn-summary:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #000; }

.summary-section {
  display: none;
  margin-top: 20px;
  animation: fadeUp .4s ease both; }
  .summary-section.visible {
    display: block; }

.summary-section-inner {
  background: #161616;
  border: 1.5px solid #2a2a2a;
  border-radius: 14px;
  transition: border-color 0.2s;
  border-color: rgba(245, 112, 30, 0.45);
  padding: 22px 18px 28px;
  max-width: 1100px; }
  .summary-section-inner:hover {
    border-color: #333; }
  @media (min-width: 800px) {
    .summary-section-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 32px;
      align-items: start; }
      .summary-section-inner .sum-left {
        grid-column: 1; }
      .summary-section-inner .sum-right {
        grid-column: 2; }
      .summary-section-inner .sum-full {
        grid-column: 1 / -1; } }
.summary-header {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2a2a2a; }
  @media (min-width: 800px) {
    .summary-header {
      grid-column: 1 / -1; } }
  .summary-header h2 {
    font-family: "Gluten", cursive;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    color: #f5701e;
    text-shadow: 1px 1px 0 #000; }
  .summary-header p {
    font-size: .68rem;
    color: #666;
    font-weight: 600;
    margin-top: 3px; }

.name-wrap {
  margin-bottom: 16px; }
  .name-wrap label {
    display: block;
    font-family: "Gluten", cursive;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    font-size: .68rem;
    letter-spacing: 2.5px;
    color: #ffb300;
    text-transform: uppercase;
    margin-bottom: 6px; }

.name-input {
  width: 100%;
  background: #1c1c1c;
  border: 1.5px solid #2a2a2a;
  border-radius: 9px;
  padding: 11px 12px;
  font-family: "Gluten", cursive;
  font-size: .95rem;
  font-weight: 600;
  color: #f0e8d8;
  outline: none;
  transition: border-color .2s; }
  .name-input:focus {
    border-color: #f5701e; }
  .name-input.error {
    border-color: #e53935;
    animation: shake .3s ease; }

.name-error {
  color: #e53935;
  font-size: .68rem;
  font-weight: 600;
  margin-top: 4px;
  display: none; }
  .name-error.show {
    display: block; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: clamp(0.7rem, 2.2vw, 0.82rem); }
  .info-table tr {
    border-bottom: 1px solid #2a2a2a; }
  .info-table tr:last-child {
    border-bottom: none; }
  .info-table td {
    padding: 8px 3px;
    vertical-align: middle; }
    .info-table td:first-child {
      color: #666;
      font-weight: 600;
      width: 52%; }
    .info-table td:last-child {
      font-weight: 700;
      color: #ffb300;
      text-align: right;
      white-space: nowrap; }
  .info-table .red {
    color: #e53935 !important; }
  .info-table .green {
    color: #4caf50 !important; }
  .info-table .date-inline {
    color: #ffb300;
    font-weight: 700; }
    .info-table .date-inline .date-sub {
      color: #666;
      font-size: .65rem;
      font-weight: 600;
      margin-left: 5px; }

.section-title {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  font-size: .65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffb300;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px; }
  .section-title::before {
    content: '';
    width: 13px;
    height: 2.5px;
    background: #f5701e;
    border-radius: 2px; }

.collapsible-btn {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  width: 100%;
  background: #1c1c1c;
  border: 1.5px solid #2a2a2a;
  border-radius: 9px;
  padding: 10px 13px;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #666;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all .2s;
  margin-bottom: 0; }
  .collapsible-btn:hover {
    border-color: #f5701e;
    color: #ffb300; }
  .collapsible-btn.open {
    border-color: #f5701e;
    color: #ffb300;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
  .collapsible-btn .arrow {
    transition: transform .25s; }
  .collapsible-btn.open .arrow {
    transform: rotate(180deg); }

.collapsible-body {
  display: none;
  border: 1.5px solid #f5701e;
  border-top: none;
  border-radius: 0 0 9px 9px;
  margin-bottom: 12px;
  overflow: hidden; }
  .collapsible-body.open {
    display: block; }

.schedule-list {
  max-height: 300px;
  overflow-y: auto; }
  .schedule-list::-webkit-scrollbar {
    width: 5px; }
  .schedule-list::-webkit-scrollbar-track {
    background: #0a0a0a; }
  .schedule-list::-webkit-scrollbar-thumb {
    background: #f5701e;
    border-radius: 3px; }

.sched-row {
  display: flex;
  align-items: center;
  padding: 8px 13px;
  font-size: clamp(0.68rem, 2vw, 0.78rem);
  font-weight: 600;
  border-bottom: 1px solid #2a2a2a;
  gap: 8px; }
  .sched-row:last-child {
    border-bottom: none; }
  .sched-row:hover {
    background: rgba(245, 112, 30, 0.05); }
  .sched-row .rn {
    color: #666;
    min-width: 22px;
    flex-shrink: 0; }
  .sched-row .dt {
    color: #f0e8d8;
    flex: 1;
    white-space: nowrap; }
  .sched-row .dt .d-sub {
    color: #666;
    font-size: .62rem;
    margin-left: 5px; }
  .sched-row .amt {
    color: #ffb300;
    text-align: right;
    min-width: 80px;
    flex-shrink: 0; }
  .sched-row .int {
    color: #f5701e;
    font-size: .6rem;
    display: block; }

.penalty-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(0.63rem, 2vw, 0.7rem);
  font-weight: 600; }
  .penalty-table th {
    background: rgba(229, 57, 53, 0.08);
    color: #e53935;
    padding: 7px 10px;
    text-align: left;
    font-size: .58rem;
    letter-spacing: 1.5px;
    text-transform: uppercase; }
  .penalty-table td {
    padding: 6px 10px;
    border-bottom: 1px solid rgba(229, 57, 53, 0.1); }
    .penalty-table td:first-child {
      color: #666; }
    .penalty-table td:last-child {
      color: #ff8a80;
      text-align: right; }
  .penalty-table tr:last-child td {
    border-bottom: none; }
  .penalty-table tr:hover td {
    background: rgba(229, 57, 53, 0.04); }

.warning-box {
  background: rgba(229, 57, 53, 0.07);
  border: 1.5px solid rgba(229, 57, 53, 0.22);
  border-radius: 9px;
  padding: 10px 13px;
  font-size: .68rem;
  color: #ff8a80;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 4px; }
  .warning-box strong {
    color: #e53935; }

.warning-link {
  color: #f5701e;
  cursor: pointer;
  text-decoration: underline;
  font-size: .68rem; }
  .warning-link:hover {
    color: #ffb300; }

.overdue-box {
  background: rgba(229, 57, 53, 0.06);
  border: 1.5px solid rgba(229, 57, 53, 0.2);
  border-radius: 9px;
  padding: 10px 12px;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.9;
  color: #f0e8d8;
  margin-bottom: 12px; }

.modal-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px; }

.btn-take {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  width: 100%;
  background: #4caf50;
  border: 2.5px solid #000;
  color: #fff;
  border-radius: 11px;
  padding: 16px;
  font-size: clamp(1rem, 4vw, 1.1rem);
  cursor: pointer;
  transition: all .15s;
  box-shadow: 3px 3px 0 #000;
  letter-spacing: 1px; }
  .btn-take:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 #000; }
  .btn-take:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 #000; }

.btn-cancel {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  width: 100%;
  background: transparent;
  border: 1.5px solid #2a2a2a;
  color: #666;
  border-radius: 11px;
  padding: 13px;
  font-size: .95rem;
  cursor: pointer;
  transition: all .15s;
  letter-spacing: 1px; }
  .btn-cancel:hover {
    border-color: #e53935;
    color: #e53935; }

.overlay-center {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(6px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s; }
  .overlay-center.show {
    opacity: 1;
    pointer-events: all; }

.modal-confirm, .modal-success {
  background: #161616;
  border-radius: 20px;
  width: 100%;
  max-width: 380px;
  padding: 26px 22px;
  transform: scale(0.88);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); }
  .overlay-center.show .modal-confirm, .overlay-center.show .modal-success {
    transform: scale(1); }

.modal-confirm {
  border: 2px solid #ffb300; }

.modal-success {
  border: 2px solid #4caf50; }

.confirm-head, .success-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px; }
  .confirm-head .c-icon, .confirm-head .s-icon, .success-head .c-icon, .success-head .s-icon {
    font-size: 2.8rem;
    line-height: 1;
    flex-shrink: 0; }
  .confirm-head h2, .success-head h2 {
    font-family: "Gluten", cursive;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    line-height: 1;
    text-shadow: 1px 1px 0 #000;
    flex: 1; }

.confirm-head h2 {
  color: #ffb300; }

.success-head h2 {
  color: #4caf50; }

.confirm-text, .success-text {
  font-size: clamp(0.9rem, 3vw, 1rem);
  font-weight: 600;
  line-height: 1.75;
  border-radius: 9px;
  padding: 12px 14px;
  margin-bottom: 20px; }

.confirm-text {
  color: #f0e8d8;
  background: rgba(255, 179, 0, 0.06);
  border: 1px solid rgba(255, 179, 0, 0.15); }

.success-text {
  color: #f0e8d8;
  background: rgba(76, 175, 80, 0.06);
  border: 1px solid rgba(76, 175, 80, 0.15);
  margin-bottom: 0; }

.confirm-btns {
  display: flex;
  flex-direction: column;
  gap: 8px; }

.btn-yes {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  width: 100%;
  background: #f5701e;
  border: 2.5px solid #000;
  color: #fff;
  border-radius: 10px;
  padding: 15px;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all .15s;
  box-shadow: 2px 2px 0 #000;
  letter-spacing: 1px; }
  .btn-yes:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 #000; }

.btn-no {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  width: 100%;
  background: transparent;
  border: 1.5px solid #2a2a2a;
  color: #666;
  border-radius: 10px;
  padding: 12px;
  font-size: .9rem;
  cursor: pointer;
  transition: all .15s; }
  .btn-no:hover {
    border-color: #e53935;
    color: #e53935; }

.btn-ok {
  font-family: "Gluten", cursive;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "slnt" 0;
  margin-top: 16px;
  width: 100%;
  background: #4caf50;
  border: 2.5px solid #000;
  color: #fff;
  border-radius: 10px;
  padding: 14px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 2px 2px 0 #000;
  transition: all .15s; }
  .btn-ok:hover {
    transform: translate(-1px, -1px); }

::-webkit-scrollbar {
  width: 6px; }

::-webkit-scrollbar-track {
  background: #0a0a0a; }

::-webkit-scrollbar-thumb {
  background: #f5701e;
  border-radius: 3px; }

.notice-card .notice-rows {
  display: flex;
  flex-direction: column;
  gap: 4px; }

.notice-card .notice-row {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.6; }
  .notice-card .notice-row .n-dot {
    flex-shrink: 0; }
  .notice-card .notice-row .n-green {
    color: #4caf50; }
  .notice-card .notice-row .n-red {
    color: #e53935; }
  .notice-card .notice-row .n-orange {
    color: #f5701e; }
  .notice-card .notice-row .n-amt {
    color: #666;
    font-size: .65rem; }

.card-fee {
  margin-top: 10px;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid transparent; }
  .card-fee.fee-ok {
    color: #4caf50;
    background: rgba(76, 175, 80, 0.07);
    border-color: rgba(76, 175, 80, 0.2); }
  .card-fee.fee-warn {
    color: #ff8a80;
    background: rgba(229, 57, 53, 0.07);
    border-color: rgba(229, 57, 53, 0.2); }
  .card-fee.fee-discount {
    color: #ffb300;
    background: rgba(255, 179, 0, 0.08);
    border-color: rgba(255, 179, 0, 0.25);
    font-weight: 700; }

.penalty-section .penalty-header {
  background: rgba(229, 57, 53, 0.07);
  border: 1.5px solid rgba(229, 57, 53, 0.22);
  border-radius: 9px 9px 0 0;
  padding: 10px 13px 6px;
  border-bottom: none; }

.penalty-section .penalty-title {
  font-size: .75rem;
  font-weight: 800;
  color: #ff8a80;
  margin-bottom: 3px; }

.penalty-section .penalty-desc {
  font-size: .65rem;
  color: #666;
  font-weight: 600;
  line-height: 1.5; }

.btn-penalty-toggle {
  width: 100%;
  background: rgba(229, 57, 53, 0.05);
  border: 1.5px solid rgba(229, 57, 53, 0.22);
  border-top: none;
  border-radius: 0 0 9px 9px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Gluten', cursive;
  font-size: .72rem;
  font-weight: 700;
  color: #f5701e;
  letter-spacing: .5px; }
  .btn-penalty-toggle:hover {
    background: rgba(229, 57, 53, 0.1); }
  .btn-penalty-toggle.open {
    border-radius: 0;
    border-bottom-color: transparent; }
    .btn-penalty-toggle.open + .collapsible-body {
      border-color: rgba(229, 57, 53, 0.22); }
  .btn-penalty-toggle .pt-icon {
    font-size: 1rem; }
  .btn-penalty-toggle .pt-text {
    flex: 1;
    text-align: left; }
  .btn-penalty-toggle .arrow {
    transition: transform .25s;
    font-style: normal; }
  .btn-penalty-toggle.open .arrow {
    transform: rotate(180deg); }

.summary-section {
  display: none; }
  .summary-section.visible {
    display: block; }
