 * {
     box-sizing: border-box;
 }

 body {
     margin: 0;
     /* padding-top: 72px; */
     font-family: Arial, sans-serif;
     background: #fff;
     color: #222;
 }

 html {
     scroll-behavior: smooth;
 }

 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     background: linear-gradient(90deg, #dc3545, #fd7e14);
     color: white;
     z-index: 1000;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
 }

 .navbar-inner {
     max-width: 1200px;
     margin: 0 auto;
     display: flex;
     justify-content: space-between;
     align-items: center;
     gap: 16px 24px;
     padding: 16px;
     flex-wrap: nowrap;
 }

 .navbar-links {
     display: flex;
     gap: 12px 24px;
     flex-wrap: wrap;
     flex: 1 1 auto;
     min-width: 0;
 }

 .navbar a,
 .cart-button {
     color: white;
     text-decoration: none;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     padding: 8px 12px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .cart-button {
     border: 2px solid rgba(255, 255, 255, 0.25);
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.08);
     cursor: pointer;
     gap: 8px;
     min-width: 56px;
     flex-shrink: 0;
     color: white;
 }

 .cart-icon {
     width: 1.1rem;
     height: 1.1rem;
     fill: currentColor;
     display: block;
 }

 .cart-count-badge {
     font-size: 0.95rem;
     font-weight: 700;
     line-height: 1;
 }

 .cart-button:hover,
 .navbar a:hover {
     background: rgba(255, 255, 255, 0.16);
     border-radius: 999px;
 }

 section {
     padding: 80px 24px;
     max-width: 1200px;
     margin: 0 auto;
 }

 section h2 {
     margin-top: 0;
     font-size: 2.5rem;
     color: #dc3545;
 }

 .hero {
     /* min-height: calc(100vh - 72px); */
     min-height: calc(100vh);
     min-width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     background-image: url('images/I-AM-poster.jpg');
     background-size: cover;
     background-position: center;
     position: relative;
     text-align: center;
     color: #fff;
 }

 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.35);
     z-index: 0;
 }

 .hero .content {
     max-width: 760px;
     position: relative;
     z-index: 1;
     padding: 40px 16px;
 }

 .hero h1 {
     font-size: 3.5rem;
     margin-bottom: 16px;
     color: #fff;
     text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
 }

 .hero p {
     font-size: 1.1rem;
     line-height: 1.8;
     margin-bottom: 32px;
     color: #fff;
     text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
 }

 .button-group {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 16px;
 }

 .button-group a {
     display: inline-block;
     padding: 14px 28px;
     border-radius: 999px;
     font-weight: 700;
     transition: transform 0.2s ease, background 0.2s ease;
     text-decoration: none;
 }

 .button-primary {
     background: #dc3545;
     color: white;
 }

 .button-secondary {
     background: white;
     color: #dc3545;
     border: 2px solid #dc3545;
 }

 button,
 .button-group a,
 .cart-button {
     transition: transform 0.2s ease, background 0.2s ease;
     transform-origin: center;
 }

 .button-primary:hover,
 .button-secondary:hover {
     transform: translateY(-2px) scale(1.03);
 }

 button:hover,
 .cart-button:hover {
     transform: scale(1.04);
 }

 .section-card {
     background: white;
     border-radius: 24px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
     padding: 32px;
 }

 .section-grid {
     display: grid;
     gap: 24px;
 }

 .section-grid.columns-3 {
     grid-template-columns: repeat(3, minmax(0, 1fr));
 }

 .section-grid.columns-2 {
     grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .card {
     background: white;
     border-radius: 20px;
     padding: 24px;
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
 }

 .card img {
     width: 100%;
     height: 200px;
     object-fit: cover;
     border-radius: 12px;
     margin-bottom: 16px;
     cursor: pointer;
 }

 .merch-preview {
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .merch-main-image {
     width: 100%;
     height: 280px;
     object-fit: contain;
     border-radius: 12px;
     margin-bottom: 0;
     background: #f8f3ea;
     padding: 12px;
 }

 .merch-color-options {
     display: flex;
     flex-wrap: wrap;
     gap: 8px;
 }

 .color-option {
     width: 34px;
     height: 34px;
     border-radius: 999px;
     border: 2px solid #ddd;
     cursor: pointer;
     padding: 0;
 }

 .color-option.active {
     border-color: #dc3545;
     box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15);
 }

 .color-option[data-color="beige"] {
     background: #e6d1a8;
 }

 .color-option[data-color="blue"] {
     background: #4f6f94;
 }

 .color-option[data-color="green"] {
     background: #5b7b3a;
 }

 .color-option[data-color="white"] {
     background: #f8f3ea;
 }

 .color-option[data-color="classic"] {
     background: #242424;
 }

 .card h3 {
     margin-top: 0;
     margin-bottom: 12px;
 }

 .merch-card-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     margin-bottom: 8px;
 }

 .merch-card-header h3 {
     margin-bottom: 0;
 }

 .card p {
     color: #555;
     line-height: 1.7;
 }

 .card {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .card-actions {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: flex-end;
     gap: 12px;
     margin-top: auto;
 }

 .ticket-actions {
     justify-content: flex-start;
 }

 .quantity-selector {
     display: inline-flex;
     align-items: center;
     border: 1px solid rgba(220, 53, 69, 0.25);
     border-radius: 999px;
     overflow: hidden;
     background: white;
 }

 .quantity-button {
     width: 38px;
     height: 38px;
     border: none;
     background: #fff;
     color: #dc3545;
     font-size: 1.2rem;
     cursor: pointer;
 }

 .quantity-button:hover {
     background: rgba(220, 53, 69, 0.08);
 }

 .product-quantity {
     min-width: 32px;
     text-align: center;
     font-weight: 700;
     color: #222;
     padding: 0 10px;
 }

 .merch-size-picker {
     display: flex;
     align-items: center;
     gap: 8px;
     margin: 12px 0 8px;
 }

 .merch-size-label {
     font-size: 0.95rem;
     font-weight: 700;
     color: #444;
 }

 .merch-size-select {
     border: 1px solid #ddd;
     border-radius: 999px;
     padding: 8px 12px;
     font-size: 0.95rem;
     background: white;
 }

 .merch-price {
     margin: 0 0 12px;
     font-weight: 700;
     color: #dc3545;
 }

 .preorder-button {
     margin-top: 0;
     border: none;
     background: #fd7e14;
     color: white;
     padding: 12px 24px;
     border-radius: 999px;
     font-weight: 700;
     cursor: pointer;
 }

 .preorder-button:hover {
     background: #e06b12;
 }

 .payment-email-error {
     color: #c82333;
     font-size: 0.95rem;
     display: none;
     margin-top: 6px;
 }

 .ticket-confirmation {
     display: none;
     margin-top: 32px;
 }

 .ticket-clear-button {
     margin-top: 16px;
 }

 .merch-note {
     margin-top: 8px;
     font-size: 0.95rem;
     color: #666;
     line-height: 1.6;
 }

 .section-spacer {
     margin-top: 24px;
 }

 .video-wrapper {
     position: relative;
     padding-top: 56.25%;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
 }

 .video-wrapper iframe {
     position: absolute;
     width: 100%;
     height: 100%;
     left: 0;
     top: 0;
     border: 0;
 }

 .map-wrapper {
     width: 100%;
     height: 320px;
     border-radius: 14px;
     overflow: hidden;
     box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
     margin-top: 16px;
 }

 .map-wrapper iframe {
     width: 100%;
     height: 100%;
     border: 0;
 }

 .cart-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.45);
     z-index: 1100;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.25s ease;
 }

 .cart-overlay.open {
     opacity: 1;
     pointer-events: auto;
 }

 .cart-drawer {
     position: fixed;
     top: 0;
     right: 0;
     height: 100vh;
     width: min(420px, 100%);
     background: white;
     box-shadow: -24px 0 80px rgba(0, 0, 0, 0.15);
     z-index: 1101;
     transform: translateX(100%);
     transition: transform 0.3s ease;
     display: flex;
     flex-direction: column;
     padding: 24px;
     overflow-y: auto;
     -webkit-overflow-scrolling: touch;
 }

 .cart-drawer.open {
     transform: translateX(0);
 }

 .cart-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-bottom: 24px;
 }

 .cart-items {
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 16px;
     overflow-y: auto;
     padding-right: 4px;
 }

 .cart-item,
 .payment-cart-item {
     display: flex;
     justify-content: space-between;
     gap: 16px;
     border: 1px solid #f1f1f1;
     border-radius: 18px;
     padding: 16px;
     background: white;
 }

 .payment-cart-item {
     background: #fff9f4;
     border-color: #ffe3d6;
 }

 .cart-item-title,
 .payment-cart-item-title {
     font-weight: 700;
     color: #dc3545;
     margin-bottom: 8px;
 }

 .quantity-controls {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-top: 12px;
 }

 .quantity-controls button {
     width: 32px;
     height: 32px;
     border: 1px solid #fd7e14;
     background: white;
     color: #fd7e14;
     border-radius: 10px;
     font-weight: 700;
     cursor: pointer;
 }

 .quantity-controls span {
     min-width: 28px;
     text-align: center;
     font-weight: 700;
     color: #333;
 }

 .cart-item-meta,
 .payment-cart-item-meta {
     text-align: right;
     min-width: 110px;
 }

 .cart-item-meta p,
 .payment-cart-item-meta p {
     margin: 4px 0;
     color: #555;
 }

 .cart-remove {
     border: none;
     background: transparent;
     color: #dc3545;
     font-weight: 700;
     cursor: pointer;
     padding: 0;
 }

 .cart-footer {
     border-top: 1px solid #f1f1f1;
     margin-top: 24px;
     padding-top: 24px;
 }

 .cart-total {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 1.1rem;
     font-weight: 700;
     margin-bottom: 16px;
 }

 .checkout-button {
     width: 100%;
     border: none;
     background: #dc3545;
     color: white;
     padding: 14px 18px;
     border-radius: 999px;
     font-weight: 700;
     cursor: pointer;
 }

 .checkout-button:hover {
     background: #b82b3c;
 }

 .payment-section {
     display: none;
     margin-top: 24px;
 }

 .payment-section h3 {
     margin-top: 0;
     color: #dc3545;
 }

 .payment-summary {
     background: #fff5f0;
     border: 1px solid #ffd2bf;
     border-radius: 18px;
     padding: 18px;
     margin-bottom: 18px;
 }

 .payment-total {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 12px;
     font-size: 1rem;
     font-weight: 700;
 }

 .payment-cart-items {
     display: grid;
     gap: 14px;
     margin-bottom: 20px;
 }

 .payment-fields {
     display: grid;
     gap: 14px;
     margin-bottom: 18px;
 }

 .payment-fields label {
     display: flex;
     flex-direction: column;
     gap: 6px;
     font-size: 0.95rem;
     color: #333;
 }

 .payment-fields input {
     border: 1px solid #e0e0e0;
     border-radius: 14px;
     padding: 10px 14px;
     font-size: 1rem;
 }

 .payment-success {
     display: none;
     background: #f7fff5;
     border: 1px solid #c7f0d2;
     border-radius: 18px;
     padding: 24px;
     text-align: center;
     margin-top: 24px;
 }

 .payment-success h3 {
     color: #218838;
     margin-top: 0;
 }

 .payment-success p {
     color: #2f5132;
     line-height: 1.6;
 }

 .back-to-cart-button {
     margin-top: 12px;
     width: 100%;
     border: 1px solid #dc3545;
     background: white;
     color: #dc3545;
     font-weight: 700;
     border-radius: 999px;
     padding: 14px 18px;
     cursor: pointer;
 }

 section[id] {
     scroll-margin-top: 88px;
 }

 .countdown-container {
     margin-top: 32px;
     padding: 24px;
     background: rgba(255, 255, 255, 0.15);
     border-radius: 16px;
     backdrop-filter: blur(10px);
 }

 .countdown-title {
     font-size: 1.2rem;
     font-weight: 700;
     color: #fff;
     text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
     margin-bottom: 16px;
     text-transform: uppercase;
     letter-spacing: 0.05em;
     line-height: 1.4;
 }

 .countdown-timer {
     display: flex;
     flex-wrap: nowrap;
     justify-content: center;
     gap: 12px;
     text-align: center;
     align-items: flex-start;
 }

 .countdown-item {
     display: flex;
     flex: 1 1 0;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     min-width: 0;
 }

 .countdown-number {
     font-size: clamp(1.3rem, 2.4vw, 2.5rem);
     font-weight: 700;
     color: #ffd700;
     text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
     line-height: 1;
 }

 .countdown-label {
     font-size: 0.85rem;
     font-weight: 600;
     color: #fff;
     text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
     text-transform: uppercase;
     letter-spacing: 0.03em;
 }

 .merch-modal-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.65);
     display: none;
     align-items: center;
     justify-content: center;
     z-index: 1200;
     padding: 24px;
 }

 .merch-modal-overlay.open {
     display: flex;
 }

 .merch-modal {
     background: white;
     width: min(760px, 100%);
     max-height: min(90vh, 820px);
     overflow-y: auto;
     border-radius: 24px;
     padding: 24px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
     position: relative;
 }

 .merch-modal-close {
     position: absolute;
     top: 12px;
     right: 12px;
     width: 38px;
     height: 38px;
     border: none;
     background: rgba(255, 255, 255, 0.95);
     font-size: 1.5rem;
     cursor: pointer;
     color: #555;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
     z-index: 3;
 }

 .merch-modal-content {
     display: grid;
     gap: 16px;
 }

 .merch-modal-preview {
     position: relative;
     display: flex;
     align-items: center;
 }

 .merch-modal-preview img {
     width: 100%;
     max-height: 420px;
     object-fit: contain;
     border-radius: 16px;
     background: #f8f3ea;
     padding: 16px;
 }

 .merch-modal-info h3 {
     margin: 0 0 8px;
     color: #dc3545;
 }

 .merch-modal-info p {
     margin: 0 0 8px;
     color: #555;
     line-height: 1.6;
 }

 .merch-modal-price {
     font-weight: 700;
     color: #dc3545;
 }

 .merch-modal-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 12px;
     margin-top: 8px;
 }

 .merch-modal-nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 44px;
     height: 44px;
     border: none;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.9);
     color: #333;
     font-size: 1.5rem;
     line-height: 1;
     cursor: pointer;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
     transition: none;
 }

 .merch-modal-prev {
     left: 12px;
 }

 .merch-modal-next {
     right: 12px;
 }

 .merch-modal-nav-btn:hover {
     background: #e4e4e4;
     transform: translateY(-50%);
 }

 .merch-modal-color-picker {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
     gap: 8px;
     margin: 8px 0 12px;
 }

 .merch-modal-color-option {
     border: 1px solid #d6d6d6;
     background: #fff;
     color: #333;
     padding: 8px 10px;
     border-radius: 10px;
     cursor: pointer;
     text-align: center;
     min-width: 0;
 }

 .merch-modal-color-option.active {
     background: #dc3545;
     color: #fff;
     border-color: #dc3545;
 }

 .merch-modal-size-picker {
     display: flex;
     flex-direction: column;
     gap: 6px;
     margin: 8px 0 12px;
 }

 .merch-modal-size-label {
     font-size: 0.95rem;
     font-weight: 600;
     color: #444;
 }

 .merch-modal-size-select {
     width: 100%;
     max-width: 180px;
     padding: 8px 10px;
     border: 1px solid #d6d6d6;
     border-radius: 10px;
     font: inherit;
 }

 @media (max-width: 768px) {
     .merch-modal-overlay {
         padding: 12px;
     }

     .merch-modal {
         width: 100%;
         max-height: 95vh;
         padding: 18px;
         border-radius: 18px;
     }

     .merch-modal-preview img {
         max-height: 300px;
         padding: 12px;
     }

     .merch-modal-nav-btn {
         width: 40px;
         height: 40px;
         font-size: 1.3rem;
     }

     .merch-modal-size-select {
         max-width: 100%;
     }

     .countdown-timer {
         gap: 6px;
     }

     .countdown-number {
         font-size: 1.2rem;
     }

     .countdown-label {
         font-size: 0.75rem;
     }

     .navbar-inner {
         flex-wrap: nowrap;
         align-items: center;
         gap: 12px;
     }

     .navbar-links {
         justify-content: flex-start;
         width: auto;
         flex: 1 1 auto;
     }

     .cart-button {
         margin-left: 8px;
     }

     .section-grid.columns-3,
     .section-grid.columns-2 {
         grid-template-columns: 1fr;
     }

     .hero h1 {
         font-size: 2.7rem;
     }
 }