:root{
  --bg:#06120e;
  --panel: rgba(11,31,24,.82);
  --panel2: rgba(9,26,20,.80);
  --stroke: rgba(20,58,44,.7);
  --text:#eafff2;
  --muted:#9fd9c0;

  --green:#24d18b;
  --green2:#0ea36a;

  --shadow: 0 18px 45px rgba(0,0,0,.45);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);

  /* ✅ фон на всіх сторінках */
  background:
    url("/assets/background.jpeg") top center / cover no-repeat fixed;
}

/* легке затемнення для читабельності */
.bg-overlay{
  min-height:100%;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.55));
}

.container{
  width:min(1100px, 92vw);
  margin: 0 auto;
  padding: 18px 0 40px;
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{
  width:52px;
  height:52px;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  padding:6px;
}
.brand .title{
  font-weight: 800;
  letter-spacing:.3px;
}
.brand .sub{
  font-size: 13px;
  color: var(--muted);
  margin-top:2px;
}

.insta{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(6,18,14,.35);
}
.insta:hover{
  border-color: rgba(36,209,139,.8);
  box-shadow: 0 0 0 3px rgba(36,209,139,.15);
}

.menuCard{
  margin-top: 14px;
  padding: 16px;
  background: var(--panel2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.menuTitle{
  font-weight: 800;
  margin-bottom: 10px;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.nav a{
  text-decoration:none;
  color: var(--text);
  border: 1px solid var(--stroke);
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(6,18,14,.35);
}
.nav a:hover{
  border-color: rgba(36,209,139,.8);
  box-shadow: 0 0 0 3px rgba(36,209,139,.15);
}
.nav a.active{
  background: rgba(36,209,139,.14);
  border-color: rgba(36,209,139,.85);
}

.card{
  margin-top: 14px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .grid{ grid-template-columns: 1fr; }
}

.product{
  padding: 14px;
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(6,18,14,.35);
  overflow:hidden;
}
.product img{
  width:100%;
  height:170px;
  object-fit:cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
}
.product h3{ margin: 10px 0 4px; }
.product p{ margin:0; color: var(--muted); font-size: 14px; }
.product .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top: 10px;
}
.price{
  font-weight: 800;
  color: #eafff2;
}
.btn{
  cursor:pointer;
  border:none;
  color:#07130f;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green), var(--green2));
}
.btn:active{ transform: translateY(1px); }

.cartbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(6,18,14,.35);
}

.input{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(6,18,14,.35);
  color: var(--text);
  outline:none;
}
.input:focus{
  border-color: rgba(36,209,139,.85);
  box-shadow: 0 0 0 3px rgba(36,209,139,.15);
}

hr.sep{
  border:none;
  border-top:1px solid rgba(255,255,255,.10);
  margin: 14px 0;
}
.small{ color: var(--muted); font-size: 13px; }

.badge{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  font-size: 13px;
}
.map-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* опционально */
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

