* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f6f1e7;
  color: #1f1f1f;
}

a {
  text-decoration: none;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 32px;
  background:
    linear-gradient(rgba(20,20,20,0.45), rgba(20,20,20,0.55)),
    radial-gradient(circle at top, rgba(201, 168, 110, 0.18), transparent 40%),
    #111;
  color: #fff;
  text-align: center;
}

.hero-inner {
  width: 100%;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d7b06a;
}

.brand-title {
  margin: 0;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.05;
  font-weight: 700;
}

.hero-text {
  max-width: 600px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 24px;
  border: 1px solid #d7b06a;
  border-radius: 999px;
  background: #d7b06a;
  color: #111;
  font-size: 16px;
  font-weight: 600;
  transition: 0.25s ease;
}

.menu-button:hover {
  transform: translateY(-2px);
  background: #e3bd79;
}

.menu-button-secondary {
  background: transparent;
  color: #fff;
}

.menu-button-secondary:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.home-sections {
  width: 100%;
  max-width: 1100px;
  margin: -48px auto 0;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.info-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #111;
}

.info-card p {
  margin: 0;
  line-height: 1.7;
  color: #555;
}

.site-footer {
  margin-top: auto;
  padding: 24px 20px 34px;
  text-align: center;
  color: #6b6257;
}

.site-footer p {
  margin: 0;
}

.footer-small {
  margin-top: 6px !important;
  font-size: 14px;
  opacity: 0.85;
}

@media (max-width: 768px) {
  .hero {
    min-height: 66vh;
    padding-top: 56px;
  }

  .hero-text {
    font-size: 16px;
  }

  .home-sections {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }

  .info-card {
    padding: 22px;
  }

  .menu-button {
    width: 100%;
    max-width: 320px;
  }
}

.page-header {
  padding: 28px 20px 24px;
  background: #111;
  color: #fff;
  border-bottom: 1px solid rgba(215, 176, 106, 0.22);
}

.page-header-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.back-link {
  display: inline-block;
  margin-bottom: 18px;
  color: #d7b06a;
  font-weight: 600;
}

.page-eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d7b06a;
}

.page-title {
  margin: 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
}

.page-subtitle {
  max-width: 680px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.menu-layout {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 20px 40px;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0 18px;
  background: rgba(246, 241, 231, 0.96);
  backdrop-filter: blur(10px);
}

.category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 600;
  transition: 0.2s ease;
}

.category-chip:hover {
  border-color: #d7b06a;
  color: #111;
  transform: translateY(-1px);
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.menu-section {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.menu-section-head h2 {
  margin: 0;
  font-size: 30px;
  color: #111;
}

.category-note {
  margin: 10px 0 0;
  color: #8a6a2f;
  font-weight: 600;
}

.menu-items-wrap {
  margin-top: 18px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-left {
  flex: 1;
  min-width: 0;
}

.menu-item-right {
  flex-shrink: 0;
  min-width: 110px;
  text-align: right;
}

.item-name {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  color: #111;
}

.item-name-en {
  margin: 5px 0 0;
  font-size: 14px;
  color: #8a6a2f;
  font-weight: 600;
}

.item-desc,
.item-desc-en {
  margin: 8px 0 0;
  color: #555;
  line-height: 1.65;
}

.item-desc-en {
  color: #777;
  font-size: 14px;
}

.item-price {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .page-header {
    padding-top: 22px;
  }

  .menu-layout {
    padding-top: 18px;
  }

  .menu-section {
    padding: 20px;
    border-radius: 22px;
  }

  .menu-section-head h2 {
    font-size: 26px;
  }

  .menu-item {
    flex-direction: column;
    gap: 12px;
  }

  .menu-item-right {
    min-width: 0;
    text-align: left;
  }

  .item-name {
    font-size: 18px;
  }
}

.wine-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.wine-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.wine-item-left {
  flex: 1;
  min-width: 0;
}

.wine-item-right {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.wine-meta {
  margin: 8px 0 0;
  color: #555;
  line-height: 1.6;
}

.wine-grape {
  margin: 8px 0 0;
  color: #8a6a2f;
  font-weight: 600;
  line-height: 1.6;
}

.wine-price-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.wine-price-light {
  background: #d7b06a;
  color: #111;
}

@media (max-width: 768px) {
  .wine-item {
    flex-direction: column;
    gap: 12px;
  }

  .wine-item-right {
    min-width: 0;
    align-items: flex-start;
  }
}

.hero-premium {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  background:
    linear-gradient(rgba(15,15,15,0.62), rgba(15,15,15,0.72)),
    radial-gradient(circle at top, rgba(215,176,106,0.18), transparent 36%),
    #111;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.02) 0,
      rgba(255,255,255,0.02) 1px,
      transparent 1px,
      transparent 120px
    );
  pointer-events: none;
}

.hero-inner-premium {
  position: relative;
  z-index: 2;
}

.premium-title {
  font-size: clamp(44px, 8vw, 82px);
  letter-spacing: -1px;
}

.premium-text {
  max-width: 720px;
}

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 18px 0 16px;
}

.brand-line {
  width: 72px;
  height: 1px;
  background: rgba(215,176,106,0.7);
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7b06a;
  box-shadow: 0 0 16px rgba(215,176,106,0.55);
}

.premium-home-sections {
  margin-top: -62px;
}

.premium-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 32px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8f2 100%);
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
}

.card-label {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6a2f;
  font-weight: 700;
}

.card-link {
  display: inline-block;
  margin-top: 18px;
  color: #111;
  font-weight: 700;
}

.card-link:hover {
  color: #8a6a2f;
}

.about-section {
  padding: 24px 20px 60px;
}

.about-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 28px;
  padding: 34px 30px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.section-label {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6a2f;
  font-weight: 700;
}

.about-title {
  margin: 0 0 20px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  color: #111;
}

.about-text {
  max-width: 920px;
}

.about-text p {
  margin: 0 0 18px;
  color: #4f4a43;
  line-height: 1.9;
  font-size: 16px;
}

.premium-footer {
  padding-top: 8px;
}

@media (max-width: 768px) {
  .hero-premium {
    min-height: 72vh;
  }

  .brand-line {
    width: 44px;
  }

  .premium-home-sections {
    margin-top: -24px;
  }

  .premium-card {
    padding: 24px;
    border-radius: 22px;
  }

  .about-wrap {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.menu-section {
  position: relative;
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #d7b06a 0%, #8a6a2f 100%);
  border-radius: 20px;
}

.menu-section-head {
  padding-left: 10px;
}

.menu-section-head h2 {
  font-size: clamp(28px, 4vw, 36px);
  letter-spacing: -0.4px;
}

.menu-items-wrap {
  margin-top: 22px;
}

.menu-item {
  align-items: flex-start;
  padding: 20px 0;
}

.item-name {
  font-size: 22px;
  font-weight: 700;
}

.item-name-en {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  color: #9b7a3d;
}

.item-desc {
  font-size: 15px;
}

.item-desc-en {
  font-size: 13px;
}

.item-price {
  min-width: 88px;
  text-align: center;
  background: linear-gradient(180deg, #111 0%, #222 100%);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.category-nav {
  gap: 12px;
}

.category-chip {
  background: linear-gradient(180deg, #ffffff 0%, #f7f2e8 100%);
  border-color: rgba(138,106,47,0.18);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.category-chip:hover {
  background: #fffaf0;
}

@media (max-width: 768px) {
  .menu-section::before {
    width: 4px;
  }

  .menu-section-head {
    padding-left: 6px;
  }

  .item-name {
    font-size: 19px;
  }

  .item-price {
    min-width: auto;
  }
}

.wine-item {
  position: relative;
  align-items: flex-start;
  padding: 22px 0;
}

.wine-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7b06a;
  box-shadow: 0 0 0 6px rgba(215,176,106,0.12);
}

.wine-item-left {
  padding-left: 16px;
}

.wine-meta {
  font-size: 14px;
}

.wine-grape {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.wine-price-badge {
  min-width: 110px;
  text-align: center;
  background: linear-gradient(180deg, #111 0%, #222 100%);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.wine-price-light {
  background: linear-gradient(180deg, #e0ba76 0%, #c89d54 100%);
  color: #111;
}

@media (max-width: 768px) {
  .wine-item::before {
    display: none;
  }

  .wine-item-left {
    padding-left: 0;
  }
}

.contact-footer {
  padding-top: 18px;
  background: transparent;
}

.footer-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 10px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-col {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.footer-title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.15;
  color: #111;
}

.footer-heading {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8a6a2f;
  font-weight: 700;
}

.footer-text {
  margin: 0 0 16px;
  color: #4f4a43;
  line-height: 1.75;
}

.footer-link {
  color: #111;
  font-weight: 700;
}

.footer-link:hover {
  color: #8a6a2f;
}

.footer-bottom {
  padding: 26px 20px 34px;
  text-align: center;
  color: #6b6257;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .footer-col {
    border-radius: 20px;
    padding: 20px;
  }

  .footer-title {
    font-size: 24px;
  }
}

.footer-wrap-simple {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.footer-card-simple {
  text-align: center;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-card-simple .footer-heading {
  margin-bottom: 14px;
  font-size: 14px;
  letter-spacing: 2px;
}

.footer-card-simple .footer-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .footer-wrap-simple {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .footer-wrap-simple {
    grid-template-columns: 1fr;
  }

  .footer-card-simple {
    min-height: auto;
  }
}
.footer-card-simple:nth-child(2) .footer-link {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.instagram-link {
  position: relative;
  display: inline-block;
  padding-top: 12px;
}

.instagram-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 56px;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #d7b06a 0%, #8a6a2f 100%);
  border-radius: 999px;
}

/* ===== MOBILNA VERZIJA ===== */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .hero,
  .hero-premium {
    min-height: auto;
    padding: 56px 18px 34px;
  }

  .hero-inner,
  .hero-inner-premium,
  .page-header-inner,
  .menu-layout,
  .about-wrap,
  .footer-wrap,
  .home-sections {
    max-width: 100%;
  }

  .eyebrow,
  .page-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .brand-title,
  .premium-title {
    font-size: clamp(34px, 11vw, 52px);
    line-height: 1.08;
  }

  .hero-text,
  .premium-text,
  .page-subtitle {
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .menu-button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 15px 18px;
    font-size: 15px;
  }

  .premium-home-sections,
  .home-sections {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -18px;
    padding: 0 16px 28px;
  }

  .premium-card,
  .info-card,
  .menu-section,
  .about-wrap,
  .footer-col {
    border-radius: 20px;
    padding: 20px 18px;
  }

  .about-section {
    padding: 12px 16px 34px;
  }

  .about-title {
    font-size: clamp(26px, 8vw, 34px);
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .page-header {
    padding: 22px 16px 18px;
  }

  .page-title {
    font-size: clamp(30px, 10vw, 42px);
  }

  .menu-layout {
    padding: 16px 16px 28px;
  }

  .category-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 10px 0 14px;
    margin: 0 -4px 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .category-nav::-webkit-scrollbar {
    display: none;
  }

  .category-chip {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
    padding: 10px 14px;
  }

  .menu-content {
    gap: 18px;
  }

  .menu-section::before {
    width: 4px;
  }

  .menu-section-head {
    padding-left: 8px;
  }

  .menu-section-head h2 {
    font-size: 25px;
    line-height: 1.2;
  }

  .category-note {
    font-size: 14px;
    line-height: 1.6;
  }

  .menu-item,
  .wine-item {
    flex-direction: column;
    gap: 12px;
    padding: 16px 0;
  }

  .menu-item-right,
  .wine-item-right {
    min-width: 0;
    width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .item-name {
    font-size: 18px;
    line-height: 1.45;
  }

  .item-name-en {
    font-size: 12px;
    line-height: 1.5;
  }

  .item-desc,
  .item-desc-en,
  .wine-meta,
  .wine-grape {
    font-size: 14px;
    line-height: 1.7;
  }

  .item-price,
  .wine-price-badge {
    min-width: 0;
    font-size: 14px;
    padding: 8px 12px;
  }

  .wine-item::before {
    display: none;
  }

  .wine-item-left {
    padding-left: 0;
  }

  .footer-wrap,
  .footer-wrap-simple {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px 10px;
  }

  .footer-card-simple {
    min-height: auto;
    padding: 22px 18px;
  }

  .footer-card-simple .footer-text {
    max-width: 100%;
    font-size: 16px;
  }

  .footer-title {
    font-size: 24px;
  }

  .footer-bottom {
    padding: 18px 16px 28px;
  }
}

@media (max-width: 480px) {
  .hero,
  .hero-premium {
    padding: 48px 14px 28px;
  }

  .menu-layout,
  .about-section,
  .home-sections,
  .premium-home-sections {
    padding-left: 14px;
    padding-right: 14px;
  }

  .premium-card,
  .info-card,
  .menu-section,
  .about-wrap,
  .footer-col {
    padding: 18px 16px;
  }

  .brand-title,
  .premium-title {
    font-size: 32px;
  }

  .page-title {
    font-size: 30px;
  }

  .item-name {
    font-size: 17px;
  }

  .footer-card-simple .footer-text {
    font-size: 15px;
  }
}
.simple-home-page {
  background: #0f0f0f;
  color: #fff;
}

.simple-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 28px;
  background:
    linear-gradient(rgba(15,15,15,0.72), rgba(15,15,15,0.84)),
    radial-gradient(circle at top, rgba(215,176,106,0.16), transparent 34%),
    #0f0f0f;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.simple-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
  pointer-events: none;
}

.simple-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 760px;
}

.simple-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #d7b06a;
  font-weight: 600;
}

.simple-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 18px;
}

.simple-mark span {
  display: block;
  width: 70px;
  height: 1px;
  background: rgba(215,176,106,0.7);
}

.simple-mark i {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7b06a;
  box-shadow: 0 0 20px rgba(215,176,106,0.45);
}

.simple-title {
  margin: 0;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 1.02;
  letter-spacing: -1px;
  color: #fff;
}

.simple-text {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.84);
}

.simple-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.simple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.simple-btn-gold {
  background: #d7b06a;
  color: #111;
}

.simple-btn-gold:hover {
  background: #e1bc79;
  transform: translateY(-2px);
}

.simple-btn-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(215,176,106,0.55);
}

.simple-btn-dark:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.simple-info-strip {
  width: 100%;
  max-width: 1120px;
  margin: -34px auto 0;
  padding: 0 20px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 3;
}

.simple-info-item {
  background: #f7f3eb;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 22px;
  padding: 22px 18px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.10);
  text-align: center;
}

.simple-info-label {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a6a2f;
  font-weight: 700;
}

.simple-info-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: #3d3933;
}

.simple-info-link {
  color: #111;
  font-weight: 700;
}

.simple-info-link:hover {
  color: #8a6a2f;
}

@media (max-width: 900px) {
  .simple-info-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .simple-hero {
    min-height: auto;
    padding: 56px 16px 26px;
  }

  .simple-mark span {
    width: 44px;
  }

  .simple-title {
    font-size: clamp(34px, 12vw, 54px);
    line-height: 1.06;
  }

  .simple-text {
    font-size: 15px;
    line-height: 1.75;
    margin-top: 14px;
  }

  .simple-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
  }

  .simple-btn {
    width: 100%;
    min-width: 0;
    padding: 15px 18px;
  }

  .simple-info-strip {
    grid-template-columns: 1fr;
    margin-top: -10px;
    padding: 0 16px 28px;
  }

  .simple-info-item {
    border-radius: 18px;
    padding: 18px 16px;
  }

  .simple-info-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .simple-hero {
    padding: 48px 14px 22px;
  }

  .simple-info-strip {
    padding-left: 14px;
    padding-right: 14px;
  }

  .simple-title {
    font-size: 32px;
  }
}
.simple-info-item {
  background: linear-gradient(180deg, #f7f2e7 0%, #efe5d2 100%);
  border: 1px solid rgba(138, 106, 47, 0.18);
  box-shadow: 0 14px 34px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

.simple-info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(138,106,47,0.55) 50%, transparent 100%);
}

.simple-info-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(215,176,106,0.14), transparent 34%);
  pointer-events: none;
}

.simple-info-label {
  color: #8a6a2f;
  font-weight: 700;
}

.simple-info-text {
  color: #2e2a25;
}

.simple-info-link {
  color: #111;
  font-weight: 700;
}

.simple-info-link:hover {
  color: #8a6a2f;
}
.simple-info-item {
  background: linear-gradient(180deg, #f3ecdf 0%, #e8dcc6 100%);
  border: 1px solid rgba(167, 130, 63, 0.22);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.simple-info-item::before {
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(167,130,63,0.65) 50%, transparent 100%);
}

.simple-info-label {
  color: #9b7430;
  font-size: 12px;
  letter-spacing: 2.4px;
}

.simple-info-text {
  color: #2a241d;
  font-size: 18px;
  font-weight: 500;
}

.simple-info-link {
  color: #111;
  font-weight: 800;
}

.simple-info-link:hover {
  color: #9b7430;
}
.item-image-wrap {
  margin-bottom: 12px;
}

.item-image {
  width: 100%;
  max-width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.item-image-wrap,
.wine-image-wrap {
  margin-bottom: 12px;
}

.item-image,
.wine-image {
  width: 100%;
  max-width: 220px;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}
.menu-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

.menu-card.no-image {
  grid-template-columns: 1fr auto;
}

.menu-card-media {
  width: 110px;
  height: 110px;
  border-radius: 18px;
  overflow: hidden;
  background: #f1f1f1;
  flex-shrink: 0;
}

.item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-card-body {
  min-width: 0;
}

.item-name {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #111;
}

.item-name-en {
  margin: 5px 0 0;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9b7a3d;
  font-weight: 700;
}

.item-desc {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4f4a43;
}

.item-desc-en {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #7b746b;
}

.menu-card-price {
  align-self: start;
  justify-self: end;
}

.item-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  min-width: 92px;
  border-radius: 999px;
  background: linear-gradient(180deg, #111 0%, #222 100%);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .menu-card {
    grid-template-columns: 88px 1fr auto;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .menu-card.no-image {
    grid-template-columns: 1fr auto;
  }

  .menu-card-media {
    width: 88px;
    height: 88px;
    border-radius: 14px;
  }

  .item-name {
    font-size: 18px;
  }

  .item-name-en {
    font-size: 11px;
  }

  .item-desc,
  .item-desc-en {
    font-size: 13px;
  }

  .item-price {
    min-width: 80px;
    padding: 9px 12px;
    font-size: 14px;
  }
}