/**
 * MFP Shop Styles
 * E-commerce styling for merchandise and ticket sales
 */

/* Shop Main Layout */
.shop-main {
    min-height: calc(100vh - 200px);
    background: #0d0d0d;
    padding-bottom: 60px;
}

/* Shop Header */
.shop-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 40px 0 30px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.shop-header h1 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.shop-header p {
    color: #888;
    font-size: 1rem;
    margin: 0;
}

/* Sticky Shop Navigation */
.shop-nav {
    background: #111;
    border-bottom: 1px solid #333;
    padding: 15px 0;
}

.shop-nav.sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.shop-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shop-nav .shop-tabs {
    display: flex;
    gap: 5px;
    margin: 0;
    flex-wrap: wrap;
}

.shop-nav .shop-tab {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    color: #888;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.shop-nav .shop-tab:hover {
    border-color: #e50000;
    color: #fff;
}

.shop-nav .shop-tab.active {
    background: #e50000;
    border-color: #e50000;
    color: #fff;
}

.shop-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-search {
    display: flex;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
}

.shop-search input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 8px 12px;
    font-size: 13px;
    width: 150px;
}

.shop-search input::placeholder {
    color: #666;
}

.shop-search button {
    background: transparent;
    border: none;
    color: #888;
    padding: 8px 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.shop-search button:hover {
    color: #e50000;
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #e50000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cart-btn:hover {
    background: #ff3333;
    transform: translateY(-1px);
}

.cart-count {
    background: #fff;
    color: #e50000;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.shop-breadcrumb {
    background: #1a1a1a;
    padding: 15px 0;
    margin-bottom: 30px;
}

.shop-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.shop-breadcrumb a {
    color: #888;
    text-decoration: none;
}

.shop-breadcrumb a:hover {
    color: #e50000;
}

.shop-breadcrumb span {
    color: #555;
}

.shop-breadcrumb .current {
    color: #fff;
}

/* Page Title */
.page-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Shop Tabs */
.shop-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.shop-tabs .tab-btn {
    padding: 12px 24px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-tabs .tab-btn:hover,
.shop-tabs .tab-btn.active {
    background: #e50000;
    border-color: #e50000;
    color: #fff;
}

/* Category Filters */
.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
}

.filter-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #444;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #e50000;
    border-color: #e50000;
    color: #fff;
}

/* Search Box */
.shop-search {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.shop-search input {
    flex: 1;
    padding: 12px 20px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 16px;
}

.shop-search input::placeholder {
    color: #666;
}

.shop-search input:focus {
    outline: none;
    border-color: #e50000;
}

.shop-search button {
    padding: 12px 24px;
    background: #e50000;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: #e50000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(229, 0, 0, 0.2);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background: #0d0d0d;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 12px;
    background: #e50000;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.product-badge.sale {
    background: #00b300;
}

.product-badge.sold-out {
    background: #666;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.product-category {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #e50000;
}

.product-price .original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 14px;
    margin-left: 10px;
}

/* Add to Cart Button (Grid) */
.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: #e50000;
    border: none;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #ff3333;
}

.add-to-cart-btn:disabled {
    background: #666;
    cursor: not-allowed;
}

/* Tickets Section */
.tickets-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.tickets-section-header h2 {
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.event-group {
    margin-bottom: 40px;
    padding: 25px;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 4px solid #e50000;
}

.event-group-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.event-group-header h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.event-date {
    color: #e50000;
    font-size: 14px;
}

.ticket-types {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ticket-card {
    padding: 20px;
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.ticket-card:hover {
    border-color: #e50000;
}

.ticket-type-name {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.ticket-description {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.5;
}

.ticket-price {
    font-size: 24px;
    font-weight: bold;
    color: #e50000;
    margin-bottom: 10px;
}

.ticket-availability {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
}

.ticket-availability.low-stock {
    color: #ff9900;
}

.ticket-availability.sold-out {
    color: #e50000;
}

/* Product Detail Page */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-main,
.main-image {
    aspect-ratio: 1;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    max-height: 500px;
}

.gallery-main img,
.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0d0d0d;
}

.gallery-thumbs,
.thumbnail-images {
    display: flex;
    gap: 10px;
}

.gallery-thumbs .thumb-btn,
.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #333;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background: #1a1a1a;
    padding: 0;
    overflow: hidden;
}

.gallery-thumbs .thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs .thumb-btn:hover,
.gallery-thumbs .thumb-btn.active,
.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: #e50000;
}

.product-info-detail,
.product-details {
    padding: 20px 0;
}

.product-info-detail .product-category,
.product-details .product-category {
    display: block;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-title,
.product-details h1 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.product-price-detail,
.product-details .product-price {
    font-size: 1.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.product-price-detail .price-sale {
    color: #e50000;
    font-weight: bold;
}

.product-price-detail .price-original {
    color: #666;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.product-price-detail .price-regular {
    color: #e50000;
    font-weight: bold;
}

.product-price-detail .price-save {
    background: #00b300;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
}

.stock-status {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
}

.stock-status.in-stock {
    background: rgba(0, 179, 0, 0.2);
    color: #00b300;
}

.stock-status.low-stock {
    background: rgba(255, 165, 0, 0.2);
    color: orange;
}

.stock-status.out-of-stock {
    background: rgba(255, 0, 0, 0.2);
    color: #e50000;
}

.product-description {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Product Form */
.product-form {
    margin-top: 20px;
}

.variant-selector {
    margin-bottom: 20px;
}

.variant-selector label {
    display: block;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.variant-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 6px;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.variant-option:hover {
    border-color: #e50000;
}

.variant-option input[type="radio"] {
    display: none;
}

.variant-option input[type="radio"]:checked + span {
    color: #e50000;
}

.variant-option input[type="radio"]:checked ~ .modifier {
    color: #e50000;
}

.variant-option:has(input:checked) {
    border-color: #e50000;
    background: rgba(229, 0, 0, 0.1);
}

.variant-option.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
}

.variant-option .modifier {
    color: #888;
    font-size: 12px;
}

.quantity-selector {
    margin-bottom: 25px;
}

.quantity-selector label {
    display: block;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.quantity-input {
    display: inline-flex;
    align-items: center;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 6px;
    overflow: hidden;
}

.quantity-input .qty-btn {
    width: 45px;
    height: 45px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-input .qty-btn:hover {
    background: #333;
}

.quantity-input input {
    width: 60px;
    height: 45px;
    background: transparent;
    border: none;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.quantity-input input::-webkit-outer-spin-button,
.quantity-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn-large {
    width: 100%;
    padding: 18px 30px;
    background: #e50000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn-large:hover {
    background: #ff1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(229, 0, 0, 0.3);
}

.add-to-cart-btn-large:disabled {
    background: #333;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.product-meta {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.meta-item {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.meta-item strong {
    color: #fff;
}

/* Variant Selection */
.variant-section {
    margin-bottom: 25px;
}

.variant-label {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variant-btn {
    padding: 10px 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-btn:hover,
.variant-btn.selected {
    border-color: #e50000;
    background: #e50000;
}

.variant-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Quantity Selector */
.quantity-section {
    margin-bottom: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
}

.qty-btn {
    width: 45px;
    height: 45px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: #e50000;
    border-color: #e50000;
}

.quantity-selector input {
    width: 60px;
    height: 45px;
    text-align: center;
    background: #0d0d0d;
    border: 1px solid #333;
    border-left: none;
    border-right: none;
    color: #fff;
    font-size: 16px;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart (Detail Page) */
.add-to-cart-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.add-to-cart-form .add-to-cart-btn {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
}

.stock-status {
    font-size: 14px;
    margin-bottom: 20px;
}

.stock-status.in-stock {
    color: #00b300;
}

.stock-status.low-stock {
    color: #ff9900;
}

.stock-status.out-of-stock {
    color: #e50000;
}

/* Cart Page */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 30px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto;
    gap: 20px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 8px;
    align-items: center;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: #0d0d0d;
    border-radius: 6px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 5px;
}

.cart-item-info .variant {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.cart-item-info .unit-price {
    font-size: 14px;
    color: #e50000;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
}

.cart-item-total {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: right;
    min-width: 100px;
}

.remove-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.remove-btn:hover {
    color: #e50000;
}

/* Cart Summary */
.cart-summary {
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
    text-transform: uppercase;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: #aaa;
}

.summary-row.total {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: #e50000;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 25px;
    transition: background 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.checkout-btn:hover {
    background: #ff3333;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #888;
    margin-top: 15px;
    font-size: 14px;
}

.continue-shopping:hover {
    color: #e50000;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.empty-cart h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.empty-cart p {
    color: #888;
    margin-bottom: 30px;
}

/* Checkout Page */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 30px;
}

.checkout-section {
    padding: 25px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 25px;
}

/* Logged in notice */
.logged-in-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 8px;
    margin-bottom: 25px;
}

.logged-in-notice .notice-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
}

.logged-in-notice .notice-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logged-in-notice .notice-text strong {
    color: #28a745;
    font-size: 15px;
}

.logged-in-notice .notice-text span {
    color: #888;
    font-size: 13px;
}

.checkout-section h2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background: #0d0d0d;
    border: 1px solid #333;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #e50000;
}

.form-group small {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-info {
    padding: 20px;
    background: #0d0d0d;
    border-radius: 6px;
}

.payment-info p {
    color: #aaa;
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.payment-icons span {
    font-size: 14px;
    color: #888;
}

.checkout-summary {
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    height: fit-content;
}

.checkout-summary h2 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.checkout-item-info {
    display: flex;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
}

.checkout-item-price {
    color: #fff;
    font-weight: 500;
}

.checkout-totals {
    padding-top: 15px;
}

.checkout-submit-btn {
    width: 100%;
    padding: 16px;
    background: #e50000;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.checkout-submit-btn:hover {
    background: #ff3333;
}

.back-to-cart {
    display: block;
    text-align: center;
    color: #888;
    margin-top: 15px;
    font-size: 14px;
}

.back-to-cart:hover {
    color: #e50000;
}

/* Success Page */
.success-page {
    text-align: center;
    padding: 60px 20px;
    max-width: 700px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #00b300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    margin: 0 auto 30px;
}

.success-icon.error {
    background: #e50000;
}

.success-page h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.success-subtitle {
    font-size: 18px;
    color: #aaa;
    margin-bottom: 30px;
}

.order-confirmation-box {
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 30px;
}

.order-number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    margin-bottom: 15px;
}

.order-number span {
    color: #888;
}

.order-number strong {
    color: #e50000;
    font-size: 24px;
    letter-spacing: 2px;
}

.confirmation-email {
    color: #aaa;
}

.confirmation-email strong {
    color: #fff;
}

/* Tickets on Success Page */
.tickets-section {
    padding: 30px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.tickets-section h2 {
    color: #fff;
    margin-bottom: 15px;
}

.tickets-section > p {
    color: #888;
    margin-bottom: 20px;
}

.ticket-codes {
    display: grid;
    gap: 20px;
}

.ticket-code-card {
    padding: 25px;
    background: #0d0d0d;
    border: 2px dashed #e50000;
    border-radius: 8px;
    text-align: center;
}

.ticket-event {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

.ticket-code {
    font-size: 28px;
    font-weight: bold;
    color: #e50000;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: monospace;
}

.ticket-qr img {
    max-width: 150px;
    border-radius: 4px;
}

.shipping-notice {
    padding: 25px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.shipping-notice h3 {
    color: #fff;
    margin-bottom: 10px;
}

.shipping-notice p {
    color: #888;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.success-actions .btn {
    padding: 15px 30px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-primary {
    background: #e50000;
    color: #fff;
}

.btn-primary:hover {
    background: #ff3333;
}

.btn-secondary {
    background: #333;
    color: #fff;
}

.btn-secondary:hover {
    background: #444;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.alert-error {
    background: rgba(229, 0, 0, 0.1);
    border: 1px solid #e50000;
    color: #ff6666;
}

.alert-error ul {
    margin: 0;
    padding-left: 20px;
}

.alert-warning {
    background: rgba(255, 153, 0, 0.1);
    border: 1px solid #ff9900;
    color: #ffb84d;
}

.alert-success {
    background: rgba(0, 179, 0, 0.1);
    border: 1px solid #00b300;
    color: #4dff4d;
}

/* Cart Icon Header */
.cart-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cart-icon-link:hover {
    border-color: #e50000;
    color: #e50000;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #e50000;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive */
@media (max-width: 992px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-summary,
    .checkout-summary {
        position: static;
    }
}

/* ==================== EVENT TICKET CARDS ==================== */
.events-tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 500px));
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.event-ticket-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-ticket-card:hover {
    border-color: #e50000;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 0, 0, 0.15);
}

/* Poster Image - Full display, no crop */
.event-ticket-poster {
    display: block;
    width: 100%;
    background: #0d0d0d;
    position: relative;
    text-decoration: none;
    overflow: hidden;
}

.event-ticket-poster::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(229, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.event-ticket-poster:hover::after {
    background: rgba(229, 0, 0, 0.1);
}

.event-ticket-poster img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.event-ticket-card:hover .event-ticket-poster img {
    transform: scale(1.02);
}

.event-ticket-placeholder {
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    color: #333;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

/* Event Info - Below poster */
.event-ticket-info {
    padding: 20px;
    background: #111;
    border-bottom: 1px solid #222;
}

.event-ticket-info h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-title-link {
    text-decoration: none;
    display: block;
}

.event-title-link h3 {
    transition: color 0.3s ease;
}

.event-title-link:hover h3 {
    color: #e50000;
}

.event-ticket-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 13px;
    color: #ccc;
    margin-bottom: 10px;
}

.event-ticket-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-info-link {
    display: inline-block;
    font-size: 13px;
    color: #e50000;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.event-info-link:hover {
    color: #ff3333;
    text-decoration: underline;
}

.event-info-hint {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.event-info-hint:hover {
    color: #e50000;
}

/* Legacy header styles for backwards compatibility */
.event-ticket-header {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    max-height: 400px;
    overflow: hidden;
    background: #0d0d0d;
    cursor: pointer;
}

.event-ticket-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(229, 0, 0, 0);
    transition: background 0.3s ease;
    pointer-events: none;
}

.event-ticket-header:hover::after {
    background: rgba(229, 0, 0, 0.1);
}

.event-ticket-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.event-ticket-card:hover .event-ticket-header img {
    transform: scale(1.03);
}

.event-ticket-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.event-ticket-overlay h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-ticket-options {
    padding: 20px;
}

.ticket-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 12px;
    background: #0d0d0d;
    border: 1px solid #333;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    gap: 15px;
}

.ticket-option:last-child {
    margin-bottom: 0;
}

.ticket-option:hover {
    border-color: #e50000;
}

.ticket-option.sold-out {
    opacity: 0.5;
    pointer-events: none;
}

.ticket-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.ticket-type {
    font-weight: 700;
    color: #fff;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ticket-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.4;
}

/* Ticket Purchase Section */
.ticket-purchase {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ticket-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e50000;
}

.ticket-qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #333;
    border-radius: 4px;
    overflow: hidden;
}

.ticket-qty-selector button {
    width: 32px;
    height: 32px;
    background: #222;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.ticket-qty-selector button:hover {
    background: #e50000;
}

.ticket-qty-selector input {
    width: 40px;
    height: 32px;
    text-align: center;
    background: #111;
    border: none;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.ticket-qty-selector input::-webkit-outer-spin-button,
.ticket-qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn.ticket-btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn .low-stock {
    display: block;
    font-size: 10px;
    font-weight: normal;
    opacity: 0.8;
    text-transform: none;
    letter-spacing: 0;
}

.sold-out-badge {
    padding: 10px 20px;
    background: #666;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Event Info Hint */
.event-info-hint {
    display: block;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-top: 10px;
    transition: color 0.3s ease;
}

.event-ticket-header:hover .event-info-hint {
    color: #e50000;
}

/* Event Details Modal */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
}

.event-modal-content {
    position: relative;
    background: #111;
    border: 1px solid #333;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 30px;
}

.event-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #888;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.3s ease;
}

.event-modal-close:hover {
    color: #e50000;
}

.event-modal-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e50000;
}

.event-modal-details {
    margin-bottom: 25px;
}

.event-detail-row {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
    font-size: 14px;
    align-items: flex-start;
}

.event-detail-row:last-child {
    border-bottom: none;
}

.event-detail-row .detail-icon {
    flex-shrink: 0;
    width: 24px;
}

.event-detail-row strong {
    color: #fff;
    margin-right: 5px;
    flex-shrink: 0;
}

.event-description {
    flex-direction: column;
    line-height: 1.6;
}

/* Fight Card in Modal */
.event-modal-fightcard {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.event-modal-fightcard h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.fightcard-section {
    margin-bottom: 20px;
}

.fightcard-section:last-child {
    margin-bottom: 0;
}

.fightcard-section h4 {
    color: #e50000;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}

.fight-row {
    background: #151515;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 12px 15px;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.fight-row:last-child {
    margin-bottom: 0;
}

.fight-badge {
    font-size: 9px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fight-badge.main-event {
    background: #e50000;
    color: #fff;
}

.fight-badge.co-main {
    background: #333;
    color: #fff;
    border: 1px solid #555;
}

.fight-matchup {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-wrap: wrap;
}

.fighter-name {
    color: #fff;
    font-weight: 600;
    font-size: 13px;
}

.fight-matchup .vs {
    color: #e50000;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.fight-weight {
    font-size: 11px;
    color: #888;
    background: #222;
    padding: 3px 8px;
    border-radius: 3px;
    margin-left: auto;
}

/* Modal Actions */
.event-modal-actions {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.btn-view-event {
    display: inline-block;
    background: transparent;
    border: 2px solid #e50000;
    color: #e50000;
    padding: 12px 25px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-event:hover {
    background: #e50000;
    color: #fff;
}

/* Section Title */
.section-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px dashed #333;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.empty-state p {
    color: #888;
    font-size: 1.1rem;
}

.empty-sub {
    font-size: 0.9rem !important;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .shop-header {
        padding: 25px 0 20px;
    }
    
    .shop-header h1 {
        font-size: 1.8rem;
    }
    
    .shop-nav-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .shop-nav .shop-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
    }
    
    .shop-actions {
        justify-content: space-between;
    }
    
    .shop-search input {
        width: 120px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .events-tickets-grid {
        grid-template-columns: 1fr;
    }
    
    .event-ticket-header {
        aspect-ratio: 3/4;
        max-height: 350px;
    }
    
    .event-ticket-body {
        padding: 15px;
    }
    
    .event-ticket-info h3 {
        font-size: 1.1rem;
    }
    
    .ticket-purchase {
        min-width: 100%;
        margin-top: 15px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .cart-item-image {
        width: 80px;
        height: 80px;
    }
    
    .cart-item-quantity,
    .cart-item-total {
        grid-column: span 2;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Product Detail Mobile */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-main {
        max-height: 400px;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
    
    .product-price-detail {
        font-size: 1.4rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    /* Modal mobile */
    .event-modal {
        padding: 10px;
    }
    
    .event-modal-content {
        padding: 20px;
        max-height: 90vh;
    }
    
    .event-modal-header h2 {
        font-size: 1.2rem;
        padding-right: 30px;
    }
    
    .fight-matchup {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .fight-weight {
        margin-left: 0;
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .ticket-types {
        grid-template-columns: 1fr;
    }
    
    .product-details h1 {
        font-size: 1.5rem;
    }
    
    .add-to-cart-form {
        flex-direction: column;
    }
    
    /* Ticket card mobile layout */
    .events-tickets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .event-ticket-header {
        aspect-ratio: 16/9;
        max-height: 200px;
    }
    
    .event-ticket-placeholder {
        min-height: 150px;
        font-size: 2.5rem;
    }
    
    .event-ticket-overlay h3 {
        font-size: 1.1rem;
    }
    
    .event-ticket-options {
        padding: 15px;
    }
    
    /* Stack ticket option on mobile */
    .ticket-option {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        text-align: center;
    }
    
    .ticket-info {
        align-items: center;
    }
    
    .ticket-purchase {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .ticket-price {
        font-size: 1.6rem;
    }
    
    .ticket-qty-selector {
        justify-content: center;
    }
    
    .ticket-qty-selector button {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .ticket-qty-selector input {
        width: 50px;
        height: 44px;
        font-size: 16px;
    }
    
    .add-to-cart-btn.ticket-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* ===================================
   Apple Pay / Google Pay Express Checkout
   =================================== */

.express-checkout-wrapper {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.apple-pay-btn {
    min-height: 50px;
    margin-bottom: 15px;
}

.payment-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 15px 0;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.payment-divider::before,
.payment-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #333;
}

.payment-divider::before {
    margin-right: 15px;
}

.payment-divider::after {
    margin-left: 15px;
}

#payment-request-button {
    margin-bottom: 10px;
}

/* Hide element when empty (button not available) */
#payment-request-button:empty {
    display: none;
}

.express-checkout-wrapper:has(#payment-request-button:empty) {
    display: none;
}

/* Processing state */
.processing-payment {
    text-align: center;
    padding: 20px;
    color: #888;
}

.processing-payment .spinner {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #333;
    border-top-color: var(--primary-color, #d4af37);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===================================
   Featured Tickets Banner - Poster Layout
   =================================== */

.featured-tickets-banner-new {
    display: flex;
    gap: 30px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    align-items: stretch;
}

.featured-tickets-banner-new .banner-poster {
    flex-shrink: 0;
    width: 250px;
    display: block;
    transition: transform 0.3s ease;
}

.featured-tickets-banner-new .banner-poster:hover {
    transform: scale(1.02);
}

.featured-tickets-banner-new .banner-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-tickets-banner-new .banner-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-tickets-banner-new h2 {
    font-size: 1.6rem;
    color: #fff;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-tickets-banner-new p {
    font-size: 1.2rem;
    color: #fff;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.featured-tickets-banner-new .banner-date,
.featured-tickets-banner-new .banner-venue {
    font-size: 0.95rem;
    color: #aaa;
    font-weight: 400;
}

.featured-tickets-banner-new .banner-btn {
    display: inline-block;
    background: #e50000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 20px;
    align-self: flex-start;
}

.featured-tickets-banner-new .banner-btn:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .featured-tickets-banner-new {
        flex-direction: column;
        gap: 0;
    }
    
    .featured-tickets-banner-new .banner-poster {
        width: 100%;
    }
    
    .featured-tickets-banner-new .banner-content {
        padding: 25px;
        text-align: center;
        align-items: center;
    }
    
    .featured-tickets-banner-new h2 {
        font-size: 1.3rem;
    }
    
    .featured-tickets-banner-new p {
        font-size: 1.1rem;
    }
    
    .featured-tickets-banner-new .banner-btn {
        align-self: center;
    }
}

/* Legacy banner styles */
.featured-tickets-banner {
    position: relative;
    background: linear-gradient(135deg, #1a0a0a 0%, #0d0d0d 100%);
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 40px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    border: 1px solid #333;
}

.featured-tickets-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.3) 100%);
}

.featured-tickets-banner .banner-content {
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 500px;
}

.featured-tickets-banner h2 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-tickets-banner p {
    font-size: 1.1rem;
    color: #ccc;
    margin: 0 0 20px 0;
}

.featured-tickets-banner .banner-btn {
    display: inline-block;
    background: #e50000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.featured-tickets-banner .banner-btn:hover {
    background: #ff3333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(229, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .featured-tickets-banner {
        min-height: 250px;
        background-position: right center;
    }
    
    .featured-tickets-banner .banner-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.9) 100%);
    }
    
    .featured-tickets-banner .banner-content {
        padding: 25px;
        text-align: center;
        max-width: 100%;
    }
    
    .featured-tickets-banner h2 {
        font-size: 1.4rem;
    }
    
    .featured-tickets-banner p {
        font-size: 1rem;
    }
}
