/** Shopify CDN: Minification failed

Line 8:0 Unexpected "{"
Line 8:1 Unexpected "{"
Line 8:3 Expected identifier but found "'global.css'"

**/
{{ 'global.css' | asset_url | stylesheet_tag }}
:root {
  --green: #2e8b3a;
  --green-dark: #256d2e;
  --green-light: #d4f0d4;
  --yellow: #f5c518;
  --yellow-dark: #e6b800;
  --yellow-bg: #ffd84d;
  --red-bar: #d94f5c;
  --gray-badge: #e0e0e0;
  --text-dark: #1a1a1a;
}

* { box-sizing: border-box; }

body {
  font-family: 'Nunito', sans-serif;
  background: #f9f9f9;
  color: var(--text-dark);
  margin: 0;
}

/* ANNOUNCEMENT BAR */

.announcement-bar {
  background: var(--red-bar);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.announcement-bar span.timer {
  font-weight: 800;
}

/* NAVBAR */

.main-nav {
  background: #fff;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  min-width: 90px;
}

.logo-top {
  font-size: 26px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: -1px;
}

.logo-bottom {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
}

/* SEARCH */

.search-wrap {
  flex: 1;
  display: flex;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  max-width: 700px;
}

.search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 15px;
}

.search-wrap button {
  background: var(--green);
  border: none;
  color: #fff;
  padding: 0 20px;
  font-size: 20px;
  cursor: pointer;
}

.search-wrap button:hover {
  background: var(--green-dark);
}

/* DELIVERY BADGE */

.delivery-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 7px 14px;
}

/* CATEGORY STRIP */

.category-strip-wrapper {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: relative;
  padding: 0 40px;
}

.category-strip {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 14px 0;
}

.cat-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 110px;
}

.cat-img-wrap {
  background: #f3f3f3;
  border-radius: 10px;
  width: 100px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-img-wrap img {
  width: 85px;
  height: 75px;
}

/* HERO */

.hero-banner {
  background: #ffd84d;
  border-radius: 14px;
  margin: 18px;
  padding: 40px 50px;
  display: flex;
  justify-content: space-between;
  min-height: 260px;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
}

.hero-sub {
  font-size: 32px;
  font-weight: 800;
}

.hero-desc {
  font-size: 17px;
  font-weight: 700;
}

/* PRODUCTS */

.products-row {
  display: flex;
  gap: 14px;
  padding: 0 18px 24px;
  overflow-x: auto;
}

.product-card {
  width: 210px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.product-card .p-img {
  height: 160px;
  padding: 14px;
  background: #fafafa;
}

.p-name {
  font-size: 13px;
  font-weight: 700;
}

.weight-badge {
  background: #e8e8e8;
  padding: 4px 8px;
  font-size: 12px;
}

.add-btn {
  background: var(--yellow);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  padding: 8px;
}

.add-btn:hover {
  background: var(--yellow-dark);
}

/* FOOTER */

/* .main-footer {
  background: #1a1a1a;
  color: #bbb;
  display: flex;
  justify-content: space-between;
  padding: 18px 28px;
} */
 .main-footer {
  background: rgb(255, 250, 250);
  color: #333333;
  /* padding: 18px 28px; */
  padding: 5px 0
}

/* Remove underline */
.main-footer a {
  text-decoration: none;
  color: inherit;
}

.main-footer a:hover {
  text-decoration: none;
  color: #108910;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .hero-img { width: 220px; }
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 22px; }
}

@media (max-width: 600px) {
  .hero-banner {
    flex-direction: column;
    padding: 24px 20px;
  }

  .main-footer {
    flex-direction: column;
    text-align: center;
  }
}