/* Bogeys Tour Pages - Version 1.0.4b targeted slug fix */

/* Force tour cards to stay 3 across on desktop */
.bogeys-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

/* Keep food categories visible and responsive */
.bogeys-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

/* Basic support styles if theme/plugin CSS is missing */
.bogeys-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}

.bogeys-hero {
    background: #111;
    color: #fff;
    border-radius: 18px;
    padding: 48px 32px;
    margin-bottom: 32px;
}

.bogeys-eyebrow {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .85rem;
    font-weight: 700;
    opacity: .8;
}

.bogeys-hero h1,
.bogeys-tour-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.05;
    margin: .25em 0;
}

.bogeys-hero-actions,
.bogeys-card-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.bogeys-button,
.bogeys-button-small {
    display: inline-block;
    text-decoration: none;
    border-radius: 999px;
    background: #111;
    color: #fff;
    padding: 12px 20px;
    font-weight: 700;
}

.bogeys-button-light,
.bogeys-outline {
    background: #fff;
    color: #111;
    border: 1px solid #111;
}

.bogeys-hero .bogeys-button-light {
    border-color: #fff;
}

.bogeys-button-small {
    font-size: .9rem;
    padding: 9px 14px;
}

.bogeys-card {
    border: 1px solid #ddd;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.bogeys-card-image {
    display: block;
    height: 190px;
    background-size: cover;
    background-position: center;
}

.bogeys-card-body {
    padding: 18px;
}

.bogeys-card-body h3 {
    margin-top: 0;
}

.bogeys-card-body h3 a {
    text-decoration: none;
    color: inherit;
}

.bogeys-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 14px 0;
}

.bogeys-meta span {
    background: #f3f3f3;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .85rem;
}

.bogeys-tour-hero {
    min-height: 420px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    color: #fff;
    padding: 42px;
    margin-bottom: 32px;
}

.bogeys-tour-hero-content {
    max-width: 760px;
}

.bogeys-two-col {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 32px;
    align-items: start;
}

.bogeys-booking-box {
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 22px;
    background: #fafafa;
    position: sticky;
    top: 24px;
}

.bogeys-checklist {
    padding-left: 20px;
}

.bogeys-checklist li {
    margin-bottom: 8px;
}

.bogeys-category-card {
    display: block;
    text-decoration: none;
    color: #111;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 16px;
    background: #fff;
    font-weight: 700;
}

.bogeys-category-card:hover {
    background: #f5f5f5;
}

.bogeys-gallery {
    margin-top: 34px;
}

.bogeys-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.bogeys-gallery-grid div {
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 14px;
}

.bogeys-back {
    margin: 32px 0;
}

/* Tablet and phone protection */
@media (max-width: 900px) {
    .bogeys-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bogeys-two-col {
        grid-template-columns: 1fr;
    }

    .bogeys-booking-box {
        position: static;
    }
}

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

    .bogeys-tour-hero {
        min-height: 320px;
        padding: 28px;
    }
}
bogeys-video {
    margin: 32px auto;
    width: 100%;
    max-width: 600px;
}

.bogeys-video video {
    display: block;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center center;
    border-radius: 18px;
    background: #000;
}