:root{
  --bg: #fbfaf7;
  --panel: #ffffff;
  --ink: #1f2328;
  --muted: #5a616a;
  --muted2: #7a828c;
  --line: #e7e2d8;

  --shadow: 0 14px 36px rgba(16, 24, 40, 0.08);
  --shadow2: 0 10px 22px rgba(16, 24, 40, 0.06);

  --r: 16px;
  --max: 1120px;

  --accent: #2f6f4e;
  --chip: #f3f1ea;

  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 18% 0%, rgba(47,111,78,.08), transparent 62%),
    radial-gradient(900px 420px at 88% 6%, rgba(14,165,233,.08), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 60%, var(--bg) 100%);
}

a{ color:inherit; text-decoration:none; }
.wrap{ max-width: var(--max); margin:0 auto; padding: 0 18px; }

/* =========================
   Header (bigger brand)
========================= */
.top{
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,250,247,.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.top__row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 14px;
  min-height: 86px;
}

.top__brand{
  display:flex;
  align-items:center;
  font-weight:900;
  letter-spacing:-0.5px;
}

.logo{
  width:78px;
  height:62px;
  padding:8px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.logo svg{
  width:118%;
  height:118%;
  display:block;
}

.top__name{
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.9px;
}

.top__nav{
  display:flex;
  gap: 10px;
  align-items:center;
}

.navBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.88);
  font-weight: 850;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(16,24,40,.05);
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  margin-right: 10px;
}

.navBtn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(16,24,40,.08);
}

/* =========================
   Grid
========================= */
.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 18px 0 22px;
}

@media (max-width: 760px){
  .grid{ grid-template-columns: 1fr; }
}

/* =========================
   Tile (image-first shop card)
========================= */
.tile{
  border: 0;
  background: transparent;
  box-shadow: none;
}

.tile__link{
  display:block;
  border-radius: calc(var(--r) + 6px);
  overflow:hidden;
  background: rgba(255,255,255,.80);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  transition: transform .14s ease, box-shadow .14s ease;
}

.tile__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(16,24,40,.10);
}

.tile__media{
  aspect-ratio: 1 / 1;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 1px solid var(--line);
}

/* subtle top-right price */
.priceTag{
  position:absolute;
  top: 10px;
  right: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.2px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(231,226,216,.9);
  color: var(--ink);
  box-shadow: 0 10px 18px rgba(16,24,40,.10);
  backdrop-filter: blur(10px);
}

/* badge top-left */
.badgeTag{
  position:absolute;
  top: 10px;
  left: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(231,226,216,.9);
  color: var(--muted);
  box-shadow: 0 10px 18px rgba(16,24,40,.08);
  backdrop-filter: blur(10px);
}

.tile__info{
  padding: 12px 12px 14px;
}

.tile__title{
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.2;
  font-size: 14px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tile__meta{
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted2);
  font-weight: 800;
}

.tile__link:active{
  transform: translateY(0px);
}

/* =========================
   Footer
========================= */
.foot{
  margin-top: 34px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.70);
}

.foot__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  text-align:center;
}

.foot__brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.foot__logo{
  width: 34px;
  height: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.foot__logo img{
  width:100%;
  height:100%;
  display:block;
}

.foot__name{
  font-size: 18px;
}

.foot__nav a{
  font-size: 13px;
  font-weight: 750;
  color: var(--muted);
}

.foot__nav a:hover{
  text-decoration: underline;
}

.foot__copy{
  font-size: 12px;
  color: var(--muted2);
}

/* =========================
   Mobile tweaks
========================= */
@media (max-width: 640px){
  .wrap{ padding: 0 14px; }

  .top__row{ min-height: 76px; padding: 12px 0; }
  .logo{ width:64px; height:54px; padding:7px; }
  .top__name{ font-size: 22px; }

  .priceTag{ top: 9px; right: 9px; }
  .badgeTag{ top: 9px; left: 9px; }
}

