/*
Theme Name: PulseWave Classic
Template: twentytwentythree
Version: 1.0
Description: Classic WooCommerce theme for PulseWave
*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.pw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.pw-product-wrapper {
    display: flex;
    gap: 40px;
}

.pw-product-gallery {
    flex: 1;
}

.pw-product-summary {
    flex: 1;
}

.pw-event-lineup {
    padding: 60px 20px;
}

.pw-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pw-event-header {
    text-align: center;
    margin-bottom: 40px;
}

.pw-event-title {
    font-size: 42px;
    margin-bottom: 10px;
}

.pw-lineup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.pw-lineup-card {
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
}

.site-header {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    color: #000;
}

.primary-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.primary-menu li a {
    text-decoration: none;
    color: #000;
}

/* Container grid */
.pulsewave-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Each event item */
.pulsewave-event-item {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    text-align: center;
}

/* Featured image */
.pulsewave-event-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

/* Title link */
.pulsewave-event-item h3 a {
    color: #333;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .pulsewave-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pulsewave-event-grid {
        grid-template-columns: 1fr;
    }
}