/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Branding Row */
.branding {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #f8f6f3;
    border-bottom: 1px solid #e8e4df;
}

.branding-left .logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.branding-left .logo:hover {
    transform: scale(1.05);
}

.branding-center h1 {
    font-size: 2.6rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: 1px;
}

.branding-right .countdown {
    display: flex;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.countdown-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b1538;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 1px;
}

/* Navigation Row */
.navigation {
    background-color: #a41e3c;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 0;
}

.nav-list li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-list li a:hover {
    background-color: #8b1538;
    transform: translateY(-2px);
}

.nav-list li a.active {
    background-color: #7a1530;
    border-bottom: 3px solid #ffd700;
}

/* Page Header */
.page-header {
    background-color: #a41e3c;
    color: white;
    text-align: center;
    padding: 2.5rem 2rem;
}

.page-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Auction Intro Section */
.auction-intro {
    padding: 3rem 2rem;
    background-color: #fff;
}

.auction-intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

.auction-intro .highlight-box {
    background-color: #faf8f5;
    border-left: 4px solid #a41e3c;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.wishlist-link {
    color: #a41e3c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wishlist-link:hover {
    color: #7a1530;
    text-decoration: underline;
}

/* Auction Categories Section */
.auction-categories {
    padding: 2rem 2rem 4rem;
    background-color: #f8f6f3;
}

.auction-categories .content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
}

.category {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.category h3 {
    color: #a41e3c;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f0ebe5;
}

.category ul {
    list-style: none;
}

.category ul li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f5f2ef;
    font-size: 0.95rem;
}

.category ul li:last-child {
    border-bottom: none;
}

/* Co-chairs Section */
.cochairs-content {
    padding: 3rem 2rem 4rem;
    background-color: #fff;
}

.cochairs-image-container {
    text-align: center;
    margin-bottom: 2.5rem;
}

.cochairs-image {
    max-width: 100%;
    width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.cochairs-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.cochairs-intro p {
    font-size: 1.2rem;
    color: #444;
}

.cochairs-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 2.5rem;
}

.cochairs-list li {
    display: flex;
    flex-direction: column;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background-color: #faf8f5;
    border-radius: 8px;
    border-left: 4px solid #a41e3c;
}

.chair-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #2c2c2c;
}

.chair-role {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.25rem;
}

.invitation {
    text-align: center;
    font-size: 1.2rem;
    color: #444;
    padding: 2rem;
    background-color: #faf8f5;
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.invitation strong {
    color: #a41e3c;
}

/* Sponsorship Page */
.sponsors-intro {
    padding: 3rem 2rem;
    background-color: #fff;
}

.thank-sponsors {
    font-size: 1.3rem;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 2rem;
}

.sponsors-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(8, auto);
    grid-auto-flow: column;
    gap: 0.5rem 2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.sponsors-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0ebe5;
}

.sponsor-cta {
    text-align: center;
    font-size: 1.1rem;
    color: #a41e3c;
    font-weight: 500;
}

.sponsor-callout {
    padding: 3rem 2rem;
    background-color: #a41e3c;
    color: white;
}

.sponsor-callout .content-wrapper {
    text-align: center;
}

.sponsor-callout p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.sponsor-callout strong {
    color: #ffd700;
}

.sponsor-callout .tax-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
    opacity: 0.9;
}

.sponsor-tiers,
.event-sponsors,
.program-ads {
    padding: 3rem 2rem;
    background-color: #f8f6f3;
}

.event-sponsors {
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #a41e3c;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.tier {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tier.premier {
    border: 2px solid #a41e3c;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
}

.tier-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0ebe5;
}

.tier-header h4 {
    font-size: 1.4rem;
    color: #a41e3c;
}

.tier-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c2c2c;
    background-color: #faf8f5;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.tier ul {
    list-style: none;
    padding-left: 0;
}

.tier ul li {
    padding: 0.4rem 0;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

.tier ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #a41e3c;
    font-weight: bold;
}

.event-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-tier {
    background-color: #faf8f5;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #a41e3c;
}

.event-tier h4 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.event-tier .tier-price {
    display: inline-block;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.event-tier ul {
    list-style: none;
    padding-left: 0;
}

.event-tier ul li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
}

.ad-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.ad-option {
    background-color: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ad-option h4 {
    font-size: 1.2rem;
    color: #a41e3c;
    margin-bottom: 0.5rem;
}

.ad-option .tier-price {
    display: inline-block;
    margin-bottom: 0.75rem;
}

.ad-option .ad-size {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1rem;
    font-style: italic;
}

.ad-option ul {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

.ad-option ul li {
    padding: 0.3rem 0;
    color: #555;
    font-size: 0.9rem;
    padding-left: 1.25rem;
    position: relative;
}

.ad-option ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #a41e3c;
}

/* Buy Button */
.btn-buy {
    display: inline-block;
    background-color: #a41e3c;
    color: white;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

.btn-buy:hover {
    background-color: #7a1530;
    transform: translateY(-2px);
}

.tier .btn-buy,
.event-tier .btn-buy,
.ad-option .btn-buy {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
}

.sponsor-contact {
    padding: 2.5rem 2rem;
    background-color: #2c2c2c;
    text-align: center;
}

.sponsor-contact p {
    color: #ccc;
    font-size: 1.1rem;
}

.sponsor-contact a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.sponsor-contact a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    height: 20vh;
    min-height: 300px;
    background-image: url('images/merrie-market-header-cropped.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 2.0rem;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-style: italic;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    margin-top: 0.75rem;
    opacity: 0.9;
}

/* Content Section */
.content {
    padding: 5rem 2rem;
    background-color: #fff;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    animation: fadeIn 0.8s ease-out;
}

.content .highlight {
    font-size: 1.3rem;
    color: #2c2c2c;
    font-weight: 500;
    border-left: 4px solid #a41e3c;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.content .motto {
    text-align: center;
    font-size: 1.2rem;
    color: #8b1538;
    padding: 1.5rem;
    background-color: #faf8f5;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.content .motto em {
    font-weight: 600;
}

.content .thank-you {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #a41e3c;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* Event Information Section */
.event-info {
    padding: 4rem 2rem;
    background-color: #f8f6f3;
}

.event-info .content-wrapper {
    max-width: 1000px;
}

.event-title {
    text-align: center;
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #a41e3c;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.event-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.event-schedule {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.event-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: #a41e3c;
    margin-bottom: 0.5rem;
}

.event-valet {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    display: flex;
    gap: 1.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f2ef;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-time {
    font-weight: 700;
    color: #a41e3c;
    min-width: 80px;
}

.schedule-item {
    color: #444;
}

.event-location {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-info {
    background-color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.location-info h4 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.location-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    color: #a41e3c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #7a1530;
    text-decoration: underline;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #999;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .branding {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .branding-center h1 {
        font-size: 1.4rem;
    }

    .branding-right .countdown {
        gap: 0.75rem;
    }

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

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-list li a {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 50vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .content {
        padding: 3rem 1.5rem;
    }

    .content p {
        font-size: 1rem;
    }

    .content .highlight {
        font-size: 1.1rem;
    }

    .page-header h2 {
        font-size: 1.8rem;
    }

    .auction-categories .content-wrapper {
        grid-template-columns: 1fr;
    }

    .cochairs-image {
        width: 100%;
    }

    .cochairs-list li {
        padding: 0.75rem 1rem;
    }

    .invitation {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .event-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .event-date {
        font-size: 1.3rem;
    }

    .sponsors-list {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(11, auto);
    }

    .tier-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .event-tiers-grid,
    .ad-options-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .branding-left .logo {
        height: 45px;
    }

    .branding-center h1 {
        font-size: 1.2rem;
    }

    .countdown-item {
        min-width: 40px;
    }

    .countdown-value {
        font-size: 1rem;
    }

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

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .page-header h2 {
        font-size: 1.5rem;
    }

    .category {
        padding: 1.25rem 1.5rem;
    }

    .category h3 {
        font-size: 1.2rem;
    }

    .sponsors-list {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        grid-auto-flow: row;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .tier {
        padding: 1.25rem 1.5rem;
    }

    .tier-header h4 {
        font-size: 1.2rem;
    }
}

/* Scroll animations for content */
.content p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content p.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Buy Page Form Styles */
.buy-intro {
    padding: 3rem 2rem;
    background-color: #a41e3c;
    color: white;
    text-align: center;
}

.buy-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.buy-form-section {
    padding: 3rem 2rem;
    background-color: #fff;
}

.buy-form-section .content-wrapper {
    max-width: 900px;
}

.form-group {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0ebe5;
}

.form-group:last-child {
    border-bottom: none;
}

.form-group h3 {
    font-size: 1.3rem;
    color: #a41e3c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0ebe5;
}

.form-group h4 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin: 1.5rem 0 1rem 0;
}

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

.purchase-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    background-color: #faf8f5;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.purchase-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #a41e3c;
    flex-shrink: 0;
}

.purchase-item-details {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.purchase-item-name {
    font-weight: 600;
    color: #2c2c2c;
}

.purchase-item-price {
    font-weight: 700;
    color: #a41e3c;
    min-width: 100px;
    text-align: right;
}

.quantity-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    background-color: #fff;
}

.quantity-select:focus {
    outline: none;
    border-color: #a41e3c;
    box-shadow: 0 0 0 2px rgba(164, 30, 60, 0.1);
}

/* Contact Information Form */
.contact-info-section {
    background-color: #f8f6f3;
    padding: 2rem 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-info-section h3 {
    font-size: 1.3rem;
    color: #a41e3c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f0ebe5;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding-top: 1.0rem;
}

.form-grid-2.full {
    grid-template-columns: 1fr;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1.0rem;
}

.form-grid-3.full {
    grid-template-columns: 1fr;
}

.form-group-field {
    display: flex;
    flex-direction: column;
}

.form-group-field label {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group-field input,
.form-group-field select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333;
}

.form-group-field input:focus,
.form-group-field select:focus {
    outline: none;
    border-color: #a41e3c;
    box-shadow: 0 0 0 2px rgba(164, 30, 60, 0.1);
}

.form-group-field input::placeholder {
    color: #999;
}

/* Submit Button */
.btn-submit {
    display: inline-block;
    background-color: #a41e3c;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 2rem;
    width: 100%;
    text-align: center;
}

.btn-submit:hover {
    background-color: #7a1530;
    transform: translateY(-2px);
}

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

/* Buy Page Controls (checkbox + quantity) */
.buy-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f0ebe5;
}

.buy-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #a41e3c;
}

.buy-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #a41e3c;
}

.buy-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.buy-quantity label {
    font-size: 1.0rem;
    /* color: #666; */
    color: #a41e3c;
    font-weight: 600;
}

.buy-quantity select {
    padding: 0.4rem 0.6rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    background-color: #fff;
    min-width: 60px;
}

.buy-quantity select:focus {
    outline: none;
    border-color: #a41e3c;
    box-shadow: 0 0 0 2px rgba(164, 30, 60, 0.1);
}

/* Buy controls within event-tier and ad-option cards */
.event-tier .buy-controls,
.ad-option .buy-controls {
    margin-top: 1rem;
    padding-top: 0.75rem;
}

/* Responsive Form */
@media (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-grid-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .purchase-item {
        flex-wrap: wrap;
    }

    .purchase-item-details {
        flex-direction: column;
        align-items: flex-start;
    }

    .purchase-item-price {
        text-align: left;
    }

    .buy-intro p {
        font-size: 1.05rem;
    }

    .buy-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
