:root {
  --glk-green: #126805;
  --glk-green-2: #1f7d13;
  --glk-green-soft: #eaf5e7;
  --glk-yellow: #f6b72b;
  --glk-text: #161616;
  --glk-muted: #60656d;
  --glk-line: #e7e7e1;
  --glk-bg: #fbfbf7;
  --glk-card: #ffffff;
  --glk-shadow: 0 12px 30px rgba(18, 104, 5, 0.1);
}

/* Gloketh shared base, header, footer, and mobile navigation */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--glk-bg);
  color: var(--glk-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.landing-container {
  width: min(100% - 48px, 1840px);
  margin: 0 auto;
}

.gloketh-page {
  min-height: 100vh;
  background: #fffefa;
}

.top-strip {
  background: #115f05;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.top-strip__inner,
.top-strip__left,
.top-strip__right {
  display: flex;
  align-items: center;
}

.top-strip__inner {
  justify-content: space-between;
  min-height: 42px;
  gap: 24px;
}

.top-strip__left,
.top-strip__right {
  gap: 28px;
  flex-wrap: wrap;
}

.top-strip i {
  margin-right: 6px;
}

.social-icons {
  display: inline-flex;
  gap: 14px;
}

.language-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
}

.main-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid #eceee8;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
}

.main-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  color: var(--glk-green);
}

.brand__mark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 252px;
  height: 74px;
  border: 0;
  border-radius: 0;
  background: transparent url("/assets/gloketh/Gloketh_logo.png") left center / contain no-repeat;
}

.brand__mark::before,
.brand__mark::after,
.brand__mark span::before,
.brand__mark span::after {
  display: none;
}

.brand__text {
  display: none;
  font-size: 38px;
  line-height: 1;
}

.gloketh-inline-brand {
  color: #15740a;
}

.gloketh-inline-brand .brand__mark {
  width: 210px;
  height: 62px;
}

.gloketh-inline-brand .brand__text {
  font-size: 30px;
}

.mobile-menu-brand {
  color: #fff;
}

.mobile-menu-brand .brand__mark {
  width: 178px;
  height: 52px;
}

.mobile-menu-brand .brand__text {
  font-size: 24px;
}

/* Compact header for inner pages */
/* Gloketh category page */
.glk-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid #e7ece4;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 24, 39, 0.08);
}

.glk-site-header .glk-header-main {
  display: grid;
  grid-template-columns: 218px minmax(620px, 770px) 230px minmax(248px, 1fr);
  width: min(1828px, calc(100% - 96px));
  gap: 36px;
  align-items: center;
  min-height: 88px;
}

.glk-site-header .brand {
  gap: 10px;
  min-width: 0;
}

.glk-site-header .brand__mark {
  width: 210px;
  height: 62px;
}

.glk-site-header .brand__text {
  color: #15740a;
  font-size: 31px;
  font-weight: 900;
  letter-spacing: 0;
}

.glk-header-search {
  display: grid;
  grid-template-columns: 1fr 58px;
  height: 48px;
  overflow: hidden;
  border: 1px solid #d7ddd2;
  border-radius: 4px;
  background: #fff;
}

.glk-header-search label,
.glk-header-search input {
  min-width: 0;
  width: 100%;
  height: 100%;
}

.glk-header-search input {
  border: 0;
  padding: 0 19px;
  color: #1b2430;
  font-size: 13px;
  font-weight: 700;
  outline: 0;
}

.glk-header-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(180deg, #126f07 0%, #075d02 100%);
  color: #fff;
  font-size: 20px;
}

.glk-delivery-date {
  display: grid;
  grid-template-columns: 23px 1fr 11px;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d7ddd2;
  border-radius: 5px;
  background: #fff;
  color: #121a12;
  text-align: left;
}

.glk-delivery-date > i:first-child {
  font-size: 18px;
}

.glk-delivery-date span {
  color: #6a7068;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
}

.glk-delivery-date strong {
  display: block;
  margin-top: 2px;
  color: #0a6a04;
  font-size: 13px;
  font-weight: 900;
}

.glk-site-header .nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 22px;
  padding-left: 0;
}

.glk-site-header .action-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 38px;
  padding-top: 0;
  color: #090d09;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.glk-site-header .action-icon span {
  position: absolute;
  top: -5px;
  right: auto;
  left: 20px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: #126f07;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.glk-site-header .action-icon small {
  display: none;
  color: #111827;
  font-size: 11px;
  font-weight: 900;
}

.glk-site-header .login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 151px;
  min-height: 44px;
  padding: 0 19px;
  border-radius: 5px;
  background: linear-gradient(180deg, #126f07 0%, #075d02 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.glk-site-header .main-nav {
  position: static;
  border-top: 0;
  border-bottom: 0;
  background: #fff;
  backdrop-filter: none;
}

.glk-site-header .main-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1828px, calc(100% - 96px));
  min-height: 42px;
}

.glk-site-header .menu-toggle {
  display: none;
}

.glk-site-header .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 82px;
  width: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.glk-site-header .nav-links li {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.glk-site-header .nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #070b07;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 0;
  white-space: nowrap;
}

.glk-site-header .nav-links a i {
  font-size: 10px;
}

.glk-site-header .nav-links a.active,
.glk-site-header .nav-links a:hover {
  color: #0b6d06;
}

/* Shared footer and floating actions */
.mobile-tabbar {
  display: none;
}

.mobile-label {
  display: none;
}

.mobile-link-label {
  display: none;
}

.landing-footer {
  background: #fff;
  border-top: 1px solid #e4e7df;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr) 1.5fr;
  gap: 42px;
  padding: 34px 0 28px;
}

.footer-grid .brand__mark {
  width: 210px;
  height: 62px;
}

.footer-grid .brand__text {
  font-size: 30px;
}

.footer-brand p {
  max-width: 275px;
  margin: 16px 0;
  color: var(--glk-muted);
  font-weight: 700;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: #e8f4e4;
  color: var(--glk-green);
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 900;
}

.footer-grid nav,
.footer-grid address {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #2e3034;
  font-style: normal;
  font-weight: 700;
}

.footer-grid address span,
.footer-grid address a {
  display: inline-flex;
  gap: 10px;
}

.footer-bottom {
  background: var(--glk-green);
  color: #fff;
  font-weight: 800;
}

.footer-bottom .landing-container {
  display: flex;
  justify-content: space-between;
  min-height: 42px;
  align-items: center;
}

.whatsapp-float,
.back-to-top {
  position: fixed;
  right: 34px;
  z-index: 40;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.whatsapp-float {
  bottom: 90px;
  background: #25d366;
  font-size: 34px;
}

.back-to-top {
  bottom: 26px;
  background: #0c5902;
  font-size: 22px;
}

@media (max-width: 1500px) {
  .glk-site-header .glk-header-main {
    width: min(1320px, calc(100% - 56px));
    grid-template-columns: 188px minmax(430px, 1fr) 214px auto;
    gap: 22px;
  }

  .glk-site-header .nav-links {
    gap: 58px;
  }

  .glk-site-header .main-nav__inner {
    width: min(1320px, calc(100% - 56px));
  }

  .glk-site-header .nav-actions {
    gap: 18px;
    padding-left: 0;
  }
}

@media (max-width: 1199px) {
  .glk-site-header .glk-header-main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    min-height: 70px;
  }

  .glk-header-search,
  .glk-delivery-date,
  .glk-site-header .login-button {
    display: none;
  }

  .glk-site-header .main-nav__inner {
    justify-content: center;
    min-height: 0;
  }

  .glk-site-header .menu-toggle {
    display: grid;
    place-items: center;
  }

  .glk-site-header .nav-links {
    position: absolute;
    top: 118px;
    right: 28px;
    left: 28px;
    display: none;
    gap: 0;
    padding: 12px;
    border: 1px solid #dfe7dc;
    border-radius: 8px;
    background: #fff;
  }

  .glk-site-header .nav-links.is-open {
    display: grid;
  }

  .glk-site-header .nav-links a {
    display: block;
    padding: 11px 8px;
  }
}

@media (max-width: 767px) {
  .glk-site-header .glk-header-main {
    width: calc(100% - 28px);
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 12px 14px;
    padding: 10px 0 12px;
  }

  .glk-site-header .menu-toggle {
    grid-column: 1;
    grid-row: 1;
    width: 24px;
    height: 32px;
    padding: 0;
    font-size: 18px;
  }

  .glk-site-header .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .glk-site-header .brand__mark {
    width: 152px;
    height: 45px;
  }

  .glk-site-header .nav-actions {
    grid-column: 3;
    grid-row: 1;
    gap: 12px;
    justify-self: end;
  }

  .glk-site-header .action-icon span {
    display: none;
  }

  .glk-site-header .action-icon {
    grid-template-columns: 24px;
    width: 24px;
    height: 28px;
    font-size: 20px;
  }

  .glk-site-header .main-nav__inner {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .landing-footer {
    background: #075e06;
    color: #fff;
  }

  .footer-grid {
    display: block;
    padding: 28px 0 16px;
  }

  .footer-brand p,
  .footer-grid nav,
  .footer-grid address {
    color: rgba(255, 255, 255, 0.92);
  }

  .footer-grid .brand {
    color: #fff;
  }

  .footer-grid .brand__mark {
    border-color: #fff;
  }

  .footer-grid .brand__mark::before,
  .footer-grid .brand__mark::after,
  .footer-grid .brand__mark span::before,
  .footer-grid .brand__mark span::after {
    background: #fff;
  }

  .footer-grid .brand__text {
    color: #fff;
    font-size: 28px;
  }

  .footer-socials i {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .footer-grid nav,
  .footer-grid address {
    position: relative;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-grid h3 {
    margin: 0;
    color: #fff;
    font-size: 13px;
  }

  .footer-grid nav::after,
  .footer-grid address::after {
    position: absolute;
    top: 14px;
    right: 0;
    content: "+";
    color: #fff;
    font-size: 20px;
    line-height: 1;
  }

  .footer-bottom {
    background: #075e06;
    color: rgba(255, 255, 255, 0.9);
  }

  .footer-bottom .landing-container {
    min-height: 36px;
    padding-bottom: 10px;
    font-size: 11px;
  }

  .mobile-tabbar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 66px;
    padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
    border-top: 1px solid #e2e7dc;
    background: #fff;
    box-shadow: 0 -8px 24px rgba(21, 95, 19, 0.08);
  }

  .mobile-tabbar a {
    display: grid;
    place-items: center;
    gap: 3px;
    color: #222;
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-tabbar i {
    font-size: 18px;
  }

  .mobile-tabbar .active {
    color: var(--glk-green);
  }

  .whatsapp-float {
    right: 18px;
    bottom: 82px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 430px) {
  .landing-container {
    width: calc(100% - 22px);
  }

  .main-nav__inner {
    min-height: 54px;
    grid-template-columns: 26px 1fr auto;
    gap: 10px;
  }

  .mobile-tabbar {
    min-height: 58px;
    padding-top: 6px;
  }

  .mobile-tabbar a {
    font-size: 8px;
  }

  .mobile-tabbar i {
    font-size: 15px;
  }
}
