/*!
 * Bookatable restyle — white + brand green, matching the approved app and
 * website mockups (Inter, pill controls, borderless image-led cards).
 * Loaded last, after the theme stylesheets, so it overrides them.
 * Nothing here changes markup: it is a presentation layer only.
 */

:root {
    --bt-green: #4EB711;
    --bt-green-dark: #3A9A0C;
    --bt-ink: #212121;
    --bt-muted: #6C6C6C;
    --bt-soft: #F5F5F5;
    --bt-mint: #F6FBF3;
    --bt-line: #F0F0F0;
    --bt-outline: #E6E6E6;
    --bt-radius-card: 24px;
    --bt-radius-pill: 999px;
}

/* ---------------------------------------------------------------- base */
body {
    background: #fff;
    color: var(--bt-ink);
    -webkit-font-smoothing: antialiased;
}
a { color: var(--bt-green); }
a:hover { color: var(--bt-green-dark); }
h1, h2, h3, h4, h5, h6, .card-title, .common-title h4 {
    color: var(--bt-ink);
    letter-spacing: -0.02em;
}
p { color: var(--bt-muted); }
.text-green, .main-color { color: var(--bt-green) !important; }

/* -------------------------------------------------------------- header */
.header-card {
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid var(--bt-line);
    padding: 16px 0;
}
.header-logo img { height: 26px; width: auto; }
.header-navbar .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--bt-ink);
    padding: 8px 0;
    margin: 0 18px;
}
.header-navbar .nav-link:hover,
.header-navbar .nav-link.active { color: var(--bt-green); }

/* ------------------------------------------------------------- buttons */
.common-btn,
.btn-login,
.btn-success,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    background: var(--bt-green);
    border: 1.5px solid var(--bt-green);
    border-radius: var(--bt-radius-pill);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    box-shadow: none;
}
.common-btn:hover,
.btn-login:hover,
.btn-success:hover,
.btn-primary:hover {
    background: var(--bt-green-dark);
    border-color: var(--bt-green-dark);
    color: #fff;
}
/* header: Login is the quiet one, Signup the solid one */
.header-rt-card .common-btn {
    min-height: 44px;
    padding: 0 22px;
    font-size: 15px;
}
.header-rt-card .common-btn[href*="login"] {
    background: #fff;
    color: var(--bt-ink);
    border-color: var(--bt-outline);
    font-weight: 700;
}
.header-rt-card .common-btn[href*="login"]:hover {
    border-color: var(--bt-ink);
    color: var(--bt-ink);
}
.menu-btn {
    background: #fff;
    border: 1.5px solid var(--bt-outline);
    border-radius: var(--bt-radius-pill);
    padding: 10px 18px;
    font-weight: 700;
    text-transform: none;
    color: var(--bt-ink);
}
/* quiet / outline actions */
.common-lt-btn,
.btn-modern.btn-outline,
.btn-outline-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    background: #fff;
    border: 1.5px solid var(--bt-outline);
    border-radius: var(--bt-radius-pill);
    color: var(--bt-ink) !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}
.common-lt-btn:hover,
.btn-modern.btn-outline:hover,
.btn-outline-success:hover {
    border-color: var(--bt-green);
    color: var(--bt-green) !important;
    background: var(--bt-mint);
}

/* Book-a-table actions carry the Bookatable logo instead of a label */
.banner-form button.common-btn[type="submit"],
a.common-btn[href*="booking_type=0"] {
    background: #fff;
    border: 2px solid var(--bt-green);
    font-size: 0;
    padding: 0 26px;
    min-height: 52px;
}
.banner-form button.common-btn[type="submit"]:hover,
a.common-btn[href*="booking_type=0"]:hover {
    background: var(--bt-mint);
    border-color: var(--bt-green-dark);
}
.banner-form button.common-btn[type="submit"] i,
a.common-btn[href*="booking_type=0"] i { display: none; }
.banner-form button.common-btn[type="submit"]::after,
a.common-btn[href*="booking_type=0"]::after {
    content: "";
    display: block;
    width: 126px;
    height: 20px;
    background: url("../img/logo.png") center / contain no-repeat;
}

/* --------------------------------------------------------------- forms */
.form-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--bt-ink);
    margin-bottom: 8px;
}
.form-control,
.form-select,
.common-form .form-control {
    min-height: 52px;
    height: auto;
    padding: 12px 20px;
    background: var(--bt-soft);
    border: 1.5px solid var(--bt-soft);
    border-radius: 26px;
    font-size: 15px;
    color: var(--bt-ink);
    box-shadow: none;
}
.form-control::placeholder { color: var(--bt-muted); }
.form-control:focus,
.form-select:focus,
.common-form .form-control:focus {
    background: #fff;
    border-color: var(--bt-green);
    box-shadow: none;
}
textarea.form-control { border-radius: 20px; }
.input-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bt-muted);
}
.form-check-input:checked {
    background-color: var(--bt-green);
    border-color: var(--bt-green);
}
.form-check-input:focus { box-shadow: none; border-color: var(--bt-green); }

/* ---------------------------------------------------------------- hero */
section.banner-sec-new { padding: 56px 0 64px; }
.banner-inner-box {
    background: #fff;
    padding: 0;
    border-radius: 0;
}
.banner-dis h4 {
    font-size: 56px;
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bt-ink);
}
.banner-dis > p {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--bt-muted);
    max-width: 540px;
}
.banner-form {
    background: var(--bt-soft);
    border-radius: var(--bt-radius-card);
    padding: 20px;
    box-shadow: none;
}
.banner-form .form-control,
.banner-form .form-select {
    background: #fff;
    border-color: #fff;
}
.banner-form .form-label { font-size: 13px; }
.banner-img img { max-width: 100%; height: auto; }

/* ------------------------------------------------------------ sections */
.pd-100 { padding: 64px 0; }
.pd-100.pt-0 { padding-top: 0; }
.common-title h4 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.common-title p {
    font-size: 16px;
    color: var(--bt-muted);
    font-weight: 500;
}
.bg-grey { background: var(--bt-mint); }

/* -------------------------------------------------- restaurant cards */
.card.geo-location,
.feature-link .card {
    border: 0;
    border-radius: var(--bt-radius-card);
    background: #fff;
    box-shadow: none;
    overflow: hidden;
}
.feature-img {
    border-radius: var(--bt-radius-card);
    overflow: hidden;
}
.main-slider .feature-img { height: 210px; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-link .card-body { padding: 14px 2px 4px; }
.feature-link .card-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.feature-link .card-body > div:first-child > p {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 28px;
    padding: 0 10px;
    border-radius: 14px;
    background: var(--bt-soft);
    font-size: 13px;
    font-weight: 800;
    color: var(--bt-ink);
}
.feature-link .card-body .fa-star { color: var(--bt-green); }
.location,
.distance-time {
    font-size: 14px;
    font-weight: 500;
    color: var(--bt-muted) !important;
}
.location .fa-location-dot { color: var(--bt-green); margin-right: 4px; }
.feature-link:hover .card-title { color: var(--bt-green); }

/* ------------------------------------------------------- how it works */
.works-box {
    padding: 28px;
    border: 0;
    border-radius: var(--bt-radius-card);
    background: var(--bt-mint);
}
.works-box .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.works-box .icon i { color: var(--bt-green); font-size: 20px; }
.works-box h4 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.works-box p { font-size: 15px; line-height: 1.5; color: var(--bt-muted); margin-bottom: 0; }

/* --------------------------------------------------------- highlights */
.smart-card,
.explore-img,
.news-img,
.resturent-benner .news-img {
    border-radius: var(--bt-radius-card);
    overflow: hidden;
}
.client-slide {
    padding: 24px;
    border: 1px solid var(--bt-line);
    border-radius: var(--bt-radius-card);
    background: #fff;
}
.client-icon img { border-radius: 50%; }
.client-name h5 { font-weight: 800; font-size: 16px; margin-bottom: 0; }

/* ----------------------------------------------------------- accordion */
.accordion-item {
    border: 1px solid var(--bt-line);
    border-radius: 18px !important;
    margin-bottom: 12px;
    overflow: hidden;
}
.accordion-button {
    font-size: 17px;
    font-weight: 700;
    color: var(--bt-ink);
    background: #fff;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    background: var(--bt-mint);
    color: var(--bt-green);
}
.accordion-body { color: var(--bt-muted); font-size: 15px; line-height: 1.6; }

/* ---------------------------------------------------------- swiper nav */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--bt-outline);
    color: var(--bt-ink);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: 14px; font-weight: 800; }
.swiper-button-next:hover,
.swiper-button-prev:hover { border-color: var(--bt-green); color: var(--bt-green); }

/* -------------------------------------------------------------- footer */
.ftr-card {
    background: #fff;
    border-top: 1px solid var(--bt-line);
    padding-top: 48px;
    padding-bottom: 24px;
}
.ftr-card p,
.ftr-card .text-white,
.ftr-card .ftr-links a,
.ftr-card .copy-right-card,
.ftr-card .copy-right-card * {
    color: var(--bt-muted) !important;
}
.ftr-card h4.ftr-hd,
.ftr-card h4.ftr-hd.text-white {
    color: var(--bt-ink) !important;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
}
.ftr-card .ftr-links a:hover { color: var(--bt-green) !important; }
.ftr-logo {
    display: inline-block;
    width: 150px;
    height: 26px;
    background: url("../img/logo.png") left center / contain no-repeat;
    margin-bottom: 14px;
}
.ftr-logo img { visibility: hidden; height: 26px; }
.ftr-social .ftr-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bt-soft);
    color: var(--bt-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
}
.ftr-social .ftr-icon:hover { background: var(--bt-mint); color: var(--bt-green); }
.copy-right-card { border-top: 1px solid var(--bt-line); }

/* ----------------------------------------------------- cookie consent */
.bg-bottom {
    background: #fff !important;
    border: 1px solid var(--bt-line);
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(33, 33, 33, .08);
}
.bg-bottom .btn-success { min-height: 40px; font-size: 14px; }

/* ------------------------------------------------------- auth screens */
.login-inr { border-radius: 28px; overflow: hidden; }
.login-lft { border-radius: 28px; }
.login-form .form-head h4 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 6px;
}
.login-form .form-control { min-height: 54px; border-radius: 27px; }
.btn-login { width: 100%; min-height: 54px; font-size: 16px; }
.forgot-btn { font-weight: 700; color: var(--bt-green); }
.already-text { color: var(--bt-muted); font-weight: 500; }
.social-login .border-top { border-color: var(--bt-line) !important; }
.social-login .btn,
#facebook-signin-button {
    min-height: 48px;
    border-radius: var(--bt-radius-pill) !important;
    border: 1.5px solid var(--bt-outline) !important;
    background: #fff;
    font-weight: 700;
    color: var(--bt-ink);
}
.social-login .btn:hover,
#facebook-signin-button:hover { border-color: var(--bt-ink) !important; }

/* ------------------------------------------------- restaurant details */
.page-title-area { background: var(--bt-mint); border-radius: 0; }
.single-item-action { border-radius: var(--bt-radius-card); }
.shop-details .card,
.menu_img_wrp,
.add-card {
    border: 1px solid var(--bt-line);
    border-radius: 18px;
    box-shadow: none;
}
.menu_img_wrp img { border-radius: 14px; }
.content-wrap .card-title { font-size: 17px; font-weight: 800; }
.content-wrap .price { color: var(--bt-green); font-weight: 800; }
.badge {
    border-radius: var(--bt-radius-pill) !important;
    font-weight: 700;
}
.common-bd-btn {
    border-radius: var(--bt-radius-pill);
    border: 1.5px solid var(--bt-outline);
    color: var(--bt-ink);
    font-weight: 700;
}
.common-bd-btn:hover { border-color: var(--bt-green); color: var(--bt-green); }
.category-link.active,
.category-link:hover { color: var(--bt-green); }
.progress-bar-success, .progress-bar { background-color: var(--bt-green); }

/* ---------------------------------------------------------- responsive */
@media (max-width: 991.98px) {
    .banner-dis h4 { font-size: 38px; }
    .banner-dis > p { font-size: 16px; }
    .common-title h4 { font-size: 28px; }
    .pd-100 { padding: 40px 0; }
    .login-inr { border-radius: 20px; }
    .login-form .form-head h4 { font-size: 28px; }
}
@media (max-width: 575.98px) {
    .banner-dis h4 { font-size: 32px; }
    .banner-form { padding: 16px; border-radius: 20px; }
    .main-slider .feature-img { height: 180px; }
    .banner-form button.common-btn[type="submit"] { width: 100%; }
}

/* ============================================================ refinements */

/* Section headings are ink, as in the mockups; green stays for links/accents */
.common-title h4.text-green,
.common-title h4 { color: var(--bt-ink) !important; }

/* How it works: white cards on the mint section */
.works-box { background: #fff; border: 1px solid var(--bt-line); }
.works-box .icon { width: 48px; height: 48px; }

/* Feature grid: unify the icon chips */
.smart-card { border-color: var(--bt-line) !important; }
.smart-card .ftr-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bt-mint);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.smart-card .ftr-icon img { width: 22px; height: 22px; object-fit: contain; }
.smart-card h4 { font-size: 20px; font-weight: 800; }

/* Auth pages sit on a white canvas; the photo lives inside the card */
.login-signup {
    background: #fff !important;
    min-height: auto;
    padding: 40px 0 64px;
}
.login-signup::after { display: none !important; }
.login-inr {
    box-shadow: none;
    border: 1px solid var(--bt-line);
}
.login-lft .text-info .typing > *,
.login-lft .text-info .typing h1 { text-transform: none; }
.login-lft .text-info .typing h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.06;
}
.login-lft .text-info p { font-size: 15px; line-height: 1.5; }

/* "or continue with" stays lowercase */
.social-login .text-uppercase { text-transform: none !important; }
.social-login .small { font-size: 13px; font-weight: 500; }

/* Page banners */
.page-title-area .title,
.page-title-area h1,
.page-title-area h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Signup role chooser reads as pills, in brand green */
.custom-radios .radio-label {
    height: 44px;
    padding: 0 22px;
    border-radius: var(--bt-radius-pill);
    border: 1.5px solid var(--bt-outline);
    background: #fff;
    color: var(--bt-ink);
    font-size: 14px;
    font-weight: 700;
}
.custom-radios .radio-input:checked + .radio-label {
    background: var(--bt-green);
    border-color: var(--bt-green);
    color: #fff;
}

/* Bootstrap's green never shows through: the brand green is the only accent */
.text-success { color: var(--bt-green) !important; }
.bg-success,
.badge.bg-success { background-color: var(--bt-green) !important; }
.nav-tabs .nav-link.active,
.nav-pills .nav-link.active { color: var(--bt-green); }
.nav-pills .nav-link.active { background: var(--bt-mint); border-radius: var(--bt-radius-pill); }
.page-item.active .page-link {
    background: var(--bt-green);
    border-color: var(--bt-green);
}
.page-link { color: var(--bt-ink); border-radius: 8px; }

/* ==================================================== rebuilt home page  */
/* Hero, search card, chips, featured card and restaurant cards, rebuilt to
   match the approved mockup (the app's visual language on the web). */

.bt-hero { padding: 56px 0 24px; }
.bt-hero-copy { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.bt-badge {
    display: inline-flex;
    align-items: center;
    height: 32px;
    padding: 0 14px;
    border-radius: 16px;
    background: var(--bt-mint);
    color: var(--bt-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.bt-hero-title {
    margin: 0;
    font-size: 58px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--bt-ink);
}
.bt-hero-sub {
    margin: 0;
    max-width: 540px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--bt-muted);
}

/* search card */
.bt-search {
    width: 100%;
    max-width: 640px;
    padding: 20px;
    border-radius: var(--bt-radius-card);
    background: var(--bt-soft);
}
.bt-search .form-group,
.bt-search .mb-3 { margin-bottom: 0 !important; }
.bt-field { position: relative; }
.bt-field > i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bt-ink);
    font-size: 15px;
    z-index: 2;
    pointer-events: none;
}
.bt-field > i ~ * .form-control,
.bt-field > i ~ .form-select,
.bt-field > i ~ * .form-select { padding-left: 46px; }
.bt-search .form-control,
.bt-search .form-select {
    min-height: 52px;
    border-radius: 26px;
    background: #fff;
    border: 1.5px solid #fff;
    font-size: 15px;
    font-weight: 500;
}
.bt-search .form-control:focus,
.bt-search .form-select:focus { border-color: var(--bt-green); }
.bt-guests {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    height: 52px;
    padding: 0 8px 0 18px;
    border-radius: 26px;
    background: #fff;
}
.bt-guests-label { font-size: 15px; font-weight: 700; color: var(--bt-ink); }
.bt-guests .guests-input-group { display: flex; align-items: center; gap: 6px; }
.bt-guests .guest-control {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--bt-soft);
    color: var(--bt-ink);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.bt-guests .guest-control.plus { background: var(--bt-green); color: #fff; }
.bt-guests .form-control {
    width: 44px;
    min-height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: center;
    font-weight: 800;
}
.bt-search-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 4px;
}
.bt-clear {
    height: 52px;
    padding: 0 22px;
    border-radius: 26px;
    border: 0;
    background: #fff;
    color: var(--bt-ink);
    font-size: 15px;
    font-weight: 700;
}
.bt-clear:hover { background: #fff; color: var(--bt-green); }

/* the Bookatable logo stands in for the "Book a table" label */
.bt-logo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 26px;
    border-radius: 26px;
    background: #fff;
    border: 2px solid var(--bt-green);
    font-size: 0;
    line-height: 1;
}
.bt-logo-btn::after {
    content: "";
    display: block;
    width: 126px;
    height: 20px;
    background: url("../img/logo.png") center / contain no-repeat;
}
.bt-logo-btn:hover { background: var(--bt-mint); border-color: var(--bt-green-dark); }

/* cuisine chips */
.bt-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.bt-chip {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 20px;
    background: var(--bt-soft);
    color: var(--bt-ink);
    font-size: 14px;
    font-weight: 600;
}
.bt-chip:hover { background: var(--bt-mint); color: var(--bt-green); }
.bt-chip-on,
.bt-chip-on:hover { background: var(--bt-green); color: #fff; font-weight: 700; }

/* featured card, the app hero on the web */
.bt-hero-card {
    position: relative;
    display: block;
    height: 560px;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bt-ink);
}
.bt-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bt-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, .78) 100%);
}
.bt-featured {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 32px;
    padding: 0 12px;
    border-radius: 16px;
    background: var(--bt-green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.bt-hero-card-body {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bt-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .85);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.bt-hero-name {
    font-size: 38px;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
}
.bt-hero-meta {
    display: flex;
    gap: 16px;
    color: rgba(255, 255, 255, .9);
    font-size: 14px;
    font-weight: 600;
}

/* section head */
.bt-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.bt-section-title {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--bt-ink);
}
.bt-see-all { font-size: 15px; font-weight: 700; white-space: nowrap; }

/* restaurant cards */
.bt-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--bt-ink);
}
.bt-card-photo {
    position: relative;
    display: block;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bt-soft);
}
.bt-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bt-card-rating {
    position: absolute;
    top: 12px;
    left: 12px;
    height: 28px;
    padding: 0 10px;
    border-radius: 14px;
    background: #fff;
    font-size: 12px;
    font-weight: 800;
    color: var(--bt-ink);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.bt-card-rating .fa-star { color: var(--bt-green); font-size: 11px; }
.bt-card-name { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.bt-card-meta { font-size: 14px; color: var(--bt-muted); font-weight: 500; margin-top: -4px; }
.bt-card-meta:empty { display: none; }
.bt-card:hover .bt-card-name { color: var(--bt-green); }

@media (max-width: 991.98px) {
    .bt-hero { padding: 32px 0 8px; }
    .bt-hero-title { font-size: 38px; }
    .bt-hero-sub { font-size: 16px; }
    .bt-hero-card { height: 380px; margin-top: 8px; }
    .bt-hero-name { font-size: 28px; }
    .bt-section-title { font-size: 26px; }
    .bt-search { max-width: none; }
}
@media (max-width: 575.98px) {
    .bt-hero-title { font-size: 32px; }
    .bt-search { padding: 14px; border-radius: 20px; }
    .bt-search-actions { justify-content: stretch; }
    .bt-search-actions .bt-logo-btn { flex: 1; }
}

/* the mockup's card rows have no arrows: the row stays swipeable */
.bt-section .swiper-button-next,
.bt-section .swiper-button-prev { display: none; }
.bt-card-meta {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* the fields sit directly on the soft search card, as in the mockup */
.bt-search .modern-booking-form {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
}
.bt-search .modern-booking-form .form-select {
    height: 52px !important;
    min-height: 52px;
    border-radius: 26px;
    background-color: #fff;
    border: 1.5px solid #fff;
    padding: 10px 18px 10px 46px;
}
.bt-search .modern-booking-form .form-control { padding-left: 46px; }
.bt-search .modern-booking-form .bt-guests .form-control { padding-left: 0; }
.bt-search .modern-booking-form .form-group { margin-bottom: 0; }
.bt-search .modern-booking-form .guest-control { padding: 0; height: 32px; }
.bt-search .bt-field > .mb-3,
.bt-search .bt-field .form-group { margin-bottom: 0 !important; }
/* date and time have no leading icon */
.bt-search .col-6 .form-control,
.bt-search .col-lg-4 .form-control { padding-left: 18px; }

/* ------------------------------------------------ restaurant listing page */
.page-title-area.rest-title-area {
    background: var(--bt-mint) !important;
    padding: 32px 0;
}
.page-title-area.rest-title-area::before,
.page-title-area.rest-title-area::after { display: none; }
.restaurant-search-filter {
    background: #fff;
    border-radius: var(--bt-radius-card);
    padding: 18px;
    box-shadow: none;
    border: 1px solid var(--bt-line);
}
.restaurant-search-filter .form-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--bt-ink);
}
.restaurant-search-filter .form-control,
.restaurant-search-filter .form-select {
    min-height: 50px;
    border-radius: 25px;
    background: var(--bt-soft);
    border-color: var(--bt-soft);
}
.restaurant-search-filter .btn,
.restaurant-search-filter button[type="submit"] {
    min-height: 50px;
    border-radius: var(--bt-radius-pill);
    background: var(--bt-green);
    border-color: var(--bt-green);
    font-weight: 800;
}
/* filter rail + result cards */
.applied-filters,
.filter-sidebar,
.shop-sidebar {
    border: 1px solid var(--bt-line);
    border-radius: var(--bt-radius-card);
}
.form-check-input:checked { background-color: var(--bt-green); border-color: var(--bt-green); }
