/* Hlavní wrapper menu Káva */
.menu-coffee-mega {
  display: flex;
  width: 100vw;
  max-width: 100vw;
  background: #fff;
  border: none;
  margin: 0;
  box-shadow: 0 8px 24px 0 rgba(60,72,88,.10);
  padding: 40px 0 40px 0;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9999;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* Levý sloupec s kategoriemi */
.menu-coffee-col1 {
  width: 40%;
  min-width: 420px;
  display: flex;
  flex-wrap: wrap;
  border-right: 1px solid #eee;
  padding-left: 48px;
}
.menu-coffee-category {
  width: 50%;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
}
.menu-coffee-category img {
  width: 38px;
  height: 38px;
  margin-right: 16px;
  opacity: .80;
}
.menu-coffee-category a {
  color: #232323;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.15s;
}
.menu-coffee-category a:hover { color: #A86D1A; }

/* Pravý sloupec: filtrace + průvodce */
.menu-coffee-col2 {
  width: 60%;
  display: flex;
  justify-content: space-between;
  padding-left: 48px;
  padding-right: 48px;
  gap: 48px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* Filtry */
.menu-coffee-filters {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 15px;
  color: #212121;
}
.menu-coffee-filters section {
  margin-bottom: 18px;
}
.menu-coffee-filters .section-title {
  font-weight: 700;
  font-size: 1.7rem;
  color: #A86D1A;
  margin-bottom: 4px;
}
.menu-coffee-filters .section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.menu-coffee-filters .section-links a {
  color: #232323;
  font-weight: 500;
  line-height: 20px;
  text-decoration: underline;
  transition: color 0.18s;
}
.menu-coffee-filters .section-links a:hover {
  color: #A86D1A;
}

/* Grid zemí původu */
.menu-coffee-origins-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  gap: 12px 18px;
  margin-bottom: 8px;
}
.menu-coffee-origins-grid a {
  color: #232323;
  font-weight: 500;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: color 0.18s;
  line-height: 18px;
  border-radius: 5px;
  padding: 2px 2px;
  background: none;
}
.menu-coffee-origins-grid a:hover {
  color: #A86D1A;
  background: #fcf7f4;
}
/* Minimalistický textový odkaz Další země */
.menu-coffee-origins-more-link {
  justify-self: end;
  align-self: end;
  color: #888;
  font-size: 14px;
  background: none;
  border: none;
  padding: 0 4px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 0;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.15s;
}
.menu-coffee-origins-more-link:hover {
  color: #A86D1A;
  text-decoration: underline;
}

.menu-coffee-guide {
  flex-shrink: 0;
  background: #fcf7f4;
  border-radius: 20px;
  box-shadow: 0 6px 28px rgba(60,72,88,0.10);
  min-width: 270px;
  max-width: 340px;
  padding: 38px 28px 34px 28px;
  margin-left: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s;
  border: 1.5px solid #f3e5d3;
}
.menu-coffee-guide img {
  width: 96px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 22px;
  margin-top: 2px;
  opacity: 0.95;
}
.menu-coffee-guide .guide-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 2px;
  color: #232323;
  letter-spacing: 0.02em;
}
.menu-coffee-guide .guide-desc {
  color: #948c81;
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.5;
  font-weight: 400;
}
.menu-coffee-guide .guide-btn {
  display: inline-block;
  padding: 13px 32px;
  background: #94be9b;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: background 0.18s, transform 0.14s;
  box-shadow: 0 3px 16px rgba(60,72,88,0.04);
  cursor: pointer;
}
.menu-coffee-guide .guide-btn:hover,
.menu-coffee-guide .guide-btn:focus {
  background: #6b9d6c;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* Mobilní a úzké zobrazení */
@media (max-width: 850px) {
  .menu-coffee-guide {
    min-width: 90vw;
    max-width: 98vw;
    margin: 22px auto 0 auto;
    padding: 32px 7vw;
  }
  .menu-coffee-guide img { margin-bottom: 14px; }
}

/* Zajištění, že ostatní menu nejsou ovlivněná */
.menu-coffee-mega, .menu-coffee-mega * {
  box-sizing: border-box;
}