/* =========================================================
   TYPOGRAFIE – MENU POLOŽKY
========================================================= */
.menu-item-name,
.menu-item-price,
.menu-item-weight {
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.menu-item-name,
.menu-item-price {
    font-weight: 700;
}

.menu-item-weight {
    font-size: 0.85rem;
    font-weight: 600;
    color: #444;
}

/* =========================================================
   KARTY RESTAURACÍ – ZÁKLAD
========================================================= */
.menu-card {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform .15s ease, box-shadow .15s ease;
    max-width: 100%;
}

.menu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

/* =========================================================
   HLAVIČKA KARTY
========================================================= */
.menu-card-header {
    position: relative;
    z-index: 1;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    box-sizing: border-box;
}

.menu-card-header-left {
    flex-grow: 1;
    min-width: 0;
}

/* =========================================================
   OBLÍBENÉ + SDÍLENÍ – KLIKATELNOST
========================================================= */
.menu-card-header-right a,
.menu-card-header-right button {
    position: relative;
    z-index: 20;
    pointer-events: auto;
}

.menu-card::before,
.menu-card::after,
.menu-card-header::before,
.menu-card-header::after {
    pointer-events: none;
}

/* =========================================================
   FAVORITES
========================================================= */
.fav-link {
    font-size: .8rem;
    text-decoration: none;
    white-space: nowrap;
}

.fav-icon {
    margin-right: 0.25rem;
}

.fav-label-long {
    display: inline;
}

.fav-label-short {
    display: none;
}

/* =========================================================
   SDÍLET
========================================================= */
.menu-card-header-right .js-share-btn {
    border-radius: 999px;
    padding-inline: 0.9rem;
    box-shadow: 0 0 0 1px rgba(255,255,255,.5);
}

.card.border-primary .menu-card-header-right .js-share-btn {
    box-shadow: 0 0 0 1px rgba(255,255,255,.8);
    font-weight: 600;
}

/* =========================================================
   MENU POLOŽKY
========================================================= */
.menu-card-body {
    padding: .9rem 1.1rem 1.1rem;
}

.menu-item-row {
    font-size: .95rem;
}

.menu-item-row .item-name {
    font-weight: 600;
}

.menu-item-row .item-price {
    font-weight: 600;
    white-space: nowrap;
    margin-left: .75rem;
}

/* =========================================================
   ⭐ HODNOCENÍ RESTAURACÍ – FINÁLNÍ VERZE
========================================================= */
.rating-stars {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
}

.rating-stars .rating-star {
    cursor: pointer;
    margin-right: 2px;
    transition: transform .1s ease;
    color: #d9d9d9;
}

.rating-stars .rating-star.rating-star-full {
    color: #faad14;
}

.rating-stars .rating-star.rating-star-half {
    color: #ffd666;
}

.rating-stars .rating-star.rating-star-empty {
    color: #d9d9d9;
}

.rating-stars .rating-star:hover {
    transform: scale(1.1);
}

.rating-star-disabled {
    cursor: default;
    opacity: .6;
}

/* =========================================================
   LAYOUTY
========================================================= */
.home-layout-A .restaurant-card-wrapper:first-child {
    flex: 0 0 100%;
    max-width: 100%;
}

.home-layout-C-container {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 768px) {
    .home-layout-C-container {
        column-count: 2;
    }
}

@media (min-width: 1200px) {
    .home-layout-C-container {
        column-count: 3;
    }
}

.home-layout-C-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

/* =========================================================
   MOBILNÍ ZOBRAZENÍ
========================================================= */
@media (max-width: 400px) {
    .menu-card-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }

    .menu-card-header-right {
        align-items: flex-start;
        text-align: left;
    }

    .fav-label-long {
        display: none;
    }

    .fav-label-short {
        display: inline;
    }
}

/* =========================================================
   DARK MODE
========================================================= */
body.dark-mode {
    background-color: #121212;
    color: #f5f5f5;
}

body.dark-mode .navbar,
body.dark-mode footer {
    background-color: #1f1f1f;
}

body.dark-mode .card {
    background-color: #1f1f1f;
    border-color: #333;
}

body.dark-mode .text-muted {
    color: #b5b5b5;
}

/* =========================================================
   COOKIE BANNER
========================================================= */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30,30,30,0.95);
    color: #fff;
    padding: 18px 22px;
    z-index: 9999;
    display: none;
}

#cookie-banner button {
    background-color: #212529;
    color: #fff;
    font-weight: 600;
}

.ad-slot {
    margin: 20px 0;
}

@media print {
    .ad-slot {
        display: none !important;
    }
}

.autocomplete-box {
  position: absolute;
  background: #fff;
  border: 1px solid #ddd;
  z-index: 1000;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
}

.autocomplete-box div {
  padding: 6px 10px;
  cursor: pointer;
}

.autocomplete-box div:hover {
  background: #f1f1f1;
}

.restaurant-link { color: inherit; text-decoration: none; }
.restaurant-link:hover { color: inherit; text-decoration: none; }
.restaurant-link .restaurant-title { color: inherit; }
