:root{
  --brand:#c62828;
  --dark:#121212;
  --card:#ffffff;
  --soft:#f6f6f6;
  --shadow:0 8px 20px rgba(0,0,0,.08);
  --radius:14px;
}

*{box-sizing:border-box;}
body{
  font-family: Arial, sans-serif;
  margin:0;
  background:var(--soft);
  color:#111;
}

/* Header */
.site-header{
  background:var(--brand);
  color:#fff;
  padding:16px;
  position:sticky;
  top:0;
  z-index:10;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.logo{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
}

.brand-text h1{margin:0;font-size:22px;line-height:1.1;}
.brand-text p{margin:4px 0 0;opacity:.95;}

/* Nav buttons */
.nav{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.nav-btn{
  border:none;
  background:rgba(255,255,255,.18);
  color:#fff;
  padding:10px 14px;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
}

.nav-btn:hover{ background:rgba(255,255,255,.28); }
.nav-btn.active{ background:#fff; color:#111; }

/* Hidden sections: only active shows */
.page-section{
  display:none;
  padding:26px 16px 36px;
}

.page-section.is-active{
  display:block;
}

.container{
  max-width:1100px;
  margin:0 auto;
}

/* Slideshow */
.slideshow{
  position:relative;
  height:420px;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#000;
}

.slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition: opacity 1s ease;
}
.slide.active{ opacity:1; }

.slide-overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:18px 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,.65), rgba(0,0,0,0));
  color:#fff;
}
.slide-overlay h2{ margin:0; font-size:22px; }
.slide-overlay p{ margin:6px 0 0; opacity:.95; }

/* Intro */
.bullet-grid{
  margin:14px 0 0;
  padding-left:18px;
  list-style-type: none;
  columns:4;
  column-gap:45px;
  text-decoration: none;
}
p{
   font-weight: bold;
}
@media (max-width:700px){ .bullet-grid{ columns:1; } }

/* Intro links (new) */
.intro-link{
text-decoration:none;
color:#111;
  
}
.intro-link:hover{
  opacity:.8;
  text-decoration: underline red;
}

/* Controls */
.controls{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  margin:18px 0 18px;
}

.controls input, .controls select{
  padding:12px 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  min-width:220px;
  outline:none;
}

/* Shop grid + stable image sizing (no zoom out of place) */
.shop-grid{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.item{
  background:var(--card);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
}

/* Keep image locked to a consistent frame */
.imgbox{
  width:100%;
  height:150px;
  overflow:hidden;
  background:#eee;
}

.item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

/* No scaling/zoom effects at all */
.item img, .imgbox{ transform:none !important; }

.item h4{
  margin:10px 12px 2px;
  font-size:16px;
}
.item p{
  margin:0 12px 12px;
  font-weight:800;
  color:var(--brand);
}

/* Sale */
.sale-cards{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top:14px;
}
.sale-card{
  background:#fff;
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}

/* Contact */
.contact-grid{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top:14px;
}
.contact-card{
  background:#fff;
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}

/* Existing button style (kept) */
.primary-btn{
  margin-top:10px;
  border:none;
  background:var(--brand);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  cursor:pointer;
  font-weight:800;
}

/* Make the google review button work as a link without changing the look */
.link-btn{
  display:inline-block;
  text-decoration:none;
}

/* Reviews list */
.reviews{
  margin-top:16px;
}

.review-card{
  background:#fff;
  border-radius: var(--radius);
  padding:14px 16px;
  box-shadow: var(--shadow);
  margin-top:12px;
}

.stars{
  font-size:18px;
  letter-spacing:1px;
}

.review-meta{
  font-size:12px;
  opacity:.75;
  margin-top:4px;
}

.review-text{
  margin:8px 0 0;
}

/* Footer */
.footer{
  background:#111;
  color:#fff;
  text-align:center;
  padding:18px 16px;
}
