:root {
  --accent: #1670c0;
  --accent-dark: #0e4f8a;
  --bg: #f6f6f6;
  --text: #222;
  --container-width: 1200px;
  --hero-height: 460px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* --- Reset + Basics --- */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* --- Topbar --- */
.topbar {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.logo img {
  height: 68px;
}

.search {
  flex: 1;
}

.search input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.top-links a {
  margin-left: 12px;
  color: #444;
  text-decoration: none;
  font-weight: 600;
}

/* --- Navigation Row --- */
.nav-row {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.nav-row ul {
  display: flex;
  gap: 18px;
  padding: 8px 0;
  margin: 0;
  list-style: none;
}

.nav-row a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 13px;
}

/* --- Delivery Strip --- */
.delivery-strip {
  background: #1f66b3;
  color: white;
}

.strip-inner {
  overflow: visible;
  padding: 6px 0;
  text-align: center;
}

.marquee {
  white-space: normal;
  display: block;
  animation: none;
  transform: none;
  font-weight: 600; 
  font-size: 14px;
}

/* --- Mini Logos Strip --- */
.mini-logos-strip {
  background: #fcfcfc;
  border-bottom: 1px solid #e6e6e6;
}

.logos-inner {
  overflow: hidden;
  padding: 20px 0;
}

.logo-marquee {
  white-space: nowrap;
  display: inline-block;
  animation: marquee 18s linear infinite; 
  display: flex;
  align-items: center;
  gap: 50px;
}

.logo-marquee img {
  height: 50px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s;
  pointer-events: none;
}

.logo-marquee img:hover {
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  pointer-events: none;
}

.hero-inner {
  display: flex;
  align-items: center;
  height: var(--hero-height);
  position: relative;
  z-index: 2;
}

.hero-left { flex: 1; }
.hero-center { flex: 2; display: flex; flex-direction: column; align-items: center; position: relative; }
.hero-right { flex: 1; }

.hero-badge {
  background: linear-gradient(180deg,#00c853,#00b26a);
  color: white;
  font-weight: 800;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  width: 220px;
  text-align: center;
  transform: rotate(-6deg);
}

.people {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.6s;
}

.person {
  width: 180px;
  max-height: 330px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.15));
  transform-origin: center bottom;
  transition: transform 0.6s, filter 0.3s;
}

.person.p1 { transform: translateY(6px) scale(0.98); }
.person.p2 { transform: translateY(-2px) scale(1.02); }
.person.p3 { transform: translateY(6px) scale(0.98); }

.mini-logos {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 8px;
}

.mini-logos img {
  width: 60px;
  opacity: 0.95;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.08));
}

.cta {
  position: absolute;
  right: 40px;
  bottom: 28px;
}

.shop-btn {
  background: var(--accent);
  border: none;
  color: white;
  padding: 16px 26px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(21,102,170,.18);
  transition: transform 0.18s, box-shadow 0.18s;
}

.shop-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(21,102,170,.22);
}

@keyframes floaty { 0% { transform: translateY(0); } 50% { transform: translateY(-8px); } 100% { transform: translateY(0); } }
.hero-center .people { animation: floaty 5s ease-in-out infinite; }

.hero-info {
  padding: 22px 16px;
  text-align: center;
  font-weight: 700;
  color: #333;
}

/* --- PRODUCTS SECTION --- */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 30px 16px;
}

.product {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(10,10,10,0.04);
  transition: transform 0.16s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* FIX: Product Link Styling */
.product-link {
  display: block;        
  text-decoration: none; 
  color: inherit;        
}

.product-link:hover, 
.product-link:visited, 
.product-link:active {
  color: inherit;
  text-decoration: none;
}

.product img {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 10px auto 16px auto;
}

.product:hover { transform: translateY(-6px); }

/* --- COOKIE BANNER --- */
.cookie-box {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
  z-index: 30;
}

.cookie-box button {
  background: var(--accent);
  border: none;
  color: white;
  padding: 8px 10px;
  margin-left: 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* --- REVIEW TAB --- */
.review-tab {
  position: fixed;
  right: 0;
  top: 40%;
  background: #17a2b8;
  color: white;
  padding: 12px 10px;
  border-radius: 8px 0 0 8px;
  font-weight: 800;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: right top;
  cursor: pointer;
}

/* --- FOOTER --- */
.site-footer {
  background: #fff;
  border-top: 1px solid #eee;
  padding: 16px;
  margin-top: 28px;
  text-align: center;
  color: #666;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 12px;
    height: auto;
    padding: 18px 0;
  }
  .cta {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 12px;
  }
  .hero-badge { margin: 0 auto; transform: none; }
  .people { justify-content: center; }
  .mini-logos { gap: 12px; }
  .products { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
  .product img { max-width: 220px; }
}