
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #292727;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

:root {
  --coffee-primary: #a86522;
  --coffee-secondary: #bf8a55;
  --coffee-light: #f2e2d2;
  --coffee-dark: #6c3f16;
}

html {
  height: 100%;
}

main#main {
  flex: 1 0 auto;
}

.site-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: opacity 0.25s ease;
}

.site-popup-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.site-popup-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  position: relative;
  max-width: 560px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.site-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #111827;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.site-popup-image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 10px;
}

.site-popup-text {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  padding: 26px 14px;
}

a {
  text-decoration: none;
  color: #ffb03b;
}

a:hover {
  color: #ffc56e;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Satisfy", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffb03b;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffc064;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.back-to-top:focus-visible {
  outline: 3px solid #6c3f16;
  outline-offset: 3px;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  padding: 0;
  font-size: 15px;
  height: 50px;
  transition: all 0.5s;
  background: rgba(26, 24, 22, 0.8);
  z-index: 996;
  color: rgba(255, 255, 255, 0.7);
}

#topbar.topbar-transparent {
  background: transparent;
}

#topbar.topbar-scrolled {
  top: -50px;
}

#topbar i {
  color: #ffb03b;
  line-height: 0;
}

#topbar i span {
  color: #fff;
  font-style: normal;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: sticky;
  top: 0;
  min-height: 92px;
  z-index: 997;
  transition: all 0.5s;
  padding: 16px 0;
  background: rgba(248, 241, 234, 0.96);
  border-bottom: 1px solid #e5d5c4;
}

#header .header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

#header .logo img,
.header-site-logo {
  padding: 0;
  margin: 0;
  width: auto;
  height: auto;
  max-height: 88px;
  max-width: min(320px, 90vw);
  object-fit: contain;
}

#footer .footer-site-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: min(320px, 90vw);
  max-height: 88px;
  width: auto;
  height: auto;
  object-fit: contain;
}

#header .header-inner-centered {
  position: relative;
  justify-content: center;
}

#header .logo-centered {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.header-whatsapp-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: 2px solid #075e54;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: 0.3s ease;
  flex-shrink: 0;
}

.header-whatsapp-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.header-whatsapp-icon:hover {
  background: #128c7e;
  color: #fff;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  border-color: #075e1d;
  border-width: 2px;
  border-style: solid;
  margin: 0 0 0 10px;
  padding: 10px 25px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
  white-space: nowrap;
}

.book-a-table-btn:hover {
  background: #075E54;
  border-color: #25D366;
  border-width: 2px;
  border-style: solid;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 10px 10px 0;
    padding: 8px 20px;
    letter-spacing: 1px;
  }
}

.info-panel-wrap {
  padding: 16px 0 4px;
  text-align: center;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #433f39;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(39, 37, 34, 0.9);
  transition: 0.3s;
  z-index: 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #433f39;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ffb03b;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 42vh;
  background-color: rgba(39, 37, 34, 0.8);
  overflow: hidden;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 42vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 11, 10, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#hero h2 span {
  color: #ffb03b;
}

#hero p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
  position: relative;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 0 10px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  color: #fff;
  border: 2px solid #ffb03b;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #ffb03b;
  color: #fff;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 50%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  color: #5f5950;
}

.section-title h2 span {
  color: #ffb03b;
}

.section-title.menu-title-style-script h2 span {
  font-family: "Satisfy", sans-serif;
  letter-spacing: 0.5px;
}

.section-title.menu-title-style-modern h2 span {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 2px;
}

.section-title.menu-title-style-classic h2 span {
  font-family: "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title.menu-title-style-fun h2 span {
  font-family: "Trebuchet MS", "Comic Sans MS", ui-rounded, "Segoe UI", cursive;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title.menu-title-style-bold h2 span {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 300;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}


/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0;
  list-style: none;
}

.category-tabs-wrap {
  padding-bottom: 12px;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.menu .category-tab-btn {
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 112px;
  height: 112px;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  margin: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
  border: 2px solid #ffb03b;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 0 0 transparent;
}

.menu .category-tab-btn i {
  font-size: 24px;
}

.menu .category-tab-btn:hover,
.menu .category-tab-btn.filter-active {
  color: #fff;
  background: #ffb03b;
  transform: none;
  box-shadow: 0 6px 16px rgba(168, 101, 34, 0.28);
}

.category-panels {
  margin-top: 20px;
  min-height: 120px;
}

.category-select-note {
  text-align: center;
  color: #2c241c;
  font-weight: 600;
  margin-bottom: 20px;
}

.category-menu-panel {
  display: none;
}

.category-menu-panel.active {
  display: block;
  animation: menuFadeIn 0.35s ease;
}

.subcategory-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}

.subcategory-tab-btn {
  border: 1px solid var(--coffee-secondary);
  background: #fff;
  color: var(--coffee-dark);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.subcategory-tab-btn:hover,
.subcategory-tab-btn.filter-active {
  background: var(--coffee-primary);
  border-color: var(--coffee-primary);
  color: #fff;
}

.subcategory-menu-panel {
  display: none;
}

.subcategory-menu-panel.active {
  display: block;
  animation: menuFadeIn 0.3s ease;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 576px) {
  .menu .category-tab-btn {
    width: 92px;
    height: 92px;
    font-size: 13px;
    gap: 8px;
  }

  .menu .category-tab-btn i {
    font-size: 21px;
  }
}

.empty-category-text {
  background: #fff8ea;
  border: 1px solid #ffd27f;
  border-radius: 12px;
  padding: 18px;
  color: #5f5950;
  font-weight: 500;
}

.menu .menu-content {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.menu .menu-item-wrap {
  margin-top: 26px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.menu .menu-item-body {
  flex: 1;
  min-width: 0;
}

.menu .menu-item-body .menu-content {
  margin-top: 0;
}

.menu .menu-thumb-box {
  position: relative;
  width: 74px;
  height: 74px;
  border: 1px solid #ffd27f;
  border-radius: 12px;
  background: #fff8ea;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu .menu-thumb-box picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.menu .menu-thumb-gluten-badge {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 28px;
  height: 28px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.menu .menu-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu .menu-thumb-placeholder {
  color: #ffb03b;
  font-size: 22px;
  line-height: 1;
}

.menu .menu-content a {
  padding-right: 0;
  flex: 1;
  min-width: 0;
  font-weight: 700;
  color: #ff5608;
}

.menu .menu-content span {
  flex-shrink: 0;
  padding: 0;
  font-weight: 600;
}

.menu .menu-ingredients {
  font-style: italic;
  font-size: 14px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #636363;
}

.menu .menu-allergen {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 0;
  background: transparent;
  border: none;
}

.menu .menu-allergen-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  margin: 0;
  /* Acik kahve kutu: beyaz ikon icin yeterli kontrast */
  background: linear-gradient(180deg, #d4b896 0%, #c9a67c 100%);
  border: 1px solid #b08d62;
  border-radius: 10px;
  line-height: 1;
  cursor: default;
  box-sizing: border-box;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.menu .menu-allergen-chip > i {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(62, 35, 12, 0.35));
}

.menu .menu-allergen-chip .alerjen-ikon-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  vertical-align: middle;
  filter: brightness(0) invert(1) drop-shadow(0 1px 1px rgba(62, 35, 12, 0.3));
}

.menu .menu-allergen-note {
  flex: 1 1 100%;
  font-size: 12px;
  font-style: italic;
  color: #6b6560;
  margin-top: 4px;
  padding: 0;
  background: transparent;
  border: none;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f3e6da;
  color: #2c241c;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
  margin-top: auto;
  border-top: 1px solid #e5d5c4;
}

#footer h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #3d2918;
  position: relative;
  padding: 0;
  margin: 0 0 15px 0;
}

#footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
  color: #3d2918;
}

.footer-contact {
  max-width: 420px;
  margin: 28px auto 20px;
  text-align: left;
  font-size: 14px;
  line-height: 1.55;
  color: #2c241c;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact-row:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--coffee-primary);
  font-size: 1.1rem;
}

.footer-contact-text {
  flex: 1;
  font-style: normal;
  font-weight: 500;
}

.footer-contact-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact-text a:hover {
  color: var(--coffee-secondary);
}

#footer .social-links {
  margin: 0 0 40px 0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1a120d;
  line-height: 1;
  padding: 0;
  margin-right: 6px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  border: 2px solid #1a120d;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

#footer .social-links a:hover {
  background: #1a120d;
  color: #fff;
  border-color: #1a120d;
}

#footer .social-links a:focus-visible {
  outline: 3px solid #1a120d;
  outline-offset: 3px;
}

.footer-allergen-legend {
  max-width: 520px;
  margin: 28px auto 24px;
  text-align: left;
}

.footer-allergen-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c241c;
  margin: 0 0 8px 0;
  text-align: center;
}

.footer-allergen-intro {
  font-size: 13px;
  line-height: 1.55;
  color: #2c241c;
  margin: 0 0 14px 0;
  text-align: center;
}

.footer-allergen-table {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px 12px;
  align-items: center;
  font-size: 13px;
  color: #2c241c;
}

.footer-allergen-icon-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coffee-primary);
  font-size: 18px;
  line-height: 1;
}

.footer-allergen-icon-cell .alerjen-ikon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-allergen-label-cell {
  padding: 6px 0;
  border-bottom: 1px solid rgba(168, 101, 34, 0.2);
  font-weight: 500;
}

.footer-allergen-table > .footer-allergen-label-cell:last-child {
  border-bottom: none;
}

#footer .copyright {
  margin: 0 0 5px 0;
  color: #2c241c;
  font-size: 14px;
}

/* Telif bağlantısı: renk dışında alt çizgi + yüksek kontrast (WCAG) */
#footer .copyright a.footer-credits-link {
  color: #1a120d;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

#footer .copyright a.footer-credits-link:hover,
#footer .copyright a.footer-credits-link:focus-visible {
  color: #000;
  text-decoration-thickness: 2px;
}

#footer .copyright a.footer-credits-link:focus-visible {
  outline: 2px solid #1a120d;
  outline-offset: 3px;
}

#footer .credits {
  font-size: 13px;
}

/* Coffee palette overrides */
a {
  color: var(--coffee-primary);
}

a:hover {
  color: var(--coffee-secondary);
}

.back-to-top {
  background: var(--coffee-primary);
}

.back-to-top:hover {
  background: var(--coffee-secondary);
}

#topbar i {
  color: var(--coffee-primary);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--coffee-primary);
}

#hero h2 span {
  color: var(--coffee-primary);
}

#hero .btn-menu,
#hero .btn-book {
  border-color: var(--coffee-primary);
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: var(--coffee-primary);
}

.section-title h2 span {
  color: var(--coffee-primary);
}

.menu .category-tab-btn {
  border-color: var(--coffee-primary);
}

.menu .category-tab-btn:hover,
.menu .category-tab-btn.filter-active {
  background: var(--coffee-primary);
}

.menu .menu-thumb-box {
  border-color: var(--coffee-secondary);
  background: var(--coffee-light);
}

.menu .menu-thumb-placeholder {
  color: var(--coffee-primary);
}

.menu .menu-content a {
  color: var(--coffee-primary);
}

.empty-category-text {
  background: var(--coffee-light);
  border-color: var(--coffee-secondary);
  color: var(--coffee-dark);
}

@media (prefers-reduced-motion: reduce) {
  #hero .carousel-inner .carousel-item,
  #hero .carousel-inner .active,
  #hero .carousel-inner .carousel-item-next,
  #hero .carousel-inner .carousel-item-prev {
    transition: none !important;
  }

  .menu .category-tab-btn:hover,
  .menu .category-tab-btn.filter-active {
    box-shadow: none;
  }

  .category-menu-panel.active,
  .subcategory-menu-panel.active {
    animation: none;
  }
}