/* === PROMĚNNÉ === */
:root {
  --color-black: #000;
  --color-dark: #111;
  --color-dark-bg: #0a0a0a;
  --color-grey: #828485;
  --color-white: #fff;
  --color-text-muted: #ccc;
  --color-text-dim: #444;
  --color-border: #222;
  --color-light-bg: #f3f4f6;
  --font-main: "Montserrat", sans-serif;
  --transition: 0.3s;
  --transition-slow: 0.4s;
}

/* === ZÁKLAD === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-main);
  background-color: var(--color-dark);
  color: var(--color-white);
  line-height: 1.5;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: inherit;
}

/* === ANIMACE === */
.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.reveal.fade-up {
  transform: translateY(40px);
}
.reveal.fade-down {
  transform: translateY(-140px);
}
.reveal.fade-in {
  transform: translateY(0);
}
.reveal.scale-up {
  transform: scale(0.9);
}
.reveal.reveal-visible {
  opacity: 1;
  transform: none;
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}
.delay-300 {
  transition-delay: 0.3s;
}
.delay-400 {
  transition-delay: 0.4s;
}
.delay-500 {
  transition-delay: 0.5s;
}

/* === CHYTRÉ MENU (SCROLL NAHORU) === */
.smart-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 997;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.3, 1, 0.3, 1);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.8);
}
.smart-header.show {
  transform: translateY(0);
}
.smart-logo {
  height: 45px;
  width: auto;
}
.smart-hamburger {
  font-size: 2.2rem;
  color: var(--color-white);
  cursor: pointer;
  transition: color var(--transition);
}
.smart-hamburger:hover {
  color: var(--color-grey);
}

/* === HERO SEKCE === */
.hero-wrapper {
  position: relative;
  height: 60vh;
  min-height: 400px;
  background-color: var(--color-dark-bg);
  display: flex;
  align-items: center;
  z-index: 20;
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 45%;
  padding-left: 5%;
}
.main-logo {
  max-width: 100%;
  height: auto;
  filter: invert(1) brightness(2);
  mix-blend-mode: screen;
}

/* === HERO FOTKA S PNG MASKOU === */
.hero-image-clip {
  position: absolute;
  top: -12%;
  right: 5%;
  width: 1240px;
  height: 133%;
  background-image: url("obrazky/home-foto.webp");
  background-size: cover;
  background-position: center;
  z-index: 40;
  -webkit-mask-image: url("obrazky/hero-bowling.png");
  mask-image: url("obrazky/hero-bowling.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: right center;
  mask-position: right center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  filter: drop-shadow(-15px 15px 25px rgba(0, 0, 0, 0.6));
}

@media (max-width: 1920px) {
  .hero-image-clip {
    width: 900px;
    right: 5%;
    top: -12%;
  }
}
@media (max-width: 1600px) {
  .hero-image-clip {
    width: 700px;
    right: 5%;
    top: -12%;
    height: 125%;
  }
}
@media (max-width: 1300px) {
  .hero-image-clip {
    width: 550px;
    right: 5%;
    top: -12%;
    height: 120%;
  }
}
@media (max-width: 1024px) {
  .hero-image-clip {
    width: 450px;
    right: 5%;
  }
}

.hamburger-menu {
  position: absolute;
  top: 30px;
  right: 40px;
  z-index: 100;
  font-size: 2.2rem;
  color: var(--color-white);
  cursor: pointer;
  transition: color var(--transition);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.8));
}
.hamburger-menu:hover {
  color: var(--color-grey);
}

/* === BOČNÍ VÝSUVNÉ MENU === */
#menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
#menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

#side-nav {
  position: fixed;
  top: 0;
  right: -450px;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--color-dark-bg);
  border-left: 1px solid #222;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
}
#side-nav.open {
  right: 0;
}
#side-nav a {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 15px 0;
  transition: color var(--transition);
  color: var(--color-white);
}
#side-nav a:hover {
  color: var(--color-grey);
}
#side-nav .close-btn {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  color: var(--color-white);
  transition: color var(--transition);
}
#side-nav .close-btn:hover {
  color: var(--color-grey);
}

/* === STYLY WEBU === */
.container-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 40px;
  text-align: center;
}

/* === DENNÍ MENU === */
.denni-menu-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: var(--color-black);
  margin-top: 0;
  margin-bottom: 0;
  z-index: 10;
}
.denni-menu-header {
  position: relative;
  background-color: var(--color-white);
  padding: 15px 20px 0;
  text-align: center;
  overflow: hidden;
  z-index: 5;
}
.contact-icons-bar {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  padding-left: 3%;
  margin-bottom: 10px;
  position: relative;
  z-index: 10;
}
.icon-circle {
  width: 40px;
  height: 40px;
  background-color: var(--color-dark);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition) ease;
}
.icon-circle:hover {
  background-color: var(--color-grey);
  color: var(--color-white);
  transform: translateY(-3px);
}

.denni-menu-title {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  text-transform: lowercase;
  color: var(--color-black);
  line-height: 0.62;
  margin: 0;
  letter-spacing: -3px;
  position: relative;
  top: 2px;
}
.denni-menu-content {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 80px 20px 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.dm-date {
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.dm-soup {
  font-size: 1.3rem;
  margin-bottom: 50px;
  color: #ddd;
}
.dm-soup strong {
  color: var(--color-white);
  font-weight: 800;
}
.dm-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 22px;
  font-size: 1.3rem;
  gap: 15px;
}
.dm-number {
  font-weight: 900;
  margin-right: 12px;
  font-size: 1.4rem;
}
.dm-name {
  font-weight: 400;
  color: var(--color-text-muted);
}
.dm-price {
  font-weight: 900;
  font-size: 1.45rem;
  white-space: nowrap;
}
.dm-footer {
  margin-top: 70px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #bbb;
}
.dm-footer strong {
  font-weight: 800;
  color: var(--color-white);
}
.denni-menu-scallops {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: radial-gradient(20px 8px at 50% 100%, #fff 98%, transparent 100%);
  background-size: 250px 8px;
  background-repeat: repeat-x;
  z-index: 10;
}

/* === NOVÝ STYL MENU A NOVINEK === */
.nabidka-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 100px 20px 80px;
  margin-bottom: 0;
  z-index: 5;
}
.nabidka-header {
  text-align: center;
  margin-bottom: 60px;
}
.nabidka-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: lowercase;
  color: var(--color-black);
  line-height: 0.8;
  letter-spacing: -2px;
  margin-bottom: 30px;
}
.nabidka-subtitle {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--color-black);
}

.nabidka-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nabidka-item {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2vw, 25px);
}

/* SPOLEČNÉ VLASTNOSTI PRO FOTKU I IKONU */
.nabidka-img,
.nabidka-img-icon {
  flex: 0 0 clamp(65px, 6vw, 85px);
  width: clamp(65px, 6vw, 85px);
  height: clamp(65px, 6vw, 85px);
  margin: 0;
  padding: 0;
  border-radius: 50%;
}

/* SPECIFICKÉ PRO FOTKU V NOVINKÁCH (<img> tag) */
img.nabidka-img {
  object-fit: contain;
  border: none;
  display: block;
  background-color: transparent;
}

/* SPECIFICKÉ PRO FOTKU VE SKRYTÝCH ZÁLOŽKÁCH (<div> tag) */
div.nabidka-img {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

/* SPECIFICKÉ PRO IKONU (když fotka chybí) */
.nabidka-img-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--color-dark);
}

.nabidka-content {
  flex: 1;
}

.nabidka-name-row {
  font-weight: 900;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  text-transform: uppercase;
  color: var(--color-black);
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
}
.nabidka-number {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  margin-right: 6px;
}
.nabidka-desc {
  font-size: clamp(0.85rem, 1.1vw, 1.05rem);
  color: var(--color-text-dim);
  line-height: 1.4;
}
.nabidka-price-circle {
  width: clamp(45px, 4.5vw, 60px);
  height: clamp(45px, 4.5vw, 60px);
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: clamp(0.95rem, 1.4vw, 1.2rem);
  flex-shrink: 0;
}

/* === FILTRY KATEGORIÍ (STICKY EFEKT) === */
.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid #f3f4f6;
}
.filter-btn {
  background: var(--color-white);
  border: 2px solid var(--color-dark);
  color: var(--color-dark);
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition) ease;
}
.filter-btn:hover {
  background: #f3f4f6;
}
.filter-btn.active {
  background: var(--color-dark);
  color: var(--color-white);
}

.carousel-dots {
  display: none;
}
.center-btn {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 40px;
}
.btn-primary {
  display: inline-block;
  background: transparent;
  color: var(--color-grey);
  border: 2px solid var(--color-grey);
  padding: 15px 40px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 1rem;
  font-family: inherit;
  border-radius: 4px;
}
.btn-primary:hover {
  background: var(--color-grey);
  color: var(--color-dark);
}
.btn-dark {
  color: var(--color-black);
  border-color: var(--color-black);
  font-size: 1.1rem;
  padding: 18px 50px;
}
.btn-dark:hover {
  background: var(--color-black);
  color: var(--color-white);
}

#cele-menu-kontejner {
  display: none;
  margin-top: 60px;
  padding-top: 0;
}
.menu-category-block {
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === BOWLING === */
.bowling-header-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: var(--color-white);
  text-align: center;
  padding: 0;
  margin-top: -2px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bowling-title-mask {
  width: 100%;
  text-align: center;
  font-size: clamp(6rem, 20vw, 25rem);
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 auto;
  line-height: 0.72;
  letter-spacing: -0.06em;
  background-image: url("obrazky/bowling.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  top: 6px;
}
.bowling-section-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: var(--color-black);
  padding: 80px 20px;
  color: var(--color-white);
  margin-bottom: 0;
}
.reservation-info-text {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 35px;
  line-height: 1.6;
}
.phone-contact-wrapper {
  margin-bottom: 20px;
}
.phone-contact-wrapper-last {
  margin-bottom: 0;
}
.phone-contact-link {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  transition: color var(--transition);
}
.phone-contact-link:hover {
  color: var(--color-grey);
}
.phone-contact-icon {
  color: var(--color-grey);
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.bowling-intro-stats {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin: 0 auto 70px;
  text-align: center;
  max-width: 1000px;
  border-bottom: 1px solid #222;
  padding-bottom: 60px;
}
.bw-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bw-stat-val {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
}
.bw-stat-icon {
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 5px;
}
.bw-stat-label {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-white);
  margin-top: 10px;
  margin-bottom: 2px;
}
.bw-stat-desc {
  font-size: 0.85rem;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bowling-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.bw-price-list h3 {
  font-size: 1.3rem;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 25px;
  padding-bottom: 5px;
}
.bw-item {
  display: flex;
  align-items: flex-end;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.bw-name {
  font-weight: 400;
  color: var(--color-white);
}
.bw-dots {
  flex-grow: 1;
  border-bottom: 2px dotted #444;
  margin: 0 15px;
  position: relative;
  top: -5px;
  opacity: 0.8;
}
.bw-price {
  font-weight: 900;
  font-size: 1.2rem;
  white-space: nowrap;
  color: var(--color-white);
}

.reservation-form {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  border: none;
}
.reservation-form h3 {
  font-size: 1.6rem;
  color: var(--color-white);
  margin-bottom: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

/* === BLOK O NÁS === */
.onas-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: var(--color-white);
  padding: 100px 20px 0;
  z-index: 5;
}
.onas-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.onas-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.onas-bubble {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 40px 35px;
  border-radius: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.onas-images-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: -200px;
  position: relative;
  z-index: 10;
}
.onas-circle {
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  background-color: var(--color-dark);
}
.circle-1 {
  width: clamp(250px, 28vw, 450px);
  height: clamp(250px, 28vw, 450px);
  z-index: 2;
  margin-right: -8%;
  transform: translateY(30px);
  background-image: url("obrazky/home-foto.webp");
}
.circle-2 {
  width: clamp(280px, 34vw, 550px);
  height: clamp(280px, 34vw, 550px);
  z-index: 3;
  background-image: url("obrazky/bowling.webp");
}
.circle-3 {
  width: clamp(250px, 28vw, 450px);
  height: clamp(250px, 28vw, 450px);
  z-index: 1;
  margin-left: -8%;
  transform: translateY(30px);
  background-image: url("obrazky/posezeni.webp");
}

/* === KONTAKT A MAPA === */
.contact-section {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--color-black);
  padding: 300px 20px 80px;
  border-top: none;
  margin-bottom: 0;
  z-index: 1;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-box {
  background: transparent;
  padding: 0;
  border: none;
}
.contact-box h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--color-grey);
  padding-bottom: 12px;
  display: inline-block;
}
.contact-box p {
  color: var(--color-text-muted);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.05rem;
  line-height: 1.5;
}
.contact-box p i {
  color: var(--color-grey);
  margin-top: 4px;
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}
.contact-box p strong {
  color: var(--color-white);
  font-weight: 700;
}

/* NOVÁ TŘÍDA PRO ODKAZY V KONTAKTECH */
.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
.contact-link:hover {
  color: var(--color-grey);
}

.hours-list {
  list-style: none;
  padding: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: var(--color-text-muted);
  border-bottom: 1px dashed #222;
  padding-bottom: 10px;
  font-size: 1.05rem;
}
.hours-list li span:last-child {
  color: var(--color-white);
  font-weight: 900;
}
.map-container {
  width: 100%;
  height: 220px;
  background-color: var(--color-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  border: 1px solid var(--color-border);
}

footer {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--color-black);
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid #111;
}
footer p {
  color: #555;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === NÁPOJE - 2 SLOUPCE === */
.accordion-container-split {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .accordion-container-split {
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 30px;
  }
}
.drink-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion-item {
  background: var(--color-white);
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid #eee;
}
.accordion-header {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-white);
  transition: background-color var(--transition);
}
.accordion-header:hover {
  background-color: #f9fafb;
}
.accordion-icon {
  transition: transform 0.4s ease;
  color: var(--color-grey);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease-in-out,
    padding 0.5s ease-in-out,
    opacity 0.3s ease-in-out;
  background: var(--color-white);
  padding: 0 25px;
  opacity: 0;
}
.accordion-item.open .accordion-content {
  max-height: 2000px;
  padding-top: 15px;
  padding-bottom: 25px;
  opacity: 1;
}
.accordion-item.open .accordion-icon {
  transform: rotate(180deg);
}
.drink-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #e5e7eb;
}
.drink-row:last-child {
  border-bottom: none;
}
.drink-info {
  flex-grow: 1;
  padding-right: 15px;
}
.drink-name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 1.05rem;
}
.drink-desc {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 400;
}
.drink-meta {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}
.drink-measure {
  color: #9ca3af;
  font-size: 0.9rem;
  margin-right: 15px;
}
.drink-price {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--color-dark);
}

/* === RESPONZIVITA (MOBILNÍ ZOBRAZENÍ) === */
@media (max-width: 1100px) {
  .nabidka-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .onas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .smart-header {
    padding: 0 20px;
    height: 60px;
  }
  .smart-logo {
    height: 35px;
  }
  .smart-hamburger {
    font-size: 2rem;
  }
  .menu-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 15px 20px;
    margin-left: -20px;
    margin-right: -20px;
    scrollbar-width: none;
  }
  .menu-filters::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    white-space: nowrap;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 20px;
    padding-bottom: 0;
    height: auto;
    min-height: unset;
    overflow: hidden;
  }
  .hero-content {
    width: 100%;
    text-align: left;
    padding-left: 5px;
    padding-right: 70px;
  }
  .main-logo {
    width: 100%;
    max-width: 280px;
    height: auto;
    display: block;
    margin-bottom: -10px;
  }
  .hamburger-menu {
    top: 32px;
    right: 20px;
    font-size: 2rem;
  }

  .hero-image-clip {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: 160px;
    right: auto;
    top: auto;
    margin-top: 15px;
    margin-bottom: 0;
    z-index: 10;
    border-radius: 0;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    filter: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .contact-icons-bar {
    justify-content: center;
    padding-left: 0;
    margin-bottom: 25px;
  }
  .denni-menu-scallops {
    display: none;
  }
  .denni-menu-content {
    padding: 50px 20px;
  }
  .dm-date {
    font-size: 1.25rem;
  }
  .dm-soup {
    font-size: 1.15rem;
    margin-bottom: 35px;
  }
  
  /* OPRAVA ZALOMENÍ MENU NA MOBILU: */
  .dm-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 1.15rem;
    align-items: flex-end;
    margin-bottom: 20px;
  }
  .dm-number {
    font-size: 1.25rem;
  }
  .dm-price {
    font-size: 1.25rem;
    flex-shrink: 0;
    white-space: nowrap;
    text-align: right;
  }
  .dm-name {
    flex-shrink: 1;
    flex-grow: 1;
    line-height: 1.3;
    padding-bottom: 2px;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  /* KONEC OPRAVY */

  .dm-footer {
    font-size: 1.05rem;
    margin-top: 50px;
  }

  .nabidka-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #novinky-grid {
    grid-template-columns: none;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 40px);
    column-gap: 20px;
    row-gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    margin-left: -20px;
    padding: 0 20px;
  }
  #novinky-grid::-webkit-scrollbar {
    display: none;
  }
  #novinky-grid .nabidka-item {
    scroll-snap-align: center;
  }

  #onas-carousel {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc(100vw - 40px);
    column-gap: 20px;
    row-gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100vw;
    margin-left: -20px;
    padding: 0 20px;
  }
  #onas-carousel::-webkit-scrollbar {
    display: none;
  }
  #onas-carousel .onas-col {
    scroll-snap-align: center;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  #onas-carousel .onas-bubble {
    box-shadow: none !important;
    border-radius: 20px !important;
    margin: 0;
    height: 100%;
    padding: 35px 25px;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
  }
  .carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e5e7eb;
    cursor: pointer;
    transition: all var(--transition) ease;
  }
  .carousel-dots .dot.active {
    background-color: var(--color-grey);
    transform: scale(1.2);
  }

  .nabidka-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .btn-dark {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .bowling-header-wrapper {
    background: var(--color-white) !important;
    margin-top: 0 !important;
    padding: 0 !important;
  }
  .bowling-title-mask {
    font-size: 18.5vw !important;
    letter-spacing: -0.02em !important;
    line-height: 0.72 !important;
    top: 6px !important;
    position: relative !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    background-image: url("obrazky/bowling.webp") !important;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center !important;
    -webkit-text-fill-color: transparent !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
    mix-blend-mode: normal !important;
    background-color: transparent !important;
    box-shadow: none !important;
  }
  .bowling-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .bowling-intro-stats {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .onas-images-container {
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: -100px;
  }
  .onas-circle {
    width: 300px;
    height: 300px;
    border: none;
  }
  .circle-1 {
    margin-right: 0;
    margin-bottom: -50px;
    transform: none;
  }
  .circle-2 {
    width: 350px;
    height: 350px;
    margin-bottom: -50px;
    z-index: 3;
  }
  .circle-3 {
    display: none !important;
  }

  .contact-section {
    padding-top: 250px;
    padding-bottom: 40px;
  }
  .contact-grid {
    gap: 50px;
  }

  .drink-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .drink-meta {
    width: 100%;
    justify-content: space-between;
  }
  .drink-measure {
    margin-right: 0;
  }
}