/**
 * Single Event Page Styles
 */

/* Two-column layout wrapper */
.event-layout-container {
    max-width: 1200px;
    margin: 0 auto;
}

.event-layout-row {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: start;
}

/* Event image column */
.woocommerce-product-gallery {
    position: sticky;
    top: 20px;
}

.woocommerce-product-gallery__image img {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Event details column */
.summary.entry-summary {
    padding: 20px;
}

.product_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #333;
}

.woocommerce-product-details__short-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

/* Event meta information */
.event-meta-info {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2271b1;
}

.event-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 16px;
}

.event-meta-item:last-child {
    margin-bottom: 0;
}

.event-meta-icon {
    font-size: 20px;
    margin-right: 12px;
}

.event-meta-text {
    color: #444;
    font-weight: 500;
}

/* Price styling */
.price {
    font-size: 28px;
    font-weight: 700;
    color: #2271b1;
    margin-bottom: 25px;
}

/* BUY TICKETS button */
.single_add_to_cart_button {
    width: 100%;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: #FF9500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.single_add_to_cart_button:hover {
    background: #E68500;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.4);
}

/* Mobile responsive */
@media (max-width: 968px) {
    .event-layout-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .woocommerce-product-gallery {
        position: relative;
        top: 0;
    }

    .product_title {
        font-size: 26px;
    }
}

@media (max-width: 520px) {
    .product_title {
        font-size: 22px;
    }

    .single_add_to_cart_button {
        font-size: 16px;
        padding: 16px 28px;
    }
}