/* CSS variables */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");
:root {
  --bs-font-family: "DMSans", sans-serif;
  --bs-font-size: 16px;
  --bs-font-weight: 400;
  --bs-line-height: 1;
  --bs-font-color: #222;
  --bs-transition: 0.3s ease-in-out;
  --bs-radius: 10px;
}

/* Fonts */
@font-face {
  font-family: "DMSans";
  src: local("DMSans-Medium"), url("../fonts/DMSans-Medium.woff2") format("woff2"), url("../fonts/DMSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* CSS reset */
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus, *:active {
  outline: none;
}

html {
  opacity: 0;
  scroll-behavior: smooth;
  transition: opacity 0.8s ease-in-out;
}
html.loaded {
  opacity: 1;
}
html.lock {
  overflow: hidden;
  touch-action: none;
}

html,
body {
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
}

body {
  overscroll-behavior: none;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  text-rendering: optimizelegibility;
  background-color: #fff;
  height: 100%;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  color: var(--bs-font-color);
  font-size: var(--bs-font-size);
  font-family: var(--bs-font-family);
  font-weight: var(--bs-font-weight);
  line-height: var(--bs-line-height);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: inline-block;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
}

input,
textarea {
  width: 100%;
  margin: 0;
  padding: 0;
  outline: none;
  background-clip: padding-box;
  font-family: inherit;
  border: none;
  font: inherit;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  font: inherit;
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
}
input::placeholder,
textarea::placeholder {
  font: inherit;
  transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
}
input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  opacity: 0;
}
input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0;
}

input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none;
  cursor: pointer;
  border: none;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0 30px #fff inset !important;
}

input::-ms-clear {
  display: none;
}

button {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: manipulation;
  border: 0;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer;
  color: inherit;
  border-width: 0;
  -webkit-appearance: button;
  font: inherit;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  display: inline-flex;
  text-decoration: none;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
  color: inherit;
}
a:focus, a:active,
a:visited:focus,
a:visited:active {
  outline: none;
}
a:hover,
a:visited:hover {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

i {
  display: inline-flex;
}

/* Main wrapper */
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Main block */
.main {
  flex: 1 1 auto;
}

/* Main container */
.container {
  margin: 0 auto;
  max-width: 1330px;
  padding: 0 15px;
}

/* Footer */
.footer {
  background-color: #1f1b16;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  color: #a8a29e;
  font-size: 14px;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.footer__contact {
  margin: 0;
  color: #78716c;
  line-height: 1.5;
}
.footer__contact a {
  color: #d97706;
  text-decoration: none;
}
.footer__contact a:hover {
  color: #b45309;
}
.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  width: 100%;
  font-size: 12px;
  margin-top: 10px;
}
.footer__dev-link {
  font-size: 10px;
  transition: color 0.3s;
}
.footer__dev-link a {
  padding: 5px;
}
.footer__dev-link:hover {
  color: #fff;
}

/* Pre-Order Form styles */
.is-hidden {
  display: none !important;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #f5f2eb;
  color: #1f1b16;
  min-height: 100vh;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

#preOrderForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#specialRequests {
  resize: none;
}

/* Event Hero Header */
.event-hero {
  position: relative;
  background: linear-gradient(135deg, #2c2720 0%, #1f1b16 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 5px solid #d97706;
  overflow: hidden;
}
.event-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 50%), radial-gradient(circle at 10% 80%, rgba(45, 106, 79, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.event-hero__badge {
  display: inline-block;
  background: rgba(217, 119, 6, 0.2);
  border: 1px solid #d97706;
  color: #fef3c7;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
  animation: pulse-glow 2s infinite alternate;
}
.event-hero__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 20px);
  margin-bottom: 15px;
}
.event-hero .bigbang-logo {
  height: clamp(42px, 8vw, 58px);
  width: auto;
  flex-shrink: 0;
  color: #ffffff;
}
.event-hero__title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.5px;
}
.event-hero__title span {
  color: #d97706;
  position: relative;
  display: inline-block;
}
.event-hero__subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: #d6d3d1;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.5;
}
.event-hero__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
  color: #a8a29e;
}
.event-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.event-hero__meta-item svg {
  color: #d97706;
  width: 16px;
  height: 16px;
}

/* Event Stats & Details Card */
.event-details {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  /* Countdown Clock */
}
.event-details__card {
  background: #fcfcfc;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.08);
  border: 1px solid #e6dfd3;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
.event-details__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.event-details__location-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f1b16;
  margin-bottom: 6px;
}
.event-details__location-text {
  color: #1f1b16;
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
}
.event-details__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #2d6a4f;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.event-details__map-link:link, .event-details__map-link:visited {
  color: #2d6a4f;
}
.event-details__map-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.event-details__map-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background-color: #265a43;
  transform: scaleX(0);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .event-details__map-link:hover {
    color: #265a43;
  }
  .event-details__map-link:hover svg {
    transform: translate(2px, -1px);
  }
  .event-details__map-link:hover::after {
    transform: scaleX(1);
  }
}
.event-details__map-link:focus-visible {
  color: #265a43;
  outline: 2px solid rgba(45, 106, 79, 0.35);
  outline-offset: 3px;
  border-radius: 2px;
}
.event-details__map-link:focus-visible::after {
  transform: scaleX(1);
}
.event-details__logos {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.event-details__logo-link {
  display: flex;
  align-items: center;
}
.event-details__logo-barrag {
  height: 36px;
  width: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.event-details__logo-simply {
  height: 31px;
  width: auto;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.event-details__countdown {
  background: #2c2720;
  border-radius: 16px;
  padding: 20px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(217, 119, 6, 0.3);
  position: relative;
}
.event-details__countdown--expired {
  background: #fee2e2;
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.3);
}
.event-details__countdown-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #a8a29e;
  margin-bottom: 12px;
  font-weight: 600;
}
.event-details__countdown--expired .event-details__countdown-title {
  color: #dc2626;
}
.event-details__countdown-timer {
  display: flex;
  gap: 10px;
}
.event-details__time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}
.event-details__time-value {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #d97706;
  line-height: 1.1;
}
.event-details__time-label {
  font-size: 10px;
  text-transform: uppercase;
  color: #78716c;
  margin-top: 4px;
}
.event-details__countdown-message {
  font-size: 15px;
  font-weight: 700;
}

/* Alert Banner */
.alert-banner {
  background-color: #f5f2eb;
  border-left: 4px solid #d97706;
  border-right: 4px solid #d97706;
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 25px;
}
.alert-banner__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.alert-banner__text {
  font-size: 14px;
  color: #44403c;
  line-height: 1.5;
  margin: 0;
}
.alert-banner__emphasis {
  font-weight: 700;
}

/* Main Form Section Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 30px;
  margin-top: 25px;
  margin-bottom: clamp(60px, 4vw, 100px);
  align-items: start;
}

.form-main > form > .form-section:first-child {
  margin-top: 25px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 35px 25px 35px;
  border: 1px solid #e6dfd3;
  box-shadow: 0 4px 20px rgba(31, 27, 22, 0.02);
}
.form-section__intro {
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 13px;
  color: #d97706;
  font-weight: 600;
}
.form-section__title {
  font-size: 22px;
  font-weight: 700;
  color: #1f1b16;
  margin-bottom: 5px;
  border-bottom: 2px solid #f5f2eb;
  padding-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section__step {
  background: #d97706;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* Customer Info Fields */
.input-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.input-container--flush {
  margin-bottom: 0;
}
.input-container--pickup > label {
  margin-bottom: 12px;
}
.input-container--error .pickup-days .day-chip__content {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}
.input-container--error > label {
  color: #dc2626;
}
.input-container label {
  font-size: 14px;
  font-weight: 600;
  color: #2c2720;
}
.input-container input,
.input-container textarea {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e6dfd3;
  background-color: #fbfaf7;
  color: #1f1b16;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  transition: all 0.2s;
}
.input-container input:focus,
.input-container textarea:focus {
  outline: none;
  border-color: #d97706;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.1);
}
.input-container input::-moz-placeholder, .input-container textarea::-moz-placeholder {
  color: #a8a29e;
}
.input-container input::placeholder,
.input-container textarea::placeholder {
  color: #a8a29e;
}
.input-container input:required:focus:invalid,
.input-container textarea:required:focus:invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}
.input-container textarea {
  resize: vertical;
  min-height: 100px;
}

.form-field__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Pickup Day Chips */
.pickup-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}
.pickup-days__note {
  font-size: 13px;
  color: #d97706;
  font-weight: 600;
  margin: 5px 0 0;
}

.day-chip {
  cursor: pointer;
  position: relative;
  text-align: center;
}
.day-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.day-chip__content {
  border: 1px solid #e6dfd3;
  background: #fbfaf7;
  border-radius: 12px;
  padding: 12px 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.25s;
}
.day-chip__name {
  font-size: 13px;
  font-weight: 700;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.day-chip__date {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1f1b16;
}
.day-chip:hover .day-chip__content {
  border-color: #d97706;
  background-color: rgba(217, 119, 6, 0.02);
}
.day-chip input:checked + .day-chip__content {
  border-color: #d97706;
  background-color: #fef3c7;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
}
.day-chip input:checked + .day-chip__content .day-chip__name {
  color: #b45309;
}
.day-chip input:checked + .day-chip__content .day-chip__date {
  color: #1f1b16;
}

/* Product Pre-Orders Styles */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.products-list--readonly .product-item__quantity,
.products-list--readonly .product-item__subtotal {
  display: none;
}

.product-item {
  background: #fbfaf7;
  border: 1px solid #e6dfd3;
  border-radius: 16px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(72px, auto) 120px minmax(72px, auto);
  grid-template-areas: "info price quantity subtotal";
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  /* Quantity Control */
}
.product-item:hover {
  border-color: #e6dfd3;
  box-shadow: 0 4px 15px rgba(31, 27, 22, 0.03);
}
.product-item--has-qty {
  border-color: rgba(45, 106, 79, 0.4);
  background-color: rgba(216, 243, 220, 0.15);
}
.product-item__info {
  grid-area: info;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.product-item__img {
  width: 72px;
  height: 72px;
  border: none;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f5f2eb;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.product-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.product-item__img:hover {
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.5);
}
.product-item__img:hover img {
  transform: scale(1.08);
}
.product-item__details {
  flex: 1;
  min-width: 0;
}
.product-item__name {
  font-size: 17px;
  font-weight: 700;
  color: #1f1b16;
  margin-bottom: 4px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.product-item__meta {
  font-size: 13px;
  color: #78716c;
  display: flex;
  gap: 12px;
}
.product-item__size {
  background: rgba(31, 27, 22, 0.05);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 500;
}
.product-item__price {
  grid-area: price;
  min-width: 0;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #2c2720;
  text-align: center;
  white-space: nowrap;
}
.product-item__qty-btn {
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 18px;
  cursor: pointer;
  color: #1f1b16;
  transition: background-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-item__qty-btn:hover {
  background-color: #f5f2eb;
  color: #d97706;
}
.product-item__qty-btn:active {
  background-color: #e6dfd3;
}
.product-item__quantity {
  grid-area: quantity;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e6dfd3;
  border-radius: 8px;
  overflow: hidden;
  width: 120px;
  max-width: 100%;
  justify-self: center;
}
.product-item__quantity input {
  width: 48px;
  height: 36px;
  border: none;
  border-left: 1px solid #e6dfd3;
  border-right: 1px solid #e6dfd3;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1f1b16;
  outline: none;
  background: transparent;
}
.product-item__quantity input::-webkit-outer-spin-button, .product-item__quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-item__quantity input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
  appearance: textfield;
}
.product-item__subtotal {
  grid-area: subtotal;
  min-width: 0;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #1f1b16;
  text-align: center;
  white-space: nowrap;
}
.product-item__subtotal--active {
  color: #2d6a4f;
}

/* Product Image Preview */
.product-preview {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  max-width: min(90vw, 800px);
  max-height: 90vh;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid #e6dfd3;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay--show .product-preview {
  transform: scale(1);
}
.product-preview__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(31, 27, 22, 0.08);
  color: #1f1b16;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  z-index: 1;
}
.product-preview__close svg {
  width: 20px;
  height: 20px;
}
.product-preview__close:hover {
  background: rgba(31, 27, 22, 0.15);
}
.product-preview__image {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 100px);
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 8px;
}
.product-preview__caption {
  margin: 14px 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #2c2720;
}

/* Payment Section Styling */
.payment-selector {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.payment-option {
  cursor: pointer;
  position: relative;
}
.payment-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.payment-option__content {
  border: 1px solid #e6dfd3;
  background: #fbfaf7;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.2s;
}
.payment-option__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e6dfd3;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
}
.payment-option__radio::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d97706;
  transition: transform 0.2s;
}
.payment-option__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.payment-option__title {
  font-size: 15px;
  font-weight: 700;
  color: #1f1b16;
}
.payment-option__desc {
  font-size: 13px;
  color: #78716c;
}
.payment-option:hover .payment-option__content {
  border-color: #d97706;
}
.payment-option input:checked + .payment-option__content {
  border-color: #d97706;
  background-color: rgba(217, 119, 6, 0.02);
}
.payment-option input:checked + .payment-option__content .payment-option__radio {
  border-color: #d97706;
}
.payment-option input:checked + .payment-option__content .payment-option__radio::after {
  transform: translate(-50%, -50%) scale(1);
}

/* E-transfer Details Drawer */
.etransfer-details {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s cubic-bezier(0.4, 0, 1, 1), margin-top 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
.etransfer-details.etransfer-details--show {
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 0.45s cubic-bezier(0, 0, 0.2, 1), opacity 0.35s ease 0.06s, margin-top 0.45s cubic-bezier(0, 0, 0.2, 1);
}
.etransfer-details.etransfer-details--show .etransfer-details__panel {
  padding: 20px;
  border-color: #e6dfd3;
  transform: translateY(0);
  transition: padding 0.45s cubic-bezier(0, 0, 0.2, 1), border-color 0.35s ease 0.04s, transform 0.45s cubic-bezier(0, 0, 0.2, 1);
}
.etransfer-details__panel {
  overflow: hidden;
  min-height: 0;
  background-color: #f5f2eb;
  border-radius: 12px;
  border: 1px solid transparent;
  padding: 0 20px;
  transform: translateY(-6px);
  transition: padding 0.42s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s ease, transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .etransfer-details {
    transition: none;
  }
  .etransfer-details.etransfer-details--show {
    transition: none;
  }
  .etransfer-details__panel {
    transition: none;
  }
}
.etransfer-details__heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #b45309;
  margin-bottom: 15px;
}
.etransfer-details__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.etransfer-details__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}
.etransfer-details__label {
  font-weight: 600;
  color: #78716c;
}
.etransfer-details__value-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.etransfer-details__value-wrap code {
  font-family: monospace;
  background: #ffffff;
  border: 1px solid #e6dfd3;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: clamp(12px, 1.2vw, 14px);
  color: #1f1b16;
  font-weight: 700;
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
}
.etransfer-details__copy-btn {
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #e6dfd3;
  color: #1f1b16;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.etransfer-details__copy-btn:hover {
  border-color: #d97706;
  background: #fef3c7;
  color: #b45309;
}
.etransfer-details__copy-btn:active {
  transform: scale(0.95);
}
.etransfer-details__copy-btn--copied {
  border-color: #2d6a4f;
  color: #2d6a4f;
  background: #d8f3dc;
}
.etransfer-details__copy-icon {
  width: 14px;
  height: 14px;
}
.etransfer-details__copy-done {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.etransfer-details__note {
  font-size: 12px;
  color: #57534e;
  margin-top: 15px;
  line-height: 1.4;
}
.etransfer-details__note-emphasis {
  font-weight: 700;
}

/* Floating/Sidebar Order Summary */
.summary-wrapper {
  position: sticky;
  top: 30px;
  align-self: start;
}

.summary-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 35px 21px 35px;
  border: 1px solid #e6dfd3;
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.04);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.summary-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #1f1b16;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f5f2eb;
}
.summary-card__items {
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 5px;
  /* Custom scrollbar */
}
.summary-card__items::-webkit-scrollbar {
  width: 6px;
}
.summary-card__items::-webkit-scrollbar-track {
  background: #f5f2eb;
  border-radius: 10px;
}
.summary-card__items::-webkit-scrollbar-thumb {
  background: #e6dfd3;
  border-radius: 10px;
}
.summary-card__items::-webkit-scrollbar-thumb:hover {
  background: rgba(217, 119, 6, 0.5);
}
.summary-card__item-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f5f2eb;
  font-size: 14px;
  color: #2c2720;
  line-height: 1.4;
}
.summary-card__item-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.summary-card__item-line {
  font-weight: 500;
}
.summary-card__item-qty {
  font-weight: 700;
  color: #b45309;
  margin-right: 4px;
}
.summary-card__item-subtotal {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}
.summary-card__item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.summary-card__item-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f1b16;
  line-height: 1.3;
}
.summary-card__item-price {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2c2720;
  white-space: nowrap;
}
.summary-card__qty {
  display: flex;
  align-items: center;
  background: #f5f2eb;
  border: 1px solid #e6dfd3;
  border-radius: 8px;
  overflow: hidden;
  align-self: flex-start;
}
.summary-card__qty-btn {
  background: transparent;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 16px;
  cursor: pointer;
  color: #1f1b16;
  transition: background-color 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-card__qty-btn:hover {
  background-color: #ffffff;
  color: #d97706;
}
.summary-card__qty-btn:active {
  transform: scale(0.95);
}
.summary-card__qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  color: #1f1b16;
}
.summary-card__clear-btn {
  width: 100%;
  margin-bottom: 16px;
  padding: 10px 14px;
  border: 1px solid #e6dfd3;
  border-radius: 10px;
  background: #ffffff;
  color: #78716c;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.summary-card__clear-btn:hover {
  border-color: #dc2626;
  color: #dc2626;
  background: #fee2e2;
}
.summary-card__clear-btn:active {
  transform: scale(0.98);
}
.summary-card__order-num {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 14px;
  background: #f5f2eb;
  border-radius: 10px;
  border: 1px dashed #e6dfd3;
}
.summary-card__label {
  font-size: 13px;
  font-weight: 600;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.summary-card__value {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #b45309;
  letter-spacing: 0.02em;
}
.summary-card__empty {
  color: #78716c;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  font-style: italic;
}
.summary-card__totals {
  border-top: 2px solid #f5f2eb;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}
.summary-card__footnote {
  font-size: 12px;
  color: #78716c;
  text-align: center;
  margin-top: 15px;
  line-height: 1.4;
}
.summary-card__footnote a {
  color: #d97706;
}
.summary-card__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary-card__total-row--grand .summary-card__label {
  font-weight: 800;
  font-size: 18px;
  color: #1f1b16;
}
.summary-card__total-row--grand .summary-card__value {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #2d6a4f;
}
.summary-card__btn {
  width: 100%;
  background: #d97706;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 20px;
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.summary-card__btn:hover {
  background: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}
.summary-card__btn:active {
  transform: translateY(0);
}
.summary-card__btn:disabled {
  background: #e7e5e4;
  color: #a8a29e;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.summary-card__btn--loading .summary-card__spinner {
  display: block;
}
.summary-card__btn--loading .summary-card__btn-text {
  display: none;
}
.summary-card__spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 1s ease-in-out infinite;
}
.summary-card__btn-text {
  display: inline;
}

/* Modal Overlay & Card styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(31, 27, 22, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.modal-overlay.modal-overlay--show {
  opacity: 1;
  visibility: visible;
}

.confirmation-modal {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid #e6dfd3;
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 40px;
}
.modal-overlay--show .confirmation-modal {
  transform: scale(1);
}
.confirmation-modal__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}
.confirmation-modal__success-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: #d8f3dc;
  color: #2d6a4f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation-modal__success-icon svg {
  width: 18px;
  height: 18px;
}
.confirmation-modal__title {
  text-align: left;
  font-size: 24px;
  font-weight: 800;
  color: #1f1b16;
  margin: 0;
  line-height: 1.2;
}
.confirmation-modal__subtitle {
  text-align: center;
  color: #78716c;
  font-size: 15px;
  margin-bottom: 30px;
}
.confirmation-modal__details-card {
  background: #f5f2eb;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e6dfd3;
  margin-bottom: 25px;
}
.confirmation-modal__order-num {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #78716c;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e6dfd3;
}
.confirmation-modal__order-num span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #b45309;
  margin-top: 6px;
  letter-spacing: 0px;
}
.confirmation-modal__summary-table {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}
.confirmation-modal__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.confirmation-modal__summary-line {
  font-weight: 500;
}
.confirmation-modal__summary-qty {
  font-weight: 700;
  color: #b45309;
  margin-right: 4px;
}
.confirmation-modal__summary-price {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
.confirmation-modal__total {
  border-top: 1px solid #e6dfd3;
  padding-top: 12px;
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 16px;
  color: #1f1b16;
}
.confirmation-modal__total-price {
  color: #2d6a4f;
  font-size: 18px;
}
.confirmation-modal__payment {
  font-size: 14px;
  margin-top: 15px;
  border-top: 1px dashed #ccc;
  padding-top: 15px;
}
.confirmation-modal__payment-label {
  font-weight: 700;
}
.confirmation-modal__payment-method {
  font-weight: 700;
}
.confirmation-modal__actions {
  display: flex;
  gap: 15px;
}
.confirmation-modal__download-btn {
  flex: 1;
  padding: 14px 20px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f5f2eb;
  border: 1px solid #e6dfd3;
  color: #2c2720;
}
.confirmation-modal__download-btn svg {
  width: 16px;
  height: 16px;
}
.confirmation-modal__download-btn:hover {
  background: #e6dfd3;
}
.confirmation-modal__close-btn {
  flex: 1;
  padding: 14px 20px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2d6a4f;
  border: none;
  color: #ffffff;
}
.confirmation-modal__close-btn:hover {
  background: #265a43;
}

.payment-instruct {
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
  font-size: 13px;
}
.payment-instruct__heading {
  font-weight: 700;
}
.payment-instruct__highlight {
  font-weight: 700;
}
.payment-instruct--etransfer {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  color: #444;
}
.payment-instruct--pickup {
  background: #d8f3dc;
  border: 1px solid #2d6a4f;
  color: #1b4332;
}
.payment-instruct__ref {
  color: #dc2626;
  font-size: 14px;
  font-weight: 700;
}

/* Deactivated Form State (Deadline Passed) */
.deactivated-container {
  text-align: center;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #e6dfd3;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(31, 27, 22, 0.05);
  max-width: 700px;
  margin: 40px auto 100px;
}
.deactivated-container__icon {
  width: 80px;
  height: 80px;
  background: #fee2e2;
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.deactivated-container__icon svg {
  width: 40px;
  height: 40px;
}
.deactivated-container__title {
  font-size: 28px;
  font-weight: 800;
  color: #1f1b16;
  margin-bottom: 12px;
}
.deactivated-container__desc {
  color: #78716c;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.deactivated-container__products-title {
  margin-bottom: 20px;
  text-align: left;
}
.deactivated-container__contact-card {
  background: #f5f2eb;
  border-radius: 16px;
  border: 1px solid #e6dfd3;
  padding: 25px;
  margin-bottom: 30px;
  text-align: left;
}
.deactivated-container__contact-title {
  font-size: 16px;
  font-weight: 700;
  color: #2c2720;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.deactivated-container__contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #1f1b16;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.deactivated-container__contact-link:last-child {
  margin-bottom: 0;
}
.deactivated-container__contact-link svg {
  color: #d97706;
  width: 18px;
  height: 18px;
}
.deactivated-container__contact-link:hover {
  color: #b45309;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0px rgba(217, 119, 6, 0.4);
  }
  100% {
    box-shadow: 0 0 0 8px rgba(217, 119, 6, 0);
  }
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: 960px;
  }
  .event-details__card {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .summary-wrapper {
    position: static;
  }
  .product-item {
    grid-template-columns: minmax(0, 1fr) minmax(68px, auto) 112px minmax(68px, auto);
    gap: 12px;
    padding: 14px 16px;
  }
  .product-item__img {
    width: 64px;
    height: 64px;
  }
  .product-item__name {
    font-size: 16px;
  }
  .product-item__price {
    font-size: 15px;
  }
  .product-item__quantity {
    width: 112px;
  }
  .product-item__subtotal {
    font-size: 17px;
  }
}
@media screen and (max-width: 1024px) {
  .container {
    padding: 0;
    max-width: none;
    width: calc(100% - 20px);
  }
  .summary-card {
    padding: clamp(15px, 4vw, 20px);
  }
}
@media screen and (max-width: 768px) {
  .input-group-grid {
    grid-template-columns: 1fr;
  }
  .pickup-days {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-item {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "info quantity" "price subtotal";
    align-items: start;
    gap: 10px 12px;
    padding: 12px 14px;
  }
  .product-item__info {
    grid-area: info;
    align-self: start;
  }
  .product-item__price {
    grid-area: price;
    justify-self: start;
    align-self: end;
    text-align: left;
    font-size: 14px;
  }
  .product-item__quantity {
    grid-area: quantity;
    justify-self: end;
    align-self: start;
    width: 136px;
    border-radius: 10px;
  }
  .product-item__qty-btn {
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .product-item__quantity input {
    width: 48px;
    height: 44px;
    font-size: 18px;
  }
  .summary-card__qty-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .summary-card__qty-value {
    min-width: 36px;
    font-size: 16px;
  }
  .product-item__subtotal {
    grid-area: subtotal;
    justify-self: end;
    align-self: end;
    text-align: right;
    font-size: 16px;
  }
  .product-item__img {
    width: 56px;
    height: 56px;
  }
  .product-item__name {
    font-size: 15px;
  }
  .product-item__meta {
    font-size: 12px;
  }
}
@media screen and (max-width: 600px) {
  .event-details__logos {
    gap: 12px;
    margin-top: 12px;
  }
  .event-details__logo-barrag {
    height: 32px;
  }
  .event-details__logo-simply {
    height: 27px;
  }
  .event-hero .bigbang-logo {
    height: 44px;
  }
  .event-hero__title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .form-section {
    padding: clamp(15px, 4vw, 20px);
  }
  .etransfer-details__row {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .confirmation-modal {
    padding: 25px;
  }
  .product-item {
    padding: 12px;
    gap: 10px 6px;
  }
  .product-item__quantity {
    width: 132px;
  }
}
@media screen and (max-width: 480px) {
  .pickup-days {
    grid-template-columns: repeat(2, 1fr);
  }
  .confirmation-modal__actions {
    flex-direction: column;
  }
  .product-item__info {
    gap: 10px;
  }
  .product-item__img {
    width: 52px;
    height: 52px;
  }
  .product-item__name {
    font-size: 14px;
  }
  .product-item__meta {
    font-size: 11px;
  }
  .product-item__price {
    font-size: 13px;
  }
  .product-item__subtotal {
    font-size: 15px;
  }
  .product-item__quantity {
    width: 128px;
  }
  .product-item__qty-btn {
    width: 42px;
    height: 42px;
    font-size: 21px;
  }
  .product-item__quantity input {
    width: 44px;
    height: 42px;
    font-size: 17px;
  }
}
@media screen and (max-width: 375px) {
  .product-item {
    padding: 10px;
    gap: 8px 4px;
    border-radius: 12px;
  }
  .product-item__img {
    width: 48px;
    height: 48px;
  }
  .product-item__name {
    font-size: 13px;
  }
  .product-item__price {
    font-size: 12px;
  }
  .product-item__subtotal {
    font-size: 14px;
  }
  .product-item__quantity {
    width: 124px;
  }
  .product-item__qty-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .product-item__quantity input {
    width: 44px;
    height: 40px;
    font-size: 16px;
  }
}
@media screen and (max-width: 320px) {
  .container {
    width: calc(100% - 12px);
  }
  .form-section {
    padding: 16px 12px;
  }
  .product-item {
    padding: 8px;
    gap: 8px 2px;
  }
  .product-item__info {
    gap: 8px;
  }
  .product-item__img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }
  .product-item__img img {
    border-radius: 8px;
  }
  .product-item__name {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .product-item__meta {
    font-size: 10px;
  }
  .product-item__size {
    padding: 1px 6px;
  }
  .product-item__price {
    font-size: 11px;
  }
  .product-item__subtotal {
    font-size: 13px;
  }
  .product-item__quantity {
    width: 120px;
    border-radius: 8px;
  }
  .product-item__qty-btn {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }
  .product-item__quantity input {
    width: 44px;
    height: 38px;
    font-size: 16px;
  }
  .summary-card__qty-btn {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }
  .summary-card__qty-value {
    min-width: 34px;
    font-size: 15px;
  }
}