/* тХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХР
   F2P.KZ тАФ Design System 2026
   EU trends: quiet luxury ┬╖ organic minimalism ┬╖ mobile-first
   Typography: Fraunces (display) + DM Sans (UI)
   тХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХРтХР */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&display=swap');

:root {
  /* Earth & sage palette тАФ sustainable EU grocery 2026 */
  --f2p-bg: #f7f5f0;
  --f2p-surface: #ffffff;
  --f2p-surface-2: #f0ede6;
  --f2p-border: #e7e4dc;
  --f2p-border-strong: #d6d0c4;

  --f2p-green: #2d5a3d;
  --f2p-green-dark: #1e3d29;
  --f2p-green-light: #4a7c59;
  --f2p-green-pale: #e8f0ea;
  --f2p-green-muted: #6b8f72;

  --f2p-terra: #c4673a;
  --f2p-terra-dark: #a3522e;
  --f2p-terra-pale: #faf0ea;

  --f2p-text: #1c1917;
  --f2p-text-secondary: #57534e;
  --f2p-text-muted: #5c5752;
  --f2p-text-inverse: #fafaf9;

  --f2p-topbar: #1a3d2e;

  /* Legacy aliases */
  --f2p-orange: var(--f2p-terra);
  --f2p-orange-dark: var(--f2p-terra-dark);
  --f2p-orange-light: #d4845c;
  --f2p-gold: #d4a853;
  --f2p-dark: var(--f2p-green-dark);
  --f2p-white: #ffffff;

  /* Spacing & shape */
  --f2p-radius-sm: 10px;
  --f2p-radius: 16px;
  --f2p-radius-lg: 24px;
  --f2p-radius-xl: 32px;
  --f2p-radius-full: 999px;

  --f2p-shadow-xs: 0 1px 2px rgba(28, 25, 23, 0.04);
  --f2p-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  --f2p-shadow-lg: 0 12px 40px rgba(28, 25, 23, 0.1);
  --f2p-shadow-hover: 0 16px 48px rgba(45, 90, 61, 0.12);

  --f2p-font: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f2p-font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f2p-num-font: 'DM Sans', ui-monospace, monospace;

  --f2p-touch: 48px;
  --f2p-header-h: 72px;
  --f2p-mobile-bar-h: 64px;
  --f2p-safe-bottom: env(safe-area-inset-bottom, 0px);

  --f2p-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* тФАтФА Base тФАтФА */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--f2p-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--f2p-text);
  background: var(--f2p-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--f2p-mobile-bar-h) + var(--f2p-safe-bottom));
}

@media (min-width: 992px) {
  body { padding-bottom: 0; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f2p-font-display);
  color: var(--f2p-text);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: none !important;
}

a {
  color: var(--f2p-green);
  transition: color var(--f2p-transition);
  text-decoration: none;
}

a:hover, a:focus { color: var(--f2p-terra); }

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

/* тФАтФА Buttons (global) тФАтФА */
.f2p-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--f2p-touch);
  padding: 0 24px;
  font-family: var(--f2p-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--f2p-radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--f2p-transition), color var(--f2p-transition),
              border-color var(--f2p-transition), transform 0.15s ease, box-shadow var(--f2p-transition);
  text-shadow: none !important;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.f2p-btn:active { transform: scale(0.98); }

.f2p-btn--primary {
  background: var(--f2p-green);
  color: var(--f2p-text-inverse) !important;
  border-color: var(--f2p-green);
  box-shadow: var(--f2p-shadow-xs);
}

.f2p-btn--primary:hover {
  background: var(--f2p-green-dark);
  border-color: var(--f2p-green-dark);
  color: var(--f2p-text-inverse) !important;
  box-shadow: var(--f2p-shadow);
}

.f2p-btn--outline {
  background: transparent;
  color: var(--f2p-green) !important;
  border-color: var(--f2p-border-strong);
}

.f2p-btn--outline:hover {
  background: var(--f2p-green-pale);
  border-color: var(--f2p-green);
  color: var(--f2p-green-dark) !important;
}

.f2p-btn--lg {
  min-height: 52px;
  padding: 0 28px;
  font-size: 16px;
}

/* тФАтФА Top bar тФАтФА */
#top {
  background: var(--f2p-topbar);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  min-height: 36px;
  padding: 6px 0;
}

#top .container,
#top a,
#top .btn-link,
#top .list-inline > li,
#top .list-inline > li > a,
#top .dropdown-toggle,
#top-links a,
#top-links li {
  color: #e8ebe9 !important;
  font-family: var(--f2p-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: none !important;
}

#top .btn-link:hover,
#top a:hover,
#top-links a:hover {
  color: #fde68a !important;
  text-decoration: none;
}

#top .dropdown-menu {
  background: var(--f2p-surface);
  border-radius: var(--f2p-radius);
  border: 1px solid var(--f2p-border);
  box-shadow: var(--f2p-shadow-lg);
  padding: 8px 0;
}

#top .dropdown-menu a {
  color: var(--f2p-text) !important;
  font-weight: 500;
  padding: 10px 16px;
  text-shadow: none !important;
}

#top .dropdown-menu a:hover {
  background: var(--f2p-green-pale);
  color: var(--f2p-green-dark) !important;
}

#top-links { padding-top: 0; }

#top .fa {
  font-size: 16px;
  width: 16px;
  text-align: center;
}
#top .list-inline > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.f2p-language-label {
  color: #e8ebe9;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: none !important;
}

nav#top #top-links .btn-link,
nav#top #top-links a,
nav#top #top-links li,
nav#top #top-links li a,
nav#top .btn-group .btn-link,
#top, #top *, #top .fa, #top span, #top .caret {
  text-shadow: none !important;
  filter: none !important;
}

#top .btn-link {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  #top .hidden-xs { display: none !important; }
  #top { padding: 4px 0; }
}

/* тФАтФА Header тФАтФА */
header {
  background: var(--f2p-surface);
  padding: 16px 0;
  border-bottom: 1px solid var(--f2p-border);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.92);
}

header .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#logo img {
  max-height: 128px;
  width: auto;
}

#logo h1 a {
  font-family: var(--f2p-font-display);
  color: var(--f2p-green);
  font-weight: 700;
  font-size: 28px;
}

/* Search */
#search { margin: 0; }

#search .input-group {
  border-radius: var(--f2p-radius-full);
  overflow: hidden;
  border: 1.5px solid var(--f2p-border);
  background: var(--f2p-surface-2);
  transition: border-color var(--f2p-transition), box-shadow var(--f2p-transition);
}

#search .input-group:focus-within {
  border-color: var(--f2p-green-light);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.12);
}

#search .input-lg {
  border: none !important;
  background: transparent !important;
  height: var(--f2p-touch);
  font-size: 16px;
  font-family: var(--f2p-font);
  box-shadow: none !important;
  padding-left: 20px;
}

#search .input-lg:focus { outline: none; }

#search .btn {
  background: var(--f2p-green) !important;
  border: none !important;
  color: #fff !important;
  height: var(--f2p-touch);
  min-width: var(--f2p-touch);
  border-radius: 0 !important;
  font-size: 18px;
  transition: background var(--f2p-transition);
}

#search.f2p-search .btn.f2p-search__btn {
  border-radius: 999px !important;
}

#search .btn:hover { background: var(--f2p-green-dark) !important; }

/* Phone in header */
.f2p-header-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: var(--f2p-touch);
}

.f2p-header-phone__link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none !important;
  text-shadow: none !important;
  padding: 8px 14px;
  border-radius: var(--f2p-radius);
  border: 1.5px solid var(--f2p-border);
  background: var(--f2p-surface-2);
  transition: border-color var(--f2p-transition), background var(--f2p-transition);
}

.f2p-header-phone__link:hover {
  border-color: var(--f2p-green-light);
  background: var(--f2p-green-pale);
}

.f2p-header-phone__label {
  font-size: 10px;
  font-weight: 600;
  color: var(--f2p-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-shadow: none !important;
}

.f2p-header-phone__number {
  font-size: 16px;
  font-weight: 700;
  color: var(--f2p-green-dark);
  font-family: var(--f2p-num-font);
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-shadow: none !important;
}

.f2p-header-phone__link:hover .f2p-header-phone__number { color: var(--f2p-terra); }

/* Cart button */
#cart > .btn {
  background: var(--f2p-green) !important;
  border: none !important;
  border-radius: var(--f2p-radius-full) !important;
  min-height: var(--f2p-touch);
  font-family: var(--f2p-font);
  font-weight: 600;
  font-size: 14px;
  color: #fff !important;
  padding: 0 20px;
  box-shadow: var(--f2p-shadow-xs);
  transition: background var(--f2p-transition), box-shadow var(--f2p-transition);
  text-shadow: none !important;
}

#cart > .btn:hover {
  background: var(--f2p-green-dark) !important;
  box-shadow: var(--f2p-shadow);
}

#cart-total {
  font-family: var(--f2p-num-font);
  font-weight: 700;
  text-shadow: none !important;
}

#cart .dropdown-menu {
  border-radius: var(--f2p-radius);
  border: 1px solid var(--f2p-border);
  box-shadow: var(--f2p-shadow-lg);
  padding: 12px;
}

@media (max-width: 991px) {
  .f2p-header-phone-wrap { display: none; }

  header { padding: 12px 0; }

  header .row > [class*="col-"] { margin-bottom: 10px; }

  #logo { text-align: center; }
  #logo img { max-height: 112px; max-width: min(128px, 46vw); margin: 0 auto; }

  #search .col-sm-5, header .col-sm-4, header .col-sm-3, header .col-sm-2 {
    width: 100%;
    float: none;
  }

  #cart > .btn {
    width: 100%;
    border-radius: var(--f2p-radius) !important;
  }
}

/* тФАтФА Navigation тФАтФА */
#menu {
  background: var(--f2p-surface);
  border-bottom: 1px solid var(--f2p-border);
  margin-bottom: 0;
  min-height: auto;
}

#menu .navbar-header { border: none; }

#menu #category {
  font-family: var(--f2p-font);
  font-weight: 600;
  color: var(--f2p-text);
  padding: 12px 0;
}

#menu .nav > li > a {
  color: var(--f2p-text);
  font-family: var(--f2p-font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  transition: color var(--f2p-transition);
  text-shadow: none !important;
}

#menu .nav > li > a::after { display: none; }

#menu .nav > li > a:hover,
#menu .nav > li.open > a {
  color: var(--f2p-green);
  background: transparent;
}

#menu .btn-navbar {
  background: var(--f2p-green) !important;
  border: none !important;
  border-radius: var(--f2p-radius-sm) !important;
  min-height: var(--f2p-touch);
  min-width: var(--f2p-touch);
  margin: 8px 0;
}

#menu .dropdown-menu {
  border-radius: var(--f2p-radius);
  border: 1px solid var(--f2p-border);
  box-shadow: var(--f2p-shadow-lg);
}

#menu .dropdown-menu li > a:hover {
  background: var(--f2p-green-pale);
  color: var(--f2p-green-dark);
}

/* тФАтФА Hero тФАтФА */
.f2p-hero {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
  background: var(--f2p-surface);
  border-bottom: 1px solid var(--f2p-border);
}

.f2p-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 65% at 8% 92%, rgba(45, 90, 61, 0.1) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at 92% 8%, rgba(74, 124, 89, 0.07) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(247, 245, 240, 0.9) 0%, transparent 70%),
    var(--f2p-bg);
  pointer-events: none;
}

.f2p-hero__inner {
  position: relative;
  max-width: 720px;
}

.f2p-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--f2p-green-muted);
  margin: 0 0 16px;
}

.f2p-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--f2p-green);
  flex-shrink: 0;
}
/* Eco trust badges (hero) */
.f2p-eco-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.f2p-eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #e8f0ea;
  color: #2d5a3d;
  border: 1px solid #c5d9c9;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: none !important;
}

.f2p-eco-badge i {
  font-size: 11px;
  opacity: 0.85;
}


.f2p-hero__title {
  font-family: var(--f2p-font-display);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--f2p-text);
  margin: 0 0 16px;
  text-shadow: none !important;
}

.f2p-hero__title em {
  font-style: italic;
  color: var(--f2p-green);
  font-weight: 500;
}

.f2p-hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--f2p-text-secondary);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 540px;
}

.f2p-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 575px) {
  .f2p-hero { padding: 32px 0 40px; }

  .f2p-hero__actions {
    flex-direction: column;
  }

  .f2p-hero__actions .f2p-btn {
    width: 100%;
  }
}

/* тФАтФА Section headers тФАтФА */
.f2p-section-head {
  margin-bottom: 24px;
}

.f2p-section-head__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 6px;
}

.f2p-section-head__sub {
  font-size: 15px;
  color: var(--f2p-text-muted);
  margin: 0;
}

/* тФАтФА Bento categories тФАтФА */
.f2p-bento {
  padding: 40px 0 48px;
}

.f2p-bento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.f2p-bento__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: var(--f2p-surface);
  border: 1.5px solid var(--f2p-border);
  border-radius: var(--f2p-radius-lg);
  text-decoration: none !important;
  color: inherit !important;
  min-height: 140px;
  transition: border-color var(--f2p-transition), box-shadow var(--f2p-transition),
              transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.f2p-bento__card:hover {
  border-color: var(--f2p-green-light);
  box-shadow: var(--f2p-shadow);
  transform: translateY(-2px);
  color: inherit !important;
}

.f2p-bento__card--wide {
  grid-column: 1 / -1;
  padding: 24px 20px;
}

.f2p-bento__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--f2p-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.f2p-bento__card--meat .f2p-bento__icon { background: linear-gradient(135deg, #8f5e4a, #6b4538); }
.f2p-bento__card--veg .f2p-bento__icon  { background: linear-gradient(135deg, #3d6b4a, #5a8263); }
.f2p-bento__card--eggs .f2p-bento__icon { background: linear-gradient(135deg, #a8925c, #8a7548); }

.f2p-bento__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.f2p-bento__title {
  font-family: var(--f2p-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--f2p-text);
  display: block;
}


.f2p-bento__desc {
  font-size: 14px;
  color: var(--f2p-text-muted);
  display: block;
}

.f2p-bento__arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--f2p-surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--f2p-green);
  transition: background var(--f2p-transition), color var(--f2p-transition);
}

.f2p-bento__card:hover .f2p-bento__arrow {
  background: var(--f2p-green);
  color: #fff;
}

@media (min-width: 768px) {
  .f2p-bento__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .f2p-bento__card--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
    flex-direction: row;
    position: static;
    padding: 20px 18px;
  }

  .f2p-bento__card--wide .f2p-bento__arrow {
    position: static;
  }
}

/* тФАтФА Trust strip тФАтФА */
.f2p-trust {
  padding: 0 0 40px;
}

.f2p-trust__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 8px;
}

.f2p-trust__scroll::-webkit-scrollbar { display: none; }

.f2p-trust__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--f2p-surface);
  border: 1px solid var(--f2p-border);
  border-radius: var(--f2p-radius-full);
  min-height: var(--f2p-touch);
}

.f2p-trust__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--f2p-green-pale);
  color: var(--f2p-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.f2p-trust__text {
  font-size: 14px;
  font-weight: 600;
  color: var(--f2p-text);
  white-space: nowrap;
}

@media (min-width: 992px) {
  .f2p-trust__scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .f2p-trust__item { white-space: normal; }
  .f2p-trust__text { white-space: normal; }
}

.f2p-home-modules { padding-bottom: 32px; }

/* тФАтФА Product cards (catalog) тФАтФА */
#product-category,
#product-search,
#product-special {
  padding-top: 8px;
}

#product-category h1,
#product-search h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: 20px;
}

.breadcrumb {
  background: transparent;
  padding: 12px 0;
  margin-bottom: 8px;
  font-size: 14px;
}

.breadcrumb > li + li::before { color: var(--f2p-text-muted); }

.breadcrumb a {
  color: var(--f2p-text-muted);
  font-weight: 500;
}

.breadcrumb a:hover { color: var(--f2p-green); }

.product-layout {
  margin-bottom: 16px;
}

.product-thumb {
  background: var(--f2p-surface);
  border: 1.5px solid var(--f2p-border);
  border-radius: var(--f2p-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color var(--f2p-transition), box-shadow var(--f2p-transition);
  margin-bottom: 0;
  position: relative;
}

.product-thumb:hover {
  border-color: rgba(45, 90, 61, 0.35);
  box-shadow: var(--f2p-shadow);
}

.product-thumb .image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--f2p-surface-2);
}

.product-thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-thumb:hover .image img { transform: scale(1.04); }

.product-thumb .caption {
  padding: 16px 16px 8px;
  flex: 1;
}

.product-thumb .caption h4 {
  font-family: var(--f2p-font);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.35;
}

.product-thumb .caption h4 a {
  color: var(--f2p-text);
  text-decoration: none;
}

.product-thumb .caption h4 a:hover { color: var(--f2p-green); }

.product-thumb .caption p {
  font-size: 14px;
  color: var(--f2p-text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.product-thumb .caption .price,
.product-thumb .price {
  font-family: var(--f2p-num-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--f2p-green-dark);
  margin: 0;
}

.product-thumb .price-tax {
  font-size: 12px;
  color: var(--f2p-text-muted);
  font-weight: 400;
}

.product-thumb .button-group {
  display: flex;
  border-top: 1px solid var(--f2p-border);
  margin-top: auto;
}

.product-thumb .button-group button {
  flex: 1;
  min-height: var(--f2p-touch);
  background: transparent !important;
  border: none !important;
  color: var(--f2p-green) !important;
  font-family: var(--f2p-font);
  font-size: 14px;
  font-weight: 600;
  transition: background var(--f2p-transition), color var(--f2p-transition);
  text-shadow: none !important;
}

.product-thumb .button-group button:first-child {
  background: var(--f2p-green) !important;
  color: #fff !important;
  border-radius: 0 !important;
}

.product-thumb .button-group button:first-child:hover {
  background: var(--f2p-green-dark) !important;
}

.product-thumb .button-group button + button {
  border-left: 1px solid var(--f2p-border) !important;
  max-width: 52px;
  flex: 0 0 52px;
}

.product-thumb .button-group button + button:hover {
  background: var(--f2p-green-pale) !important;
  color: var(--f2p-green-dark) !important;
}

/* Grid view */
#content .product-grid .product-layout {
  padding: 0 8px;
}

@media (max-width: 767px) {
  #content .product-grid .product-layout.col-xs-12 {
    width: 50%;
    float: left;
    padding: 0 6px;
  }

  .product-list .product-thumb {
    flex-direction: row;
    position: relative;
}

  .product-list .product-thumb .image {
    width: 120px;
    flex-shrink: 0;
    aspect-ratio: 1;
  }

  .product-list .product-thumb .caption { padding: 12px; }

  .product-list .product-thumb .button-group {
    flex-direction: column;
    border-top: none;
    border-left: 1px solid var(--f2p-border);
    width: 56px;
    flex-shrink: 0;
  }

  .product-list .product-thumb .button-group button:first-child {
    writing-mode: vertical-rl;
    font-size: 12px;
  }
}

/* Catalog toolbar */
#content .row:first-of-type select.form-control,
#content select.form-control {
  min-height: 44px;
  border-radius: var(--f2p-radius-sm);
  border: 1.5px solid var(--f2p-border);
  font-family: var(--f2p-font);
  font-size: 14px;
}

#list-view, #grid-view {
  min-height: 44px;
  min-width: 44px;
  border-radius: var(--f2p-radius-sm) !important;
}

/* тФАтФА Product page тФАтФА */
#product-product .f2p-product-title,
#product-product h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 16px;
}

#product-product .thumbnails .thumbnail {
  border-radius: var(--f2p-radius);
  border: 1px solid var(--f2p-border);
  overflow: hidden;
}

#product-product .thumbnails .thumbnail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

#product-product #button-cart {
  background: var(--f2p-green) !important;
  border: none !important;
  border-radius: var(--f2p-radius-full) !important;
  min-height: 52px;
  font-family: var(--f2p-font);
  font-weight: 700;
  font-size: 16px;
  padding: 0 32px;
  text-shadow: none !important;
}

#product-product #button-cart:hover {
  background: var(--f2p-green-dark) !important;
}

#product-product .price h2 {
  font-family: var(--f2p-num-font);
  color: var(--f2p-green-dark);
  font-size: clamp(1.5rem, 4vw, 2rem);
}

#product-product .nav-tabs {
  border-bottom: 1.5px solid var(--f2p-border);
}

#product-product .nav-tabs > li > a {
  font-family: var(--f2p-font);
  font-weight: 600;
  color: var(--f2p-text-muted);
  border-radius: var(--f2p-radius-sm) var(--f2p-radius-sm) 0 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

#product-product .nav-tabs > li.active > a {
  color: var(--f2p-green);
  border-bottom-color: var(--f2p-green) !important;
}

/* тФАтФА Footer тФАтФА */
.f2p-footer {
  background: var(--f2p-green-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 32px;
  margin-top: 0;
}

.f2p-footer h5 {
  font-family: var(--f2p-font);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.f2p-footer-brand {
  font-family: var(--f2p-font-display);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.f2p-footer-brand span { color: var(--f2p-terra); }

.f2p-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.f2p-phone a {
  color: #fff !important;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: var(--f2p-touch);
  text-shadow: none !important;
}

.f2p-phone a:hover { color: var(--f2p-gold) !important; }

.f2p-footer a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 2;
  transition: color var(--f2p-transition);
  text-shadow: none !important;
}

.f2p-footer a:hover { color: #fff; }

.f2p-footer-partners-link a {
  font-weight: 600;
  color: var(--f2p-gold) !important;
}

.f2p-copyright {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (max-width: 767px) {
  .f2p-footer .col-sm-2,
  .f2p-footer .col-sm-3,
  .f2p-footer .col-sm-4 {
    margin-bottom: 28px;
  }
}

/* тФАтФА Mobile bottom bar тФАтФА */
.f2p-mobile-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  background: var(--f2p-surface);
  border-top: 1px solid var(--f2p-border);
  padding-bottom: var(--f2p-safe-bottom);
  box-shadow: 0 -4px 24px rgba(28, 25, 23, 0.08);
}

.f2p-mobile-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: var(--f2p-mobile-bar-h);
  padding: 8px 4px;
  color: var(--f2p-text-muted) !important;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none !important;
  transition: color var(--f2p-transition);
  -webkit-tap-highlight-color: transparent;
  text-shadow: none !important;
}

.f2p-mobile-bar__item i {
  font-size: 20px;
}

.f2p-mobile-bar__item--active,
.f2p-mobile-bar__item:hover {
  color: var(--f2p-green) !important;
}

.f2p-mobile-bar__item--cart {
  color: var(--f2p-green) !important;
}

@media (min-width: 992px) {
  .f2p-mobile-bar { display: none; }
}

/* тФАтФА Partners page тФАтФА */
.f2p-partners-page {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  padding: 16px 0;
}

.f2p-partner-card {
  background: var(--f2p-surface);
  border: 1px solid var(--f2p-border);
  border-radius: var(--f2p-radius);
  padding: 20px;
  text-align: center;
  transition: box-shadow var(--f2p-transition);
}

.f2p-partner-card:hover { box-shadow: var(--f2p-shadow); }

.f2p-partner-card img {
  max-height: 48px;
  width: auto;
  margin: 0 auto 12px;
  object-fit: contain;
}

/* тФАтФА Legacy class compat тФАтФА */
.f2p-categories, .f2p-features, .f2p-cat-card,
.f2p-hero-badge, .f2p-hero-gradient, .f2p-hero-brand,
.f2p-hero-subtitle, .f2p-cat-icon, .f2p-cat-link, .f2p-feature {
  /* superseded by bento/hero/trust тАФ kept for cached pages */
}

.f2p-hero::before { display: none; }

/* тФАтФА Forms & inputs global тФАтФА */
.form-control {
  border-radius: var(--f2p-radius-sm);
  border: 1.5px solid var(--f2p-border);
  font-family: var(--f2p-font);
  min-height: 44px;
  box-shadow: none !important;
}

.form-control:focus {
  border-color: var(--f2p-green-light);
  box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.12) !important;
}

.btn-primary {
  background: var(--f2p-green) !important;
  border-color: var(--f2p-green) !important;
  border-radius: var(--f2p-radius-full) !important;
  min-height: 44px;
  font-weight: 600;
  text-shadow: none !important;
}

.btn-primary:hover {
  background: var(--f2p-green-dark) !important;
  border-color: var(--f2p-green-dark) !important;
}

/* тФАтФА Pagination тФАтФА */
.pagination > li > a,
.pagination > li > span {
  border-radius: var(--f2p-radius-sm) !important;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.pagination > .active > a {
  background: var(--f2p-green) !important;
  border-color: var(--f2p-green) !important;
}

/* тФАтФА Alerts тФАтФА */
.alert {
  border-radius: var(--f2p-radius);
  border: none;
  font-family: var(--f2p-font);
}

.alert-success {
  background: var(--f2p-green-pale);
  color: var(--f2p-green-dark);
}

/* тФАтФА Accessibility тФАтФА */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--f2p-green);
  outline-offset: 2px;
}

/* тФАтФА Print тФАтФА */
@media print {
  .f2p-mobile-bar, #menu, #cart { display: none !important; }
  body { padding-bottom: 0; }
}
/* ── Floating cart FAB ── */
.f2p-cart-float {
  position: fixed;
  top: 72px;
  right: 16px;
  z-index: 150;
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--f2p-green);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(45, 90, 61, 0.35);
  text-decoration: none !important;
}
.f2p-cart-float:hover,
.f2p-cart-float:focus {
  color: #fff !important;
}
.f2p-cart-float .fa {
  font-size: 22px;
}
.f2p-cart-float--visible {
  display: flex;
}
.f2p-cart-float__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  background: var(--f2p-terra);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}

@media (max-width: 991px) {
  .f2p-cart-float {
    display: flex !important;
    top: 58%;
    bottom: auto;
    transform: translateY(-50%);
    right: 12px;
    width: 60px;
    height: 60px;
  }
  .f2p-cart-float--visible {
    display: flex !important;
  }
}

/* F2P mobile typography audit 2026-06-22 */
@media (max-width: 767px) {
  body {
    font-size: 17px;
    line-height: 1.62;
  }

  .f2p-section-head__sub,
  .product-thumb .caption p,
  .f2p-bento__desc,
  .text-muted {
    color: var(--f2p-text-secondary);
  }

  .product-thumb .caption h4 {
    font-size: 17px;
    line-height: 1.4;
  }

  .product-thumb .caption .price,
  .product-thumb .price {
    font-size: 21px;
    letter-spacing: -0.01em;
  }

  .f2p-mobile-bar__item {
    font-size: 12px;
  }

  .f2p-bento__arrow {
    width: var(--f2p-touch);
    height: var(--f2p-touch);
  }

  #product-product .price h2 {
    font-size: clamp(1.625rem, 5vw, 2rem);
  }

  .f2p-hero__title,
  .f2p-hero__title * {
    text-shadow: none !important;
  }
}
