.container {
    max-width: 1100px;
    padding: 0 20px;
    margin: 0 auto 0;
}

.event-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 80px;
    align-items: flex-start;
    margin-top: -120px;
}

.event-main {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 170px;
}

.hero {
    margin-bottom: 20px;
}

.gallery {
    max-width: none;
    margin: 0;
    padding: 0;
}

.event-card-image {
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.event-card-image img.main {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.event-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 18px 0;
    color: var(--ink);
    margin-top: 20px;
}

.quick-info-standalone {
    margin-top: 0;
}

.quick-info-standalone .quick-info {
    background: transparent;
    padding: 0;
    margin: 0;
}

.quick-info-standalone .info-badge {
    background: var(--card);
    border: 1px solid var(--card-border);
    color: var(--ink);
}

.quick-info {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.info-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-badge svg {
    width: 16px;
    height: 16px;
    stroke: var(--ink);
    opacity: 0.7;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 0;
}

.info-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--brand1);
}

.info-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand1), var(--brand2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.info-card-label {
    font-size: 12px;
    color: var(--muted);
    opacity: 0.7;
    margin-bottom: 4px;
}

.info-card-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}
.description-section {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px 32px 32px 32px;
}

.description-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: var(--ink);
}

.description-section p {
    line-height: 1.7;
    color: var(--muted);
    opacity: 0.85;
    margin: 0;
    font-size: 15px;
}

.details-section {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px 32px 32px 32px;
}

.details-section h3 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: var(--ink);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-label {
    font-size: 12px;
    color: var(--muted);
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

.booking-sidebar {
    position: sticky;
    top: 24px;
    background: var(--ink);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.booking-header {
    background: var(#--ink);
    color: var(#f36f3f);
    padding: 28px;
    text-align: center;
}

.booking-title {
    font-size: 13px;
    margin-bottom: 8px;
    margin-top: 15px;
    font-weight: 600;
    color: #fff
}

.booking-price {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    color: var(--brand1)
}

.booking-price .booking-currency {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-left: 4px;
    color: var(--brand1)
}

.status-badge {
    display: inline-block;
    background: #e6ffe6;
    color: #2d7a2d;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 45px;
    font-weight: 600;
}

.booking-form {
    padding: 28px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.form-group:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.form-group:first-child .form-label {
    margin-bottom: 0;
    flex-shrink: 0;
}

.form-group:first-child .stepper {
    margin: 0;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 4px;
    height: 48px;
    flex: 0 0 140px;
}

.stepper button {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--brand1);
    color: #fff;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
    font-weight: 600;
}

.stepper button:hover {
    background: #f5f5f5;
}

.stepper input {
    flex: 1;
    border: none;
    background: transparent;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
}

.price-display {
    text-align: right;
    font-size: 14px;
    color: var(--brand1);
    font-weight: 600;
    margin-top: 4px;
}

.services-section {
    padding-top: 24px;
    border-top: 1px solid var(--card-border);
    margin-top: 24px;
}

.services-section .form-label {
    margin-bottom: 16px;
}

.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.service-name {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

.service-price {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
    text-align: left;
}

.total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 0;
    border-top: 2px solid var(--card-border);
    margin-top: 24px;
}

.total-label {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.total-price {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.confirm-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    background: var(--brand1);
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.confirm-btn:hover {
    background: var(--brand2);
    transform: translateY(-1px);
}

.confirm-btn:active {
    transform: translateY(0);
}

.recent-events {
    margin: 120px 0 50px;
}

.recent-events h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--ink);
}

.no-events {
    text-align: center;
    color: var(--muted);
    padding: 40px;
    font-size: 1.1rem;
}

.events-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand1) var(--card-border);
    -webkit-overflow-scrolling: touch;
}

.events-carousel::-webkit-scrollbar {
    height: 8px;
}

.events-carousel::-webkit-scrollbar-track {
    background: var(--card-border);
    border-radius: 4px;
}

.events-carousel::-webkit-scrollbar-thumb {
    background: var(--brand1);
    border-radius: 4px;
}

.carousel-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.2s, box-shadow 0.2s;
}

.carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.carousel-card-content {
    padding: 16px;
}

.carousel-card-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-card-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brand1);
    margin-bottom: 8px;
}

.carousel-card-content p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.8;
    line-height: 1.4;
}

.tax-info {
    text-align: right;
    font-size: 11px;
    color: #fff;
    margin-top: -4px;
}

.service-note {
    font-size: 11px;
    color: #fff;
    margin: -10px 0 16px 0;
}

.stepper button.decrease,
.stepper button.increase {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

.stepper input {
    font-size: 14px;
}

#basePrice {
    display: none;
}