/**
 * Parties in the USA - Venue Directory Styles
 * File: assets/css/venue-directory.css
 *
 * Mod / brutalist update.
 */


/* ==========================================================================
   LAYOUT
   ========================================================================== */

.bp-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.bp-layout-full { width: 100%; }

.bp-container--narrow {
    max-width: 780px;
}

.bp-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 36px;
    align-items: start;
}

@media (max-width: 900px) {
    .bp-layout { grid-template-columns: 1fr; }
    .bp-sidebar { order: -1; }
    .bp-submit-page .bp-sidebar { order: 1; }
}


/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */

.bp-breadcrumbs {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 20px;
    padding-top: 24px;
}

.bp-breadcrumbs a {
    color: var(--accent, #B9307A);
    text-decoration: none;
}

.bp-breadcrumb-sep {
    margin: 0 6px;
    opacity: 0.5;
}


/* ==========================================================================
   SINGLE VENUE
   ========================================================================== */

.bp-single-venue { padding-bottom: 80px; }

.bp-venue-header { margin-bottom: 24px; }

.bp-venue-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bp-venue-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.15;
    color: #000;
}

.bp-venue-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin: 8px 0 0;
}


/* Badges */
.bp-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border: 2px solid #000;
    border-radius: 999px;
    background: #fff;
    color: #000;
    white-space: nowrap;
}

.bp-badge--featured {
    background: var(--yellow, #F1C165);
    color: #000;
}

.bp-badge--audience { background: var(--teal, #64D6C3); color: #000; }
.bp-badge--kids { background: var(--teal); color: #000; }
.bp-badge--adults { background: var(--purple); color: #fff; }
.bp-badge--all-ages,
.bp-badge--mixed { background: var(--yellow); color: #000; }


/* Gallery */
.bp-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.bp-gallery-hero {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--sh-hover);
}

.bp-gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
}

.bp-gallery-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
}

.bp-gallery-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf9f7;
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    color: #000;
    cursor: pointer;
}

.bp-single-image {
    margin-bottom: 24px;
}

.bp-featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--sh-hover);
}

.bp-image-placeholder {
    position: relative;
    height: 360px;
    background: linear-gradient(135deg, var(--accent, #B9307A) 0%, var(--purple, #787094) 50%, var(--teal, #64D6C3) 100%);
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--sh-hover);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 24px;
    overflow: hidden;
}


/* Stats grid */
.bp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.bp-stat {
    background: #fff;
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
    box-shadow: var(--sh-soft);
    padding: 16px 12px;
    text-align: center;
}

.bp-stat-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    margin-bottom: 4px;
}

.bp-stat-value {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #000;
}

@media (max-width: 480px) {
    .bp-stats-grid { grid-template-columns: 1fr 1fr; }
}


/* Description */
.bp-venue-description {
    font-size: 18px;
    line-height: 1.75;
    color: #000;
    margin-bottom: 40px;
}


/* Sections */
.bp-section { margin-bottom: 40px; }

.bp-section-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
    color: #000;
}


/* Packages */
.bp-package-card {
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
    box-shadow: var(--sh-soft);
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #fff;
}

.bp-package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 12px;
}

.bp-package-header-left,
.bp-package-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bp-package-header-right { flex-shrink: 0; }

.bp-package-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.bp-package-audience {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 2px solid #000;
    border-radius: 999px;
    background: var(--teal);
    color: #000;
}

.bp-package-audience--adults { background: var(--accent); color: #fff; }
.bp-package-audience--everyone { background: var(--coral); color: #fff; }

.bp-package-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #000;
}

.bp-package-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent, #B9307A);
}
/* Shown when a package has no price yet — reads as intentional, not blank. */
.bp-package-price--request {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000;
    opacity: 0.55;
}

.bp-package-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    transition: transform 0.2s;
}

.bp-package-accordion.is-open .bp-package-toggle {
    transform: rotate(45deg);
    background: #000;
    color: #fff;
}

.bp-package-body {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 2px dashed #000;
}

.bp-package-stats-line {
    font-size: 15px;
    color: #000;
    margin: 10px 0;
}

.bp-package-includes-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.bp-package-details {
    font-size: 15px;
    margin: 8px 0 0;
}


/* Includes */
.bp-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.bp-include-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #000;
}

.bp-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal);
    color: #000;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.bp-includes-other {
    font-size: 15px;
    margin-top: 10px;
    font-style: italic;
}


/* Features */
.bp-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bp-feature-tag {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 6px 14px;
    border-radius: 999px;
}


/* Contact */
.bp-address,
.bp-phone {
    font-size: 17px;
    color: #000;
    margin: 0 0 6px;
}

.bp-contact-buttons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.bp-map-embed { margin-top: 20px; }
.bp-map-embed iframe { border: 2px solid #000; border-radius: var(--radius, 14px); }


/* Claim CTA */
.bp-claim-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--yellow) 100%);
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--sh-hover);
    padding: 28px;
    text-align: center;
    margin-top: 40px;
}

.bp-claim-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 8px;
    color: #000;
}

.bp-claim-text {
    font-size: 16px;
    color: #000;
    margin: 0 0 18px;
}


/* Related venues */
.bp-related {
    margin-top: 60px;
    padding-top: 36px;
    border-top: 6px dashed #000;
}

.bp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 20px;
}


/* ==========================================================================
   VENUE CARD (Mod / Brutalist)
   ========================================================================== */

.bp-venue-card {
    display: block;
    background: #fff;
    border: 2px solid #000;
    border-top: 8px solid var(--cat-color, #000);
    border-radius: var(--radius-lg, 18px);
    overflow: hidden;
    text-decoration: none;
    color: #000 !important;
    box-shadow: var(--sh);
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.bp-venue-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--sh-hover);
    text-decoration: none;
}

.bp-card-image {
    position: relative;
    height: 180px;
    background: #faf9f7;
    overflow: hidden;
    border-bottom: 2px solid #000;
}

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

.bp-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 16px;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.25);
    background: linear-gradient(135deg, var(--accent, #B9307A) 0%, var(--purple, #787094) 50%, var(--teal, #64D6C3) 100%);
}

.bp-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    border: 2px solid #000;
}

.bp-card-badge--featured {
    background: var(--accent);
    color: #fff;
}

.bp-card-badge--audience {
    position: static;
    display: inline-block;
    background: var(--teal);
    color: #000;
}

.bp-card-badge--kids { background: var(--teal); color: #000; }
.bp-card-badge--adults { background: var(--purple); color: #fff; }
.bp-card-badge--all-ages,
.bp-card-badge--mixed { background: var(--yellow); color: #000; }

.bp-card-content { padding: 18px 20px; }

.bp-card-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.bp-card-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin: 0;
    line-height: 1.25;
    flex: 1;
}

.bp-card-meta {
    font-size: 16px;
    color: #000;
    margin: 0 0 10px;
}

.bp-card-details {
    display: flex;
    gap: 14px;
    font-size: 16px;
    flex-wrap: wrap;
}

.bp-card-price {
    color: var(--accent);
    font-weight: 700;
}

.bp-card-detail { color: #000; }


/* ==========================================================================
   ARCHIVE PAGE
   ========================================================================== */

.bp-archive-venue { padding-bottom: 80px; }

.bp-archive-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0 48px;
}

.bp-archive-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
    line-height: 1.1;
    color: #000;
}

.bp-archive-subtitle {
    font-size: 18px;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

.bp-archive-intro {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin: 16px 0 0;
    max-width: 60ch;
}

.bp-archive-intro p {
    margin: 0 0 12px;
}

.bp-archive-intro p:last-child {
    margin-bottom: 0;
}

.bp-archive-hero-image {
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--sh-hero);
    overflow: hidden;
    height: 320px;
}

.bp-archive-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .bp-archive-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
        padding: 40px 0 36px;
    }
    .bp-archive-hero-image { height: 220px; }
    .bp-archive-title { font-size: 32px; }
}


/* Filters */
.bp-filters { margin-bottom: 32px; }

.bp-filter-form {
    background: #fff;
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--sh-soft);
    padding: 18px 22px;
}

.bp-filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bp-search-field { flex: 1; min-width: 200px; }

.bp-input,
.bp-select,
.bp-textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Source Sans Pro', sans-serif;
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
    background: #fff;
    color: #000;
    box-sizing: border-box;
}

.bp-input:focus,
.bp-select:focus,
.bp-textarea:focus {
    outline: none;
    box-shadow: var(--sh);
}

.bp-select { min-width: 0; appearance: auto; }
.bp-filter-row .bp-select { min-width: 150px; width: auto; }
.bp-submit-form { max-width: 100%; box-sizing: border-box; }
.bp-submit-form .bp-input,
.bp-submit-form .bp-select,
.bp-submit-form .bp-textarea { width: 100%; max-width: 100%; box-sizing: border-box; }
.bp-submit-form .bp-form-section { max-width: 100%; box-sizing: border-box; }
.bp-submit-form * { max-width: 100%; box-sizing: border-box; }

@media (max-width: 768px) {
    .bp-submit-page { overflow-x: hidden; }
    .bp-submit-page .bp-container { padding: 0 16px; max-width: 100%; }
    .bp-submit-page .bp-layout,
    .bp-submit-page .bp-main { width: 100%; max-width: 100%; min-width: 0; }
    .bp-submit-form .bp-form-section {
        padding: 20px 18px;
        box-shadow: var(--sh-soft);
        margin-right: 4px;  /* leaves room for box-shadow without horizontal scroll */
    }
}

.bp-active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.bp-filter-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bp-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: var(--teal);
    color: #000;
    border: 2px solid #000;
    padding: 5px 12px;
    border-radius: 999px;
}

.bp-pill-remove {
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.bp-clear-all {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}


/* Results */
.bp-results-header { margin-bottom: 20px; }

.bp-results-count {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}

.bp-venue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    .bp-venue-grid { grid-template-columns: 1fr 1fr; }
}

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


/* Pagination */
.bp-pagination { margin-top: 40px; text-align: center; }

.bp-pagination .page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.bp-pagination .page-numbers li a,
.bp-pagination .page-numbers li span {
    display: inline-block;
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius, 14px);
    text-decoration: none;
    color: #000;
    background: #fff;
    border: 2px solid #000;
}

.bp-pagination .page-numbers li .current {
    background: #000;
    color: #fff;
}


/* No results */
.bp-no-results {
    text-align: center;
    padding: 60px 24px;
    border: 6px dashed #000;
    border-radius: var(--radius-lg, 18px);
}

.bp-no-results h2 {
    font-size: 24px;
    margin: 0 0 10px;
}

.bp-no-results p { font-size: 16px; }
.bp-no-results a { color: var(--accent); font-weight: 600; }


/* Submit CTA */
.bp-submit-cta {
    background: linear-gradient(135deg, var(--teal) 0%, var(--yellow) 100%);
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--sh-hover);
    padding: 36px;
    text-align: center;
    margin-top: 48px;
}

.bp-submit-cta h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
}

.bp-submit-cta p {
    font-size: 17px;
    margin: 0 0 20px;
}


/* ==========================================================================
   SIDEBAR ADS
   ========================================================================== */

.bp-sidebar-ads {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 100px;
}

.bp-ad-slot {
    background: #fff;
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
    box-shadow: var(--sh-soft);
    padding: 14px;
    text-align: center;
}

.bp-ad-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000;
    margin-bottom: 10px;
}

.bp-ad-link { text-decoration: none; color: inherit; display: block; }

.bp-ad-image {
    width: 100%;
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
    display: block;
}

.bp-ad-placeholder {
    width: 100%;
    height: 160px;
    background: #faf9f7;
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    color: #000;
}

.bp-ad-text {
    font-size: 14px;
    color: #000;
    margin: 10px 0 0;
    line-height: 1.4;
}


/* ==========================================================================
   SUBMISSION FORM
   ========================================================================== */

.bp-submit-page { padding: 50px 0 80px; overflow-x: hidden; }

.bp-submit-page .bp-container--narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.bp-submit-form { max-width: 100%; }

.bp-submit-header {
    text-align: center;
    margin-bottom: 40px;
}

.bp-submit-header h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 10px;
}

.bp-submit-header p {
    font-size: 17px;
    margin: 0;
}

.bp-submit-benefits {
    list-style: none;
    display: inline-block;
    text-align: left;
    max-width: 520px;
    margin: 10px auto 14px;
    padding: 0;
}
.bp-submit-benefits li {
    position: relative;
    padding-left: 28px;
    margin: 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #1c1b29;
}
.bp-submit-benefits li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--pink, #EC1E8C);
    font-weight: 800;
}

.bp-form-section {
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    background: #fff;
    box-shadow: var(--sh-soft);
    padding: 24px;
    margin: 0 0 32px;
    max-width: 100%;
    box-sizing: border-box;
}

.bp-form-legend {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
    padding: 0;
}

.bp-form-note {
    font-size: 14px;
    color: #000;
    margin: 0 0 16px;
}

.bp-form-field { margin-bottom: 16px; }

.bp-form-field label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
    color: #000;
}

.bp-required { color: var(--accent); }

.bp-field-note {
    font-size: 13px;
    color: #000;
    opacity: 0.7;
    margin: 6px 0 0;
}

.bp-file-input { font-size: 14px; }

.bp-form-row {
    display: grid;
    gap: 14px;
}

.bp-form-row--half { grid-template-columns: 1fr 1fr; }
.bp-form-row--third { grid-template-columns: 1fr 1fr 1fr; }
.bp-form-row--quarter { grid-template-columns: 1fr 1fr 1fr 1fr; }

@media (max-width: 600px) {
    .bp-form-row--half,
    .bp-form-row--third,
    .bp-form-row--quarter { grid-template-columns: 1fr; }
}

.bp-checkbox-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bp-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #000;
    cursor: pointer;
}

.bp-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 480px) {
    .bp-checkbox-grid { grid-template-columns: 1fr; }
}

.bp-package-entry {
    border: 2px solid #000;
    border-radius: var(--radius, 14px);
    padding: 18px;
    margin-bottom: 12px;
    background: #faf9f7;
}

.bp-form-submit {
    text-align: center;
    padding-top: 20px;
    border-top: 6px dashed #000;
}

.bp-form-submit .bp-form-note { margin-top: 12px; }

.bp-success-message {
    text-align: center;
    padding: 60px 24px;
}

.bp-success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid #000;
    color: #000;
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.bp-success-message h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px;
}

.bp-success-message p {
    font-size: 17px;
    margin: 0 0 28px;
}

.bp-success-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.bp-error-message {
    background: #fff;
    border: 2px solid var(--accent);
    border-radius: var(--radius, 14px);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.bp-error-message p {
    margin: 0;
    font-size: 15px;
    color: #000;
}

.bp-featured-upsell {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--coral) 100%);
    border: 2px solid #000;
    border-radius: var(--radius-lg, 18px);
    box-shadow: var(--sh-hover);
    padding: 28px;
    margin-top: 48px;
}

.bp-featured-upsell h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
}

.bp-featured-upsell p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 8px;
}

.bp-featured-upsell a {
    color: #000;
    font-weight: 700;
    border-bottom: 2px solid #000;
}


/* ===== Free listing branded placeholders ===== */
.bp-image-placeholder--free .bp-placeholder-content {
    text-align: center;
    padding: 20px 24px;
    z-index: 1;
}
.bp-placeholder-category {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 10px;
    color: #fff;
}
.bp-placeholder-title {
    color: #fff !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.bp-placeholder-town {
    color: #fff !important;
    font-size: 15px;
    opacity: 0.9;
    font-style: italic;
}
.bp-placeholder-upgrade {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: #fff;
    color: #000 !important;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 14px;
    border: 2px solid #000;
    border-radius: 999px;
    box-shadow: var(--sh);
    transition: transform 0.12s, box-shadow 0.12s;
}
.bp-placeholder-upgrade:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--sh-hover);
}

/* Venue card branded placeholders */
.bp-card-img-placeholder--free {
    background: linear-gradient(135deg, var(--accent, #B9307A) 0%, var(--purple, #787094) 50%, var(--teal, #64D6C3) 100%);
    color: #fff;
    text-shadow: 0 2px 5px rgba(0,0,0,0.25);
    padding: 16px;
}
.bp-card-placeholder-content { text-align: center; }
.bp-card-placeholder-cat {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    margin-bottom: 6px;
    color: #fff;
}
.bp-card-placeholder-name {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    color: #fff;
}

/* ===== FREE LISTING CARDS (no image, matches homepage recent-card style) ===== */
.bp-venue-card--free {
    display: block;
    padding: 22px;
}
.bp-venue-card--free .bp-card-content {
    padding: 0;
}
.bp-venue-card--free .bp-card-icon,
.bp-card-icon {
    width: 44px !important;
    height: 44px !important;
    max-width: 44px !important;
    object-fit: contain;
    display: block;
    margin-bottom: 12px;
}
.bp-venue-card--free .bp-card-category-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cat-color, var(--accent));
    margin-bottom: 10px;
}
.bp-venue-card--free .bp-card-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
}
.bp-venue-card--free .bp-card-meta {
    margin-bottom: 14px;
}
.bp-venue-card--free .bp-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}


/* ==========================================================================
   PARTY SUPPLIERS
   ========================================================================== */

.bp-archive-supplier { padding-bottom: 80px; }

/* Hero fallback (gradient) when hero-suppliers.jpg doesn't exist */
.bp-sup-hero-image {
    background: linear-gradient(135deg, #F1C165 0%, #C66C65 100%);
}
.bp-sup-hero-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 1px;
    text-align: center;
    padding: 20px;
}
.bp-sup-hero-fallback .bp-sup-hero-sub {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: 6px;
    opacity: 0.8;
}

/* Category color tokens (mirror the venue --cat-color pattern) */
.sup-cat-coral  { --cat-color: #C66C65; }
.sup-cat-pink   { --cat-color: #B9307A; }
.sup-cat-yellow { --cat-color: #F1C165; }
.sup-cat-teal   { --cat-color: #64D6C3; }
.sup-cat-purple { --cat-color: #787094; }
.sup-cat-blue   { --cat-color: #4A90D9; }

/* Empty state */
.bp-sup-empty { padding: 40px 0 60px; }
.bp-sup-empty-box {
    background: #fff;
    border: 3px solid #000;
    border-radius: 18px;
    box-shadow: 10px 10px 0 #000;
    max-width: 780px;
    margin: 0 auto;
    padding: 60px 50px;
    text-align: center;
}
.bp-sup-empty-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 16px;
    display: inline-block;
    max-width: 80px;
    overflow: hidden;
    text-align: center;
}
.bp-sup-empty h2 { font-size: 38px; margin-bottom: 16px; letter-spacing: 0.5px; font-family: 'DM Sans', sans-serif; font-weight: 800; }
.bp-sup-empty p { font-size: 18px; max-width: 580px; margin: 0 auto 16px; line-height: 1.6; color: #000; }
.bp-sup-empty .bp-sup-empty-note { font-weight: 600; font-size: 16px; opacity: 0.85; }
.bp-sup-empty .bp-sup-empty-note a { color: #B9307A; font-weight: 700; border-bottom: 2px solid #B9307A; text-decoration: none; }

/* Section header */
.bp-archive-supplier .bp-section-header { text-align: center; margin: 60px 0 30px; }
.bp-archive-supplier .bp-section-header h2 { font-size: 36px; margin-bottom: 10px; font-family: 'DM Sans', sans-serif; font-weight: 800; }
.bp-archive-supplier .bp-section-header p { font-size: 17px; color: #000; }

/* Category grid */
.bp-sup-categories { padding: 20px 0; }
.bp-sup-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.bp-sup-cat-card {
    background: #fff;
    border: 2px solid #000;
    border-top: 8px solid var(--cat-color, #000);
    border-radius: 14px;
    box-shadow: var(--sh);
    padding: 24px 18px;
    text-align: center;
    text-decoration: none !important;
    color: #000 !important;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
    display: block;
}
.bp-sup-cat-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--sh-hover);
}
.bp-sup-cat-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    margin: 0 auto 10px;
}
.bp-sup-cat-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}
.bp-sup-cat-count {
    font-size: 13px;
    opacity: 0.6;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Supplier card grid */
.bp-sup-listings { padding: 40px 0 20px; }
.bp-sup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bp-sup-card {
    background: #fff;
    border: 2px solid #000;
    border-top: 8px solid var(--cat-color, #000);
    border-radius: 14px;
    box-shadow: var(--sh);
    overflow: hidden;
    text-decoration: none !important;
    color: #000 !important;
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.bp-sup-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--sh-hover);
}
.bp-sup-card-image {
    position: relative;
    height: 200px;
    background: #f5f5f2;
    border-bottom: 2px solid #000;
    overflow: hidden;
}
.bp-sup-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bp-sup-card-imgph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cat-color, #B9307A), #000);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.bp-sup-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #F1C165;
    border: 2px solid #000;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
}
.bp-sup-card-body { padding: 20px 22px; }
.bp-sup-card-cat {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cat-color, #B9307A);
    margin-bottom: 8px;
}
.bp-sup-card-title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
}
.bp-sup-card-meta { font-size: 14px; color: #000; margin-bottom: 12px; }
.bp-sup-card-desc { font-size: 15px; line-height: 1.5; color: #000; }

/* Supplier CTA */
.bp-sup-cta {
    padding: 60px 40px 70px;
    background: linear-gradient(135deg, #B9307A 0%, #787094 100%);
    color: #fff;
    text-align: center;
    border: 2px solid #000;
    border-radius: 18px;
    box-shadow: var(--sh-hero);
    margin: 60px 0 30px;
}
.bp-sup-cta .bp-btn {
    margin-bottom: 24px;
}
.bp-sup-cta-fineprint {
    margin-top: 0;
    font-size: 14px;
    opacity: 0.9;
}
.bp-sup-cta h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 14px;
    text-shadow: 3px 3px 0 #000;
    letter-spacing: 0.5px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
}
.bp-sup-cta p {
    color: #fff;
    font-size: 18px;
    max-width: 580px;
    margin: 0 auto 24px;
}
.bp-sup-cta-fineprint {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* Single supplier page */
.bp-single-supplier { padding-bottom: 80px; }
.bp-sup-detail-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 30px;
}
.bp-sup-detail-photo {
    position: relative;
    border: 2px solid #000;
    border-radius: 18px;
    box-shadow: var(--sh-hero);
    overflow: hidden;
}
.bp-sup-detail-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}
.bp-sup-detail-imgph {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cat-color, #B9307A), #000);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.bp-sup-detail-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #F1C165;
    border: 2px solid #000;
    color: #000;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 6px;
}
.bp-sup-detail-cat {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cat-color, #B9307A);
    margin-bottom: 10px;
}
.bp-sup-detail-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 8px;
    line-height: 1.1;
}
.bp-sup-detail-meta {
    font-size: 17px;
    color: #000;
    margin-bottom: 24px;
    font-weight: 600;
}
.bp-sup-detail-body {
    font-size: 17px;
    line-height: 1.65;
    margin-bottom: 30px;
}
.bp-sup-detail-body p { margin-bottom: 14px; }
.bp-sup-detail-contact {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.bp-sup-detail-social {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}
.bp-sup-detail-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #000 !important;
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
}
.bp-sup-detail-social a:hover { color: #B9307A !important; border-color: #B9307A; }

@media (max-width: 1024px) {
    .bp-sup-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .bp-sup-grid { grid-template-columns: 1fr 1fr; }
    .bp-sup-detail-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
    .bp-sup-cat-grid { grid-template-columns: 1fr 1fr; }
    .bp-sup-grid { grid-template-columns: 1fr; }
    .bp-sup-empty-box { padding: 40px 24px; }
    .bp-sup-empty h2 { font-size: 28px; }
    .bp-sup-cta { padding: 40px 24px; }
    .bp-sup-cta h2 { font-size: 26px; }
    .bp-sup-detail-title { font-size: 30px; }
}


/* ===== PRICING CARD (List Your Supplier Business page) ===== */
.bp-pricing-card-wrap {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
}
.bp-pricing-card {
    background: #fff;
    border: 2px solid #000;
    border-top: 8px solid #B9307A;
    border-radius: 18px;
    box-shadow: var(--sh-hero);
    padding: 40px 36px;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.bp-pricing-card h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.3px;
    margin: 0 0 22px;
    color: #000;
    line-height: 1.2;
}
.bp-pricing-price {
    display: block;
    font-size: 56px;
    color: #B9307A;
    line-height: 1;
    margin-top: 10px;
    font-weight: 900;
    letter-spacing: 1px;
}
.bp-pricing-mo {
    font-size: 22px;
    color: #000;
    font-weight: 700;
    letter-spacing: 0;
}
.bp-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    max-width: 360px;
}
.bp-pricing-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: #000;
}
.bp-pricing-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #64D6C3;
    font-weight: 800;
    font-size: 18px;
}
.bp-pricing-foot {
    font-size: 14px;
    color: #000;
    margin: 0;
    opacity: 0.8;
}
.bp-pricing-foot strong { color: #B9307A; }

@media (max-width: 600px) {
    .bp-pricing-card {
        aspect-ratio: auto;
        padding: 32px 24px;
    }
    .bp-pricing-card h2 { font-size: 18px; }
    .bp-pricing-price { font-size: 44px; }
    .bp-pricing-list li { font-size: 14px; }
}

/* Featured card inline icon (next to title) */
.bp-card-title-row--featured {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bp-card-icon--inline {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    object-fit: contain;
    margin-bottom: 0 !important;
    flex-shrink: 0;
}


/* =============================================================================
   COUPONS / PROMOTIONS  (featured venues only) + BALLOON REVIEWS
   ============================================================================= */

/* ---- Coupon card -------------------------------------------------------- */
.bp-coupon {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin: 24px 0;
    background: #fff;
    border: 2px solid #000;
    border-radius: var(--radius);
    box-shadow: var(--sh);
    overflow: hidden;
    position: relative;
}
.bp-coupon-tag {
    position: absolute;
    top: 12px;
    left: -2px;
    background: var(--accent);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px 4px 14px;
    border-radius: 0 6px 6px 0;
}
.bp-coupon-body {
    flex: 1;
    padding: 30px 22px 18px;
}
.bp-coupon-headline {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 6px;
    color: #000;
}
.bp-coupon-details {
    font-size: 14px;
    color: #000;
    margin: 0 0 6px;
}
.bp-coupon-expires {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bp-coupon-code-wrap {
    flex: 0 0 auto;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 18px 20px;
    border-left: 2px dashed #000;
    background: var(--color-surface);
    text-align: center;
}
.bp-coupon-code-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
}
.bp-coupon-code {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--accent);
    padding: 4px 10px;
    border: 2px dashed var(--accent);
    border-radius: 8px;
    background: #fff;
}
@media (max-width: 560px) {
    .bp-coupon { flex-direction: column; }
    .bp-coupon-code-wrap { border-left: 0; border-top: 2px dashed #000; flex-direction: row; min-width: 0; }
}

.screen-reader-text {
    position: absolute !important;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(1px,1px,1px,1px);
    white-space: nowrap;
}
