/** Shopify CDN: Minification failed

Line 21:10 Expected identifier but found whitespace
Line 21:19 Unexpected "{"
Line 21:29 Expected ":"
Line 27:9 Expected identifier but found whitespace
Line 27:19 Unexpected "{"
Line 27:29 Expected ":"
Line 31:11 Expected identifier but found whitespace
Line 31:19 Unexpected "{"
Line 31:29 Expected ":"
Line 34:11 Expected identifier but found whitespace
... and 17 more hidden warnings

**/
/* ============================================
   LOGOTEKA THEME - BASE STYLES
   Brand Book: Apple Green, Shadow Grey, Harvest Orange
============================================ */
:root {
  --green:        {{ settings.color_primary }};
  --green-dark:   #7a9348;
  --green-deep:   #4d6828;
  --green-light:  #d4e6b5;
  --green-pale:   #eef5e3;
  --green-mist:   #f5faf0;
  --grey:         {{ settings.color_text }};
  --grey-mid:     #6b7175;
  --grey-light:   #b0b5b8;
  --grey-pale:    #f0f1f2;
  --orange:       {{ settings.color_accent }};
  --orange-dark:  #d45e28;
  --orange-pale:  #fdf0e8;
  --yellow:       {{ settings.color_yellow }};
  --yellow-pale:  #fffbe8;
  --blue:         {{ settings.color_blue }};
  --blue-pale:    #edf2f8;
  --peach:        {{ settings.color_peach }};
  --peach-pale:   #fdf4f0;
  --purple:       {{ settings.color_purple }};
  --purple-pale:  #f5f2f9;
  --cream:        {{ settings.color_background }};
  --white:        #ffffff;
  --text:         {{ settings.color_text }};
  --text-mid:     #6b7175;
  --text-light:   #a0a5a8;
  --border:       #e2e8d8;
  --shadow-sm:    0 2px 8px rgba(58,62,65,0.07);
  --shadow-md:    0 6px 20px rgba(58,62,65,0.10);
  --shadow-lg:    0 16px 40px rgba(58,62,65,0.13);
  --r:            16px;
  --r-sm:         10px;
  --r-full:       100px;
  --font-body:    '{{ settings.font_body | default: "Quicksand" }}', sans-serif;
  --font-display: '{{ settings.font_display | default: "Quicksand" }}', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 500;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.page-width {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* On mobile, full-width container */
@media (max-width: 749px) {
  .page-width { padding: 0; }
}

/* ============================================
   ANNOUNCEMENT BAR
============================================ */
.ann-bar {
  background: var(--green);
  color: var(--white);
  padding: 9px 0;
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.ann-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  gap: 0;
}
.ann-track span {
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.ann-dot {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   HEADER
============================================ */
.site-header {
  background: var(--white);
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1.5px solid var(--border);
}
.hamburger {
  width: 36px; height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--grey);
  border-radius: 2px;
  transition: all 0.2s;
}
.hamburger span:nth-child(2) { width: 70%; }

.logo-wrap { display:flex; align-items:center; gap:9px; }
.logo-svg { width:36px; height:36px; flex-shrink: 0; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--grey);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}
.logo-sub {
  font-size: 0.58rem;
  color: var(--grey-mid);
  letter-spacing: 0.8px;
  font-weight: 500;
  margin-top: 2px;
}

.header-right { display:flex; align-items:center; gap:4px; }
.hdr-btn {
  width:38px; height:38px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  transition: background 0.15s;
}
.hdr-btn:hover { background: var(--green-pale); }
.hdr-btn svg { width:20px; height:20px; stroke: var(--grey); }
.cart-count {
  position:absolute;
  top:4px; right:4px;
  background: var(--orange);
  color: white;
  font-size:0.55rem;
  font-weight:700;
  width:15px; height:15px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* ============================================
   MOBILE NAV DRAWER
============================================ */
.mobile-nav {
  position: fixed;
  top: 0; left: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 30px rgba(0,0,0,0.15);
}
.mobile-nav.open { left: 0; }
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mn-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mn-close {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--grey);
}
.mn-links { padding: 14px 0; }
.mn-link {
  display: block;
  padding: 14px 22px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--grey);
  border-bottom: 1px solid var(--border);
}
.mn-link:hover { background: var(--green-pale); color: var(--green-deep); }

/* ============================================
   BUTTONS (reusable)
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 20px;
  border-radius: var(--r-full);
  transition: all 0.2s;
  border: none;
}
.btn-primary {
  background: var(--orange);
  color: white;
  box-shadow: 0 4px 16px rgba(238,117,61,0.4);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(238,117,61,0.5); background: var(--orange-dark); }
.btn-secondary {
  background: var(--grey);
  color: white;
}
.btn-secondary:hover { background: var(--orange); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
}
.btn-outline:hover { background: var(--green); color: white; }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

/* ============================================
   SECTION HEADERS
============================================ */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--grey);
  letter-spacing: -0.2px;
}
.section-all {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 3px;
}
.section-kicker {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================
   STICKY BOTTOM CTA
============================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1.5px solid var(--border);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 300;
  display: flex;
  gap: 9px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
@media (min-width: 750px) {
  .sticky-bar { display: none; }
}
body { padding-bottom: 76px; }
@media (min-width: 750px) {
  body { padding-bottom: 0; }
}
.sticky-main-btn {
  flex: 1;
  background: var(--orange);
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 16px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 14px rgba(238,117,61,0.35);
}
.sticky-cart-btn {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  position: relative;
}
.sticky-cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--orange);
  color: white;
  font-size: 0.55rem;
  font-weight: 800;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #2a2d30;
  padding: 28px 20px 22px;
  color: white;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-bottom: 20px;
}
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}
.footer-col a {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.58);
  margin-bottom: 5px;
  font-weight: 500;
  transition: color 0.15s;
}
.footer-col a:hover { color: white; }
.footer-social {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.soc-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  padding: 8px 14px;
  color: white;
  font-size: 0.78rem;
  font-weight: 600;
  transition: background 0.15s;
}
.soc-btn:hover { background: rgba(255,255,255,0.13); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 14px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.28);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* ============================================
   DESKTOP RESPONSIVE
============================================ */
@media (min-width: 750px) {
  body { max-width: none; }
  .site-header { padding: 0 40px; height: 72px; }
  .hamburger { display: none; }
  .logo-name { font-size: 1.15rem; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

/* Cart drawer placeholder */
.cart-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: white;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  box-shadow: -2px 0 30px rgba(0,0,0,0.15);
}
.cart-drawer.open { right: 0; }
