/* T ZERO theme – from Angular variables.scss + NoirPro (playground global.scss) */

/* NoirPro – same as playground src/global.scss */
@font-face {
  font-family: 'NoirProSemi';
  src: url('../assets/fonts/NoirPro-SemiBold.woff2') format('woff2');
}
@font-face {
  font-family: 'NoirProReg';
  src: url('../assets/fonts/NoirPro-Regular.woff2') format('woff2');
}
@font-face {
  font-family: 'NoirProLight';
  src: url('../assets/fonts/NoirPro-Light.woff2') format('woff2');
}
@font-face {
  font-family: 'NoirProMed';
  src: url('../assets/fonts/NoirPro-Medium.woff2') format('woff2');
}

:root {
  --tzero-primary: #202020;
  --tzero-primary-rgb: 26, 26, 26;
  --tzero-secondary: #23cdca;
  --tzero-secondary-rgb: 35, 205, 202;
  --tzero-tertiary: #f2faf7;
  --tzero-light: #f6f8fc;
  --tzero-dark: #2f2f2f;
  --tzero-medium: #5f5f5f;
  --tzero-medium-rgb: 95, 95, 95;
  --tzero-danger: #ec7355;
}

body {
  background-color: var(--tzero-light);
  color: var(--tzero-dark);
  font-family: 'NoirProReg', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Main content: centred in the middle of the page */
#main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#main-content > * {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
#main-content > .tzero-swiper-wrap {
  max-width: none;
}

/* Header */
.tzero-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: var(--tzero-light);
  font-family: 'NoirProReg', sans-serif;
}

.tzero-header .navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (max-width: 991.98px) {
  .tzero-header .navbar {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
}

.tzero-navbar-toggler.navbar-toggler {
  border: none;
  padding: 0.35rem;
}
@media (max-width: 991.98px) {
  .tzero-navbar-toggler.navbar-toggler {
    transform: scale(0.7);
    transform-origin: center;
  }
}

/* Navbar: logo left, links center, social right */
.tzero-navbar-inner {
  display: flex;
  align-items: center;
  width: 80%;
}
.tzero-navbar-inner .navbar-brand { flex-shrink: 0; }
.tzero-nav-center {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
@media (min-width: 992px) {
  .tzero-nav-center {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .tzero-nav-spacer {
    flex: 1 1 0;
    min-width: 0;
  }
  .tzero-nav-links {
    flex: 0 0 auto;
    justify-content: center;
  }
  .tzero-nav-social {
    flex: 0 0 auto;
  }
}
@media (max-width: 991.98px) {
  .tzero-navbar-inner { width: 100%; }
  .tzero-nav-center { flex-direction: column; }
  .tzero-nav-spacer { display: none; }
  .tzero-nav-social { margin-top: 0.5rem; }
}

.tzero-logo {
  display: block;
  width: 80px;
  height: 80px;
}
.tzero-brand-wrap {
  gap: 0.45rem;
  text-decoration: none;
}
.tzero-brand-text {
  font-family: 'NoirProMed', sans-serif;
  font-size: 1rem;
  color: var(--tzero-primary);
  white-space: nowrap;
  line-height: 1;
}
.tzero-mobile-slide-title {
  display: none;
}
@media (max-width: 991.98px) {
  .tzero-mobile-slide-title {
    display: block;
    flex: 1 1 auto;
    text-align: center;
    font-family: 'NoirProMed', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--tzero-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.5rem;
  }
  .tzero-logo {
    width: 50px !important;
    height: 50px !important;
  }
}

/* Nav link + playground-style animated underline (.button / .selected) */
.tzero-nav-link {
  color: var(--tzero-dark) !important;
  font-family: 'NoirProReg', sans-serif !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none !important;
}
.tzero-nav-link:hover {
  color: var(--tzero-primary) !important;
}

/* Underline: animate only on hover; selected shows border without animation */
.tzero-nav-link.button {
  position: relative;
  display: inline-block;
  padding-left: 4px;
  padding-right: 8px;
}
.tzero-nav-link.button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.4px;
  background-color: rgba(var(--tzero-medium-rgb, 95, 95, 95), 0.8);
  transition: width 0.5s ease-in-out;
}
.tzero-nav-link.button:hover::after {
  width: 100%;
}
.tzero-nav-link.button.selected::after {
  width: 100%;
  transition: none;
}
/* When hovering another link, hide the selected link’s underline so only the hovered one shows */
.tzero-nav-links:has(.tzero-nav-link:hover) .tzero-nav-link.selected:not(:hover)::after {
  width: 0;
  transition: none;
}
.tzero-nav-link.button.selected {
  color: rgba(var(--tzero-medium-rgb, 95, 95, 95), 0.9) !important;
}

/* Mobile: full-page menu offcanvas (right) */
@media (max-width: 991.98px) {
  .tzero-nav-offcanvas.offcanvas {
    width: 40%;
    max-width: 40%;
    height: 100vh;
    border: none;
    border-radius: 0;
    background: var(--tzero-light);
  }
  .tzero-nav-offcanvas-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .tzero-nav-offcanvas-header .btn-close {
    font-size: 1.25rem;
  }
  .tzero-nav-offcanvas-body {
    padding: 1.5rem;
  }
  .tzero-nav-offcanvas-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  .tzero-nav-offcanvas-links .nav-link {
    font-size: 1.1rem;
    padding: 0.6rem 0;
  }
}

/* Home: full-height swiper */
.tzero-swiper-wrap {
  height: 100vh;
  padding-top: 56px; /* under fixed header */
  padding-bottom: 70px; /* space for mobile Meniu button */
}
@media (min-width: 992px) {
  .tzero-swiper-wrap { padding-bottom: 0; }
}

.tzero-swiper-wrap .swiper {
  height: 100%;
}

.tzero-swiper-wrap .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tzero-light);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tzero-swiper-wrap .swiper-slide::-webkit-scrollbar {
  display: none;
}

.tzero-swiper-wrap .swiper-pagination-bullet {
  background: #fff;
  border: 1.5px solid #000;
  opacity: 1;
}

.tzero-swiper-wrap .swiper-pagination-bullet-active {
  background: #000;
}

/* Home swiper: slide transition like playground (scale/depth + fade) */
#home-swiper .swiper-slide .slide-content {
  position: relative;
  transform: perspective(1000px) translateZ(-300px);
  opacity: 0;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}
#home-swiper .swiper-slide-active .slide-content {
  transform: perspective(1000px) translateZ(0);
  opacity: 1;
}

/* Slide content */
.slide-content {
  max-width: 900px;
  padding: 2rem 1.5rem;
}

.slide-content h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-family: 'NoirProMed', sans-serif;
  color: var(--tzero-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slide-content p {
  font-family: 'NoirProReg', sans-serif;
  color: var(--tzero-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Contact slide – styles from playground contact.page.scss */
.slide-content-contact {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  max-width: 900px;
  width: 100%;
  padding-left: 14px;
  padding-right: 14px;
  min-height: 100%;
  box-sizing: border-box;
}
.contact-slide-body {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  flex: 1 1 auto;
}
.contact-slide-footer {
  margin-top: auto;
  width: 100%;
  flex-shrink: 0;
}
.slide-content-contact h1,
.slide-content-contact .contact-input,
.slide-content-contact .contact-label,
.slide-content-contact .contact-submit {
  font-family: 'NoirProReg', sans-serif !important;
}
.tzero-contact-form {
  padding-left: 12px;
  padding-right: 12px;
}
.contact-content-container {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 7 1 0;
  min-width: 0;
  order: 1;
}
.contact-title {
  padding-left: 6px;
  height: 70px;
  margin-top: 3em;
}
.contact-title h1 {
  letter-spacing: 9px;
  font-size: 32px;
  margin-bottom: 0;
  color: var(--tzero-primary);
  text-transform: uppercase;
}
.contact-title-empty {
  min-height: 70px;
}
.contact-inputs-wrapper .contact-field {
  margin-top: 12px;
}
.contact-label {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--tzero-dark);
}
.contact-input {
  width: 100%;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--tzero-dark);
  border-radius: 2px;
  background: transparent;
  color: var(--tzero-dark);
  font-family: 'NoirProReg', sans-serif;
}
.contact-input::placeholder {
  opacity: 0.5;
}
.contact-input:focus {
  outline: none;
  border-color: var(--tzero-primary);
  box-shadow: 0 0 0 1px var(--tzero-primary);
}
.contact-textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-submit {
  margin-top: 5vh;
  margin-bottom: 7vh;
  /* margin-left: 12px; */
  min-width: 0;
  width: 130px;
  font-size: 18px;
  letter-spacing: 0.25em;
  box-shadow: none !important;
  border-radius: 2px !important;
  padding: 10px 12px !important;
  color: #fff !important;
  border: none;
  cursor: pointer;
  background: var(--tzero-primary) !important;
  transition: opacity 0.2s, background 0.2s;
}
.contact-submit:hover:not(:disabled) {
  background: var(--tzero-secondary) !important;
  color: var(--tzero-primary) !important;
}
.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact-submit-desktop { display: inline-block; }
.contact-submit-mobile { display: none; }
.contact-info-container {
  flex: 3 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 2;
  margin-left: 20px;
}
.contact-content {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  margin-left: 0;
  text-align: left;
}
.contact-content span {
  cursor: default;
  font-family: 'NoirProReg', sans-serif !important;
  letter-spacing: 0.5px !important;
  font-size: 12px;
  margin-bottom: 3px;
  color: rgba(var(--tzero-medium-rgb), 0.9);
}
.contact-content a {
  color: inherit;
  text-decoration: none;
}
.contact-footer {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 0 0 80px;
  min-width: 80px;
  order: 3;
}
.tzero-contact-feedback {
  margin-top: 8px;
  margin-left: 12px;
  font-size: 14px;
}
.tzero-contact-feedback.success { color: var(--tzero-primary); }
.tzero-contact-feedback.error { color: var(--tzero-danger); }

/* Mobile fixed bottom bar: show Trimite on contact slide, Meniu otherwise */
.tzero-fixed-bottom-bar .tzero-fixed-trimite-btn { display: none !important; }
.tzero-fixed-bottom-bar.on-contact-slide .tzero-fixed-meniu-btn { display: none !important; }
.tzero-fixed-bottom-bar.on-contact-slide .tzero-fixed-trimite-btn { display: block !important; }
.tzero-fixed-bottom-bar.on-footer-slide .tzero-fixed-trimite-btn { display: none !important; }
/* On footer slide: bar fills bottom white space, same color as Meniu button */
@media (max-width: 991.98px) {
  #home-swiper .slide-content p,
  #home-swiper .slide-text p {
    margin-bottom: 0.4rem;
    line-height: 1.45;
  }
  body.tzero-footer-slide-active .tzero-header {
    display: none !important;
  }
  body.tzero-footer-slide-active .tzero-swiper-wrap {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  body.tzero-footer-slide-active .tzero-fixed-bottom-bar {
    display: none !important;
  }
  body.tzero-footer-slide-active .slide-content-footer .tzero-footer {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px)) !important;
  }
  .tzero-fixed-bottom-bar.on-footer-slide {
    background: var(--tzero-primary);
    width: 100%;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem calc(3rem + env(safe-area-inset-bottom, 0px)) 1rem;
    min-height: calc(60px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 767.98px) {
  .slide-content-contact {
    max-width: none;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    justify-content: flex-start;
    align-items: center;
    min-height: 100%;
  }
  .contact-slide-body {
    flex-direction: column;
    flex: 1 1 auto;
  }
  .slide-content-contact .contact-content-container,
  .slide-content-contact .tzero-contact-form {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  .slide-content-contact .contact-content-container {
    margin-top: 0 !important;
  }
  .contact-title-empty { display: none; }
  .contact-footer { display: none; }
  .slide-content-contact .contact-info-container {
    align-self: stretch;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: 0;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
  }
  .slide-content-contact .contact-content {
    text-align: left;
  }
  .slide-content-contact .contact-info-container .tzero-hours-schedule {
    max-width: none;
  }
  .contact-submit { margin-bottom: 0; }
}
@media (max-width: 600px) {
  .slide-content-contact { padding-left: 0.5rem; padding-right: 0.5rem; }
  .contact-content-container { flex: 1 1 100%; }
  .contact-info-container { flex: 1 1 100%; }
  .contact-title { height: 40px !important; margin-bottom: 18px; }
  .contact-title h1 { font-size: 28px !important; }
  .contact-submit-desktop { display: none; }
  .contact-submit-mobile { display: none; }
  .contact-submit { margin-bottom: 0; }
  .contact-content-container { order: 1; }
  .contact-footer { order: 2; }
  .contact-info-container { order: 3; }
}

.slide-hero {
  text-align: center;
  max-width: none;
  overflow: visible;
}

/* Slides with picture swiper (CAFEA, FOOD, SHOP) – like playground */
.slide-content-with-pics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1100px;
  width: 100%;
}
.slide-content-pics-left .slide-pics-wrap { order: 1; }
.slide-content-pics-left .slide-text { order: 2; }
.slide-content-pics-right .slide-text { order: 1; }
.slide-content-pics-right .slide-pics-wrap { order: 2; }
.slide-text {
  flex: 1 1 280px;
  min-width: 0;
}
.slide-text h1 {
  font-family: 'NoirProMed', sans-serif;
  margin-bottom: 1rem;
}
.slide-text p {
  font-family: 'NoirProReg', sans-serif;
  margin-bottom: 1rem;
}
.slide-text .btn { margin-top: 0.5rem; }
.slide-pics-wrap {
  flex: 0 1 340px;
  min-width: 260px;
  max-width: 100%;
}
.tzero-slide-pics {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  overflow: hidden;
}
.tzero-slide-pics .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tzero-light);
}
.tzero-slide-pics .img-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.tzero-slide-pics .img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 767.98px) {
  .slide-content-with-pics { flex-direction: column; gap: 1.5rem; }
  .slide-pics-wrap {
    display: none !important;
  }
  .slide-content-pics-left .slide-text,
  .slide-content-pics-right .slide-text { order: 1; }
}
@media (max-width: 991.98px) {
  .tzero-meniu-btn-in-slide { display: none !important; }
}

/* T ZERO hero: animated SVG (playground home.page) – container large enough, no mask */
.tzero-hero-svg-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60vh;
  overflow: visible;
  max-width: 100%;
}

.tzero-hero-svg-wrap .tsvg-main,
.tzero-hero-svg-wrap .tsvg-second {
  overflow: visible;
}

.tzero-hero-svg-wrap .tsvg-main {
  transform: scale(2.4);
  transform-origin: center left;
}

.tzero-hero-svg-wrap .tsvg-second {
  margin-top: 3rem;
  transform: scale(0.975);
  transform-origin: center left;
}

/* ZERO letters: hidden until GSAP runs, then appear in stagger order */
.tzero-hero-svg-wrap .subT {
  transform-box: fill-box;
  opacity: 0;
}

@media (max-width: 991.98px) {
  .tzero-hero-svg-wrap {
    min-height: 55vh;
  }
  .tzero-hero-svg-wrap .tsvg-main {
    margin-left: 6rem;
    transform: scale(1.8);
    transform-origin: center left;
  }
  .tzero-hero-svg-wrap .tsvg-second {
    margin-left: 8rem;
    margin-top: 2rem;
    transform: scale(0.675);
    transform-origin: center left;
  }
  /* First slide (hero): no overflow so no scrollbar/dark bar on mobile */
  #home-swiper .swiper-wrapper > .swiper-slide:first-child {
    overflow: hidden;
  }
}

.slide-hero .tzero-logo-hero {
  max-width: 280px;
  height: auto;
}

/* Buttons */
.btn-tzero {
  background: var(--tzero-primary);
  color: #fff;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.5rem;
}

.btn-tzero:hover {
  background: var(--tzero-secondary);
  color: var(--tzero-primary);
}

/* Menu page */
.tzero-meniu-section {
  padding-top: 80px;
  padding-bottom: 2rem;
}

/* Menu: search in header – desktop: bar opens in header; mobile: bar full width below header */
.tzero-header-search-row {
  flex-shrink: 0;
  gap: 0.25rem;
}
@media (max-width: 991.98px) {
  .tzero-header-search-row {
    margin-left: auto;
  }
}
.tzero-header-search-wrapper {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 0.4s ease, opacity 0.3s ease;
  display: flex;
  align-items: center;
}
.tzero-header-search-wrapper.tzero-meniu-search-open {
  width: 220px;
  opacity: 1;
}
@media (min-width: 992px) {
  .tzero-header-search-wrapper.tzero-meniu-search-open {
    width: 300px;
  }
}
@media (max-width: 991.98px) {
  .tzero-header-search-mobile.tzero-meniu-search-open {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100% !important;
    max-width: none !important;
    opacity: 1;
    overflow: visible;
    z-index: 1029;
    padding: 0.5rem 1rem;
    background: var(--tzero-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
  .tzero-header-search-mobile.tzero-meniu-search-open .tzero-meniu-search-input {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.tzero-meniu-search-input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--tzero-dark);
  border-radius: 2px;
  font-family: 'NoirProReg', sans-serif;
  font-size: 14px;
  color: var(--tzero-dark);
  background: var(--tzero-light);
}
.tzero-meniu-search-input::placeholder {
  color: rgba(var(--tzero-medium-rgb, 95, 95, 95), 0.7);
}
.tzero-meniu-search-input:focus {
  outline: none;
  border-color: var(--tzero-primary);
}
.tzero-meniu-search-toggle {
  flex-shrink: 0;
  color: var(--tzero-dark);
  text-decoration: none;
}
.tzero-meniu-search-toggle:hover {
  color: var(--tzero-primary);
}
@media (max-width: 991.98px) {
  .tzero-meniu-search-toggle {
    transform: scale(0.7);
    transform-origin: center;
    padding: 0.35rem;
  }
}
.tzero-meniu-search-toggle .tzero-meniu-search-icon-open { display: block; }
.tzero-meniu-search-toggle .tzero-meniu-search-icon-close { display: none; }
.tzero-meniu-search-toggle.tzero-meniu-search-open .tzero-meniu-search-icon-open { display: none !important; }
.tzero-meniu-search-toggle.tzero-meniu-search-open .tzero-meniu-search-icon-close { display: block !important; }
.tzero-meniu-search-row.tzero-meniu-search-open .tzero-meniu-search-icon-open { display: none !important; }
.tzero-meniu-search-row.tzero-meniu-search-open .tzero-meniu-search-icon-close { display: block !important; }
.tzero-product-col.tzero-search-hidden { display: none !important; }
.tzero-meniu-section section.tzero-cat-no-results { display: none !important; }
@media (max-width: 991.98px) {
  body.tzero-mobile-search-open .tzero-meniu-section {
    padding-top: 112px;
  }
}

/* Scroll margin so anchor nav doesn't hide section title */
.scroll-margin-top { scroll-margin-top: 80px; }

/* Smooth scroll when clicking category anchors (same as playground goTo*Cat) */
html { scroll-behavior: smooth; }

/* Top horizontal category strip with arrows and pictures */
.tzero-meniu-cats-top {
  position: sticky;
  top: 100px;
  z-index: 1025;
  width: 100%;
  background: var(--tzero-light);
  margin-bottom: 1rem;
}

.tzero-meniu-cats-nav {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}

.tzero-meniu-cats-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-height: 140px;
  padding: 0.5rem;
  background: transparent;
  color: var(--tzero-primary);
  border: none;
  cursor: pointer;
  transition: color 0.2s, opacity 0.2s;
}

.tzero-meniu-cats-arrow:hover {
  color: var(--tzero-secondary);
  opacity: 0.9;
}

.tzero-meniu-cats-arrow:focus {
  outline: 2px solid var(--tzero-primary);
  outline-offset: 2px;
}

.tzero-meniu-cats-arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tzero-meniu-cats-arrow-icon svg {
  display: block;
}

.tzero-meniu-cats-list {
  flex: 1 1 auto;
  min-height: 140px;
  overflow-x: auto;
  overflow-y: hidden;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tzero-meniu-cats-list::-webkit-scrollbar {
  display: none;
}

.tzero-meniu-cat-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: inherit;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
  min-width: 90px;
}

.tzero-meniu-cat-item:hover {
  background: rgba(0, 0, 0, 0.04);
}

.tzero-meniu-cats-nav .tzero-meniu-cat-link.selected,
.tzero-meniu-cats-nav .tzero-meniu-cat-link.active {
  background: rgba(var(--tzero-primary-rgb, 0, 0, 0), 0.08);
  border-color: var(--tzero-primary);
}

.tzero-meniu-cat-item-img-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #eee;
}

.tzero-meniu-cat-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tzero-meniu-cat-item-name {
  font-family: 'NoirProMed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.tzero-meniu-anchors .btn { text-transform: uppercase; letter-spacing: 0.03em; }
.tzero-meniu-anchors.tzero-meniu-cats-nav .tzero-meniu-cat-link.selected,
.tzero-meniu-anchors.tzero-meniu-cats-nav .tzero-meniu-cat-link.active {
  background: rgba(var(--tzero-primary-rgb, 0, 0, 0), 0.08);
  border-color: var(--tzero-primary);
}

.tzero-cat-title {
  font-size: 1.25rem;
  font-family: 'NoirProMed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Menu: mobile – category bar sticky to header, smaller images and font */
@media (max-width: 991.98px) {
  .tzero-meniu-section {
    padding-top: 60px;
  }
  .scroll-margin-top { scroll-margin-top: 60px; }
  .tzero-meniu-cats-top {
    top: 60px;
  }
  .tzero-meniu-cats-arrow {
    min-height: 98px;
    width: 36px;
  }
  .tzero-meniu-cats-list {
    min-height: 98px;
  }
  .tzero-meniu-cat-item {
    min-width: 63px;
    padding: 0.35rem 0.5rem;
    gap: 0.35rem;
  }
  .tzero-meniu-cat-item-img-wrap {
    width: 45px;
    height: 45px;
  }
  .tzero-meniu-cat-item-name {
    font-size: 0.6rem;
  }
}

.tzero-product-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tzero-product-card:hover {
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.tzero-product-card-img-link {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 24px;
}

.tzero-product-card .card-img-top {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.tzero-product-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tzero-product-card .card-title {
  text-transform: uppercase;
  font-family: 'NoirProMed', sans-serif;
}

.tzero-product-card-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  font-family: 'NoirProReg', sans-serif;
  color: var(--tzero-dark);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tzero-product-card-btn {
  background: var(--tzero-primary);
  color: #fff !important;
  border: none;
  border-radius: 2px;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}

.tzero-product-card-btn::first-letter {
  text-transform: uppercase;
}

.tzero-product-card-btn:hover {
  background: var(--tzero-secondary);
  color: var(--tzero-primary) !important;
}

/* Menu product cards: on mobile, image left + content right (playground products-mobile style) */
@media (max-width: 767.98px) {
  .tzero-meniu-content .row {
    row-gap: 0.375rem;
  }
  .tzero-meniu-content .row .col {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tzero-product-card {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    padding: 12px;
  }
  .tzero-product-card-img-link {
    flex: 0 0 30%;
    width: 30%;
    aspect-ratio: 1;
    min-width: 0;
    padding: 0;
    margin-left: 12px;
    overflow: hidden;
  }
  .tzero-product-card .card-img-top {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
  .tzero-product-card .card-body {
    flex: 1 1 70%;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  .tzero-product-card .card-title {
    font-size: 14px;
  }
  .tzero-product-card-desc {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .tzero-product-card-btn {
    margin-top: 0.5rem;
  }
}

/* Product detail – centered layout, segments, nutrition (playground-style) */
.tzero-produs-page {
  min-height: 100vh;
}
@media (max-width: 991.98px) {
  .tzero-produs-page {
    padding-bottom: 70px;
  }
}

.tzero-produs-container {
  max-width: none;
  width: 100%;
  margin-top: 2em;
}

.tzero-produs-layout {
  align-items: flex-start;
  /* min-height: calc(100vh - 300px); */
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
}

/* .tzero-produs-image-col {
  position: sticky; 
  top: 100px; 
} */

.tzero-produs-image-wrapper {
  overflow: hidden;
  max-height: 30vh;
}

@media (min-width: 992px) {
  .tzero-produs-image-wrapper {
    margin-top: 2em;
  }
}

.tzero-produs-image {
  max-width: 100%;
  max-height: 30vh;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .tzero-produs-container {
    margin: 0;
  }
  .tzero-produs-image-col {
    padding: 12px;
  }
  .tzero-produs-image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tzero-produs-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1;
  }
}

.tzero-produs-price {
  font-size: 1.5rem;
  font-family: 'NoirProMed', sans-serif;
  color: var(--tzero-primary);
}

.tzero-produs-content-wrapper {
  padding-left: 0;
}

@media (min-width: 992px) {
  .tzero-produs-content-wrapper {
    padding-left: 48px;
  }
}

.tzero-produs-title {
  font-family: 'NoirProMed', sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.tzero-produs-qty {
  color: rgba(0, 0, 0, 0.55);
  font-size: 1rem;
  font-family: 'NoirProReg', sans-serif;
}

.tzero-produs-segment-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0 1rem;
  margin-top: 1.5rem;
}

.tzero-produs-segment {
  background: none;
  border: none;
  font-size: 1rem;
  font-family: 'NoirProMed', sans-serif;
  color: var(--tzero-dark);
  cursor: pointer;
  padding: 0.5rem 0 0.875rem 0;
  margin: 0;
  position: relative;
  font-family: inherit;
}

.tzero-produs-segment::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2.5px;
  background: var(--tzero-primary);
  width: 0;
  transition: width 0.3s ease;
}

.tzero-produs-segment.active::after {
  width: 100%;
}

.tzero-produs-segment:hover {
  color: var(--tzero-primary);
}

.tzero-produs-panel {
  margin-top: 1.5rem;
}

.tzero-produs-long-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: 'NoirProReg', sans-serif;
  color: var(--tzero-dark);
}

.tzero-produs-options {
  margin-top: 0.75rem;
}

.tzero-produs-option {
  display: block;
  cursor: pointer;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}

.tzero-produs-option input[type="radio"] {
  margin-right: 0.5rem;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  accent-color: var(--tzero-primary);
}

.tzero-option-name {
  vertical-align: middle;
}

.tzero-option-price {
  margin-left: 0.5rem;
  color: var(--tzero-primary);
  font-family: 'NoirProMed', sans-serif;
}

.tzero-option-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-left: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--tzero-dark);
}

.tzero-produs-subtitle {
  font-size: 0.875rem;
  font-family: 'NoirProMed', sans-serif;
  color: var(--tzero-dark);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tzero-produs-nutrition-header {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.tzero-produs-per {
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.55);
}

.tzero-produs-allergens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}

.tzero-allergen {
  font-size: 0.75rem;
  font-family: 'NoirProReg', sans-serif;
  color: var(--tzero-dark);
}

.tzero-produs-nutrition-values {
  margin-top: 0.5rem;
  width: fit-content;
}

.tzero-nut-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.8125rem;
  font-family: 'NoirProReg', sans-serif;
  /* width: fit-content; */
  margin-top: 0.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  /* padding-bottom: 0.5rem; */
  color: var(--tzero-dark);
  padding: 4px;
}

.tzero-nut-label {
  margin-right: 0;
  /* font-weight: 500; */
  min-width: 8rem;
}

.tzero-produs-ingredients-text {
  font-size: 0.875rem;
  line-height: 1.6;
  font-family: 'NoirProReg', sans-serif;
  color: var(--tzero-dark);
}

.tzero-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: none;
  cursor: pointer;
}

.tzero-thumb.active,
.tzero-thumb:hover {
  border-color: var(--tzero-primary);
}

@media (max-width: 767.98px) {
  .tzero-back-to-meniu {
    width: 100%;
    display: block;
  }
}

/* Footer – 5 columns, black background */
.tzero-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.9);
}
/* Footer on contact slide: full viewport width, cover bottom gap, above swiper */
.contact-slide-footer .tzero-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-bottom: 1vh;
  box-sizing: border-box;
  position: relative;
  z-index: 50;
}

/* Footer slide: visible only on mobile */
@media (min-width: 992px) {
  #home-swiper .swiper-slide.tzero-footer-slide-mobile {
    display: none !important;
  }
}
.slide-content-footer {
  max-width: none;
  width: 100%;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}
/* Footer slide: black background so no white shows at edges */
/* Footer slide: black background everywhere to remove any white gap */
.tzero-swiper-wrap .swiper-slide.tzero-footer-slide-mobile {
  background: #000 !important;
  padding: 0;
}
.tzero-footer-slide-mobile .slide-content,
.tzero-footer-slide-mobile .slide-content-footer {
  background: #000 !important;
  width: 100%;
  max-width: none;
}
#home-swiper .swiper-slide.tzero-footer-slide-mobile .slide-content {
  background: #000 !important;
}
.slide-content-footer .tzero-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-bottom: calc(15vh + env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  position: relative;
  z-index: 999;
  /* Extend black into right and bottom gaps (white borders) */
  box-shadow: 25px 0 0 0 #000, 0 35px 0 0 #000;
}
.tzero-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
  max-width: 100%;
}
.tzero-footer-columns {
  flex: 1 1 auto;
  justify-content: center;
  width: 100%;
  align-items: center;
  --bs-gutter-y: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.tzero-footer-col {
  margin-top: 0;
}
.tzero-footer-col-inner {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  text-align: center;
  gap: 0.5rem;
  margin: 0.25rem 0;
}
.tzero-footer-col-map .tzero-footer-map-wrap {
  margin-top: 0;
}
.tzero-footer-link-row {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.tzero-footer-title {
  font-family: 'NoirProMed', sans-serif;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.tzero-footer-map-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}
.tzero-footer-map {
  width: min(220px, 100%);
  height: 130px;
  border: 0;
  border-radius: 6px;
}
@media (max-width: 991.98px) {
  .tzero-footer-col-info { order: 1; flex: 0 0 100%; max-width: 100%; }
  .tzero-footer-col-shedule { order: 2; flex: 0 0 100%; max-width: 100%; }
  .tzero-footer-col-map { order: 3; flex: 0 0 100%; max-width: 100%; }
  .tzero-footer-col-nav { order: 4; flex: 0 0 33.333%; max-width: 33.333%; }
  .tzero-footer-col-legal { order: 5; flex: 0 0 33.333%; max-width: 33.333%; }
  .tzero-footer-col-social { order: 6; flex: 0 0 33.333%; max-width: 33.333%; }
  .tzero-footer-col-nav .tzero-footer-link-row,
  .tzero-footer-col-legal .tzero-footer-link-row,
  .tzero-footer-col-social .tzero-footer-link-row {
    white-space: normal;
    font-size: 0.78rem;
    line-height: 1.25;
  }
  .tzero-footer-col-nav .tzero-footer-col-inner,
  .tzero-footer-col-legal .tzero-footer-col-inner,
  .tzero-footer-col-social .tzero-footer-col-inner {
    align-items: center;
    gap: 0.35rem;
  }
  .tzero-footer-col-legal .tzero-footer-link-with-img {
    display: none !important;
  }
  .tzero-footer-col-shedule {
    display: flex;
    justify-content: center;
  }
  .tzero-footer-col-shedule .tzero-hours-schedule {
    max-width: 280px;
    width: 100%;
  }
  .tzero-footer-col-shedule .tzero-hours-schedule .tzero-hours-title {
    text-align: center;
  }
  .tzero-footer-col-shedule .tzero-hours-schedule .tzero-hours-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 0.65rem;
  font-family: 'NoirProLight', sans-serif;
    gap: 0 1.5rem;
    margin-top: 0.25rem;
  }
}
.tzero-footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: 'NoirProReg', sans-serif;
  font-size: 0.9rem;
}
.tzero-footer-link:hover {
  color: #fff;
  text-decoration: underline;
}
.tzero-footer-social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}
.tzero-footer-social-link img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.tzero-footer-detail {
  color: rgba(255, 255, 255, 0.8);
  font-family: 'NoirProReg', sans-serif;
  font-size: 0.9rem;
}
.tzero-footer-link-with-img {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.tzero-footer-link-img {
  flex-shrink: 0;
  display: block;
  vertical-align: middle;
  opacity: 0.95;
  min-width: 100px;
  width: 100px;
  height: auto;
}
.tzero-footer-link-with-img:hover .tzero-footer-link-img {
  opacity: 1;
}
.tzero-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  width: 100%;
}
.tzero-footer-bottom p {
  font-family: 'NoirProReg', sans-serif;
  font-size: 0.8125rem;
}

/* Hours schedule block – dark grey box matching reference design */
.tzero-hours-schedule {
  /* background: #cacaca; */
  border-radius: 6px;
  /* padding: 1rem 1.25rem; */
  font-family: 'NoirProReg', sans-serif;
  max-width: 150px;
}
.tzero-hours-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(var(--tzero-medium-rgb), 0.9);
  margin: 0.25rem 0 0.45rem 0;
  text-transform: none;
  letter-spacing: normal;
}

.tzero-hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tzero-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}
.tzero-hours-row:last-child {
  margin-bottom: 0;
}
.tzero-hours-day {
  /* color: rgba(255, 255, 255, 0.7); */
  color: rgba(var(--tzero-medium-rgb), 0.9);
  font-size: 0.65rem;
  margin: 0;
  font-weight: normal;
}
.tzero-hours-time {
  /* color: #fff; */
  color: rgba(var(--tzero-medium-rgb), 0.9);
  font-size: 0.65rem;
  margin: 0;
  flex-shrink: 0;
}
/* Compact variant for footer */
.tzero-hours-schedule--compact {
  padding: 0.75rem 1rem;
  max-width: 220px;
}
.tzero-hours-schedule--compact .tzero-hours-title {
  font-size: 0.9rem;
  color: #fff
}
.tzero-hours-schedule--compact .tzero-hours-subtitle {
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}
.tzero-hours-schedule--compact .tzero-hours-day,
.tzero-hours-schedule--compact .tzero-hours-time {
  font-size: 0.8rem;
  color: #fff
}
.tzero-hours-schedule--compact .tzero-hours-row {
  margin-bottom: 0.25rem;
}
/* Hours in contact slide */
.contact-content .tzero-hours-schedule {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
/* Hours in footer */
.tzero-footer-col-info .tzero-hours-schedule {
  margin-top: 0.5rem;
}
