:root {
  --white: #ffffff;
  --page: #f3f4f2;
  --ink: #172033;
  --muted: #667085;
  --line: #e4e7df;
  --green: #7a963c;
  --green-dark: #536b2a;
  --green-deep: #213816;
  --green-soft: #eef5e7;
  --price: #d84315;
  --danger: #dc2626;
  --shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  --footer-bg: #213816;
  --footer-bg-dark: #172812;
  --footer-text: #ffffff;
  --footer-muted: rgba(255, 255, 255, 0.72);
  --footer-border: rgba(255, 255, 255, 0.12);
  --footer-accent: #a8d46f;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.shop-container {
  width: min(100% - 32px, 1200px);
  margin-inline: auto;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.08);
}

.mini-bar {
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.mini-bar__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mini-bar__inner > span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
}

.mini-bar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 800;
}

.mini-bar__actions span {
  opacity: 0.72;
}

.mini-bar a {
  color: var(--white);
}

.mini-bar a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.main-header {
  background: var(--white);
}

.main-header__inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.shop-logo img {
  width: 112px;
  max-height: 56px;
  object-fit: contain;
}

.header-search {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 98px;
  width: min(100%, 720px);
  border: 1px solid rgba(122, 150, 60, 0.22);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(83, 107, 42, 0.08);
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 18px;
  color: var(--ink);
  min-height: 54px;
}

.search-box button {
  border: 0;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
}

.header-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.header-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 6px;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
}

.header-links a:hover {
  color: var(--green-dark);
}

.login-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: none;
}

.login-pill:hover {
  color: var(--green-dark);
}

.main-header .header-links .login-pill {
  min-height: 44px !important;
  padding: 0 6px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #344054 !important;
}

.shop-main {
  padding: 22px 0 34px;
  animation: pageFadeIn 0.35s ease both;
}

.flash-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.flash {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.flash--success {
  color: #15803d;
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.flash--error {
  color: var(--danger);
  background: #fef2f2;
  border-color: #fecaca;
}

.flash--warning {
  color: #d97706;
  background: #fffbeb;
  border-color: #fed7aa;
}

.store-shell {
  margin-bottom: 18px;
  padding: 0;
}

.store-profile {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(33, 56, 22, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(13, 26, 20, 0.92) 0%, rgba(33, 56, 22, 0.74) 48%, rgba(33, 56, 22, 0.3) 100%),
    var(--store-bg) center / cover no-repeat;
  color: var(--white);
  box-shadow: var(--shadow);
}

.store-profile__overlay {
  min-height: inherit;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 34px;
}

.store-avatar {
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}

.store-avatar img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.store-profile__copy {
  max-width: 650px;
}

.store-kicker {
  display: inline-flex;
  margin-bottom: 7px;
  color: var(--footer-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.store-profile__copy h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.store-profile__copy p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
}

.store-profile__actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -18px;
}

.store-profile__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.store-profile__actions a:first-child {
  border-color: var(--footer-accent);
  background: var(--footer-accent);
  color: var(--green-deep);
}

.banner-slider-shell {
  margin-bottom: 18px;
}

.banner-slider {
  position: relative;
  aspect-ratio: 40 / 9;
  overflow: hidden;
  border: 1px solid rgba(33, 56, 22, 0.1);
  border-radius: 12px;
  background: var(--green-soft);
  box-shadow: var(--shadow);
}

.banner-slider__track {
  position: relative;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.banner-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.banner-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.banner-slider__arrow:hover {
  background: var(--green);
  border-color: rgba(122, 150, 60, 0.72);
  color: var(--white);
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 12px 26px rgba(83, 107, 42, 0.28);
}

.banner-slider__arrow:focus-visible,
.banner-slider__dot:focus-visible {
  outline: 3px solid rgba(122, 150, 60, 0.26);
  outline-offset: 2px;
}

.banner-slider__arrow span {
  display: inline-block;
  width: 100%;
  margin-top: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-3px);
}

.banner-slider__arrow--prev {
  left: 16px;
}

.banner-slider__arrow--next {
  right: 16px;
}

.banner-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateX(-50%);
}

.banner-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.banner-slider__dot.is-active {
  width: 26px;
  background: var(--green);
  box-shadow: 0 6px 14px rgba(83, 107, 42, 0.28);
}

.banner-slider.is-single .banner-slider__arrow,
.banner-slider.is-single .banner-slider__dots {
  display: none;
}

.product-section,
.all-products-section {
  margin-bottom: 18px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.product-section {
  padding: 16px;
}

.section-title {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.section-title h2 {
  margin: 0;
  color: #344054;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-product-carousel {
  overflow: hidden;
}

.product-carousel__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.product-carousel__arrow {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 150, 60, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.product-carousel__arrow:hover:not([disabled]) {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
}

.product-carousel__arrow[disabled] {
  opacity: 0.42;
  box-shadow: none;
  cursor: default;
}

.product-carousel__arrow span {
  display: inline-block;
  width: 100%;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-3px);
}

.home-product-carousel .shop-product-grid--rail {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 12px;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(111, 135, 56, 0.35) transparent;
  -webkit-overflow-scrolling: touch;
}

.home-product-carousel .shop-product-grid--rail::-webkit-scrollbar {
  height: 6px;
}

.home-product-carousel .shop-product-grid--rail::-webkit-scrollbar-thumb {
  background: rgba(111, 135, 56, 0.35);
  border-radius: 999px;
}

.home-product-carousel .shop-product-grid--rail > .product-card,
.home-product-carousel .shop-product-grid--rail > article,
.home-product-carousel .shop-product-grid--rail > div {
  flex: 0 0 clamp(220px, 18vw, 236px);
  min-width: clamp(220px, 18vw, 236px);
  scroll-snap-align: start;
}

.home-product-carousel .shop-product-grid--rail > .shop-empty {
  flex: 0 0 100%;
  min-width: 100%;
}

.shop-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 150, 60, 0.55);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.product-card__image {
  position: relative;
  display: block;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--green-soft);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stock-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: calc(100% - 16px);
  min-height: 22px;
  padding: 4px 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.94);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.14);
  color: var(--white);
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1;
  font-size: 11px;
  font-weight: 900;
}

.stock-badge--empty {
  background: rgba(220, 38, 38, 0.94);
}

.product-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 7px;
  min-height: 0;
  padding: 9px;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.brand-badge {
  max-width: 70%;
  padding: 2px 5px;
  overflow: hidden;
  border: 1px solid rgba(122, 150, 60, 0.22);
  background: var(--green-soft);
  color: var(--green-dark);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
}

.product-card h3 {
  min-height: 38px;
  margin: 0;
  color: #1f2937;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.product-card h3 a {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card__footer {
  display: flex;
  margin-top: auto;
  padding-top: 2px;
}

.price-line {
  min-height: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}

.price-line strong {
  color: var(--price);
  font-size: 15px;
  font-weight: 900;
}

.price-line del {
  color: #98a2b3;
  font-size: 11px;
}

.wa-button {
  display: inline-flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  min-height: 30px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.shop-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  border: 1px dashed rgba(122, 150, 60, 0.36);
  background: var(--green-soft);
  color: var(--muted);
}

.search-page {
  display: grid;
  gap: 16px;
}

.search-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(122, 150, 60, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 244, 0.96)),
    radial-gradient(circle at 96% 12%, rgba(168, 212, 111, 0.18), transparent 18rem);
  box-shadow: 0 14px 34px rgba(33, 56, 22, 0.07);
}

.search-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.search-summary h2 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.search-summary span {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(122, 150, 60, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-width: 0;
}

.search-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 12px;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.search-sidebar__body {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.search-sidebar__footer {
  min-width: 0;
}

.search-sidebar__mobile-head,
.search-sidebar__mobile-actions,
.search-filter-trigger,
.search-sidebar-backdrop {
  display: none;
}

.search-sidebar__mobile-head {
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.search-sidebar__mobile-head h3,
.search-sidebar__mobile-head p {
  margin: 0;
}

.search-sidebar__mobile-head h3 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.search-sidebar__mobile-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.search-sidebar__close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(122, 150, 60, 0.18);
  border-radius: 999px;
  background: #f8fbf4;
  color: var(--green-dark);
  font-size: 24px;
  line-height: 1;
}

.search-filter-card {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid rgba(122, 150, 60, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(33, 56, 22, 0.055);
}

.search-filter-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 3px;
}

.search-filter-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.search-filter-card__head > span {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 10.5px;
  font-weight: 900;
  white-space: nowrap;
}

.search-filter-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.search-filter-card input,
.search-filter-card select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(122, 150, 60, 0.18);
  border-radius: 12px;
  background: var(--white);
  padding: 0 12px;
  outline: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.search-filter-card input:focus,
.search-sort select:focus {
  border-color: rgba(122, 150, 60, 0.58);
  box-shadow: 0 0 0 4px rgba(122, 150, 60, 0.1);
}

.search-filter-card button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 22px rgba(83, 107, 42, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.search-filter-card button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(83, 107, 42, 0.24);
}

.search-filter-link {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 8px 0 10px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #344054;
  font-size: 13px;
  font-weight: 750;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.search-filter-link span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-filter-link:hover {
  border-color: rgba(122, 150, 60, 0.12);
  background: rgba(238, 245, 231, 0.62);
  color: var(--green-dark);
}

.search-filter-link.is-active {
  border-color: rgba(122, 150, 60, 0.24);
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.search-filter-link small {
  min-width: 28px;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 7px;
  border-radius: 999px;
  background: #f5f8ef;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
}

.search-results {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  display: grid;
  gap: 12px;
}

.search-toolbar {
  min-width: 0;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid rgba(122, 150, 60, 0.13);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(33, 56, 22, 0.045);
}

.search-toolbar__controls {
  display: contents;
}

.search-chips {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow: visible;
}

.search-chip {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(122, 150, 60, 0.2);
  border-radius: 999px;
  background: var(--white);
  color: #344054;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.search-chip:hover,
.search-chip.is-active {
  border-color: rgba(122, 150, 60, 0.55);
  background: var(--green-soft);
  color: var(--green-dark);
  box-shadow: 0 8px 18px rgba(83, 107, 42, 0.08);
}

.search-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.search-sort select {
  min-height: 38px;
  border: 1px solid rgba(122, 150, 60, 0.18);
  border-radius: 999px;
  background: var(--white);
  padding: 0 34px 0 12px;
  color: var(--ink);
  outline: 0;
  font-weight: 800;
}

.search-filter-trigger {
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(122, 150, 60, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(33, 56, 22, 0.06);
}

.search-filter-trigger.is-active {
  border-color: rgba(122, 150, 60, 0.4);
  background: var(--green-soft);
  color: var(--green-dark);
}

.search-sidebar__mobile-actions {
  gap: 10px;
}

.search-sidebar__reset {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(122, 150, 60, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
}

.search-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  border: 0;
  background: rgba(15, 23, 42, 0.38);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

body.search-filters-open {
  overflow: hidden;
}

.search-grid {
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.search-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 42px 22px;
  border: 1px dashed rgba(122, 150, 60, 0.3);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
}

.search-empty span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
}

.search-empty svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.search-empty h3 {
  margin: 0;
  color: var(--ink);
}

.search-empty p {
  max-width: 430px;
  margin: 0;
}

.search-empty a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.all-products-section {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
}

.category-sidebar {
  position: sticky;
  top: 136px;
  align-self: start;
  display: grid;
  gap: 4px;
  padding-right: 14px;
  border-right: 1px solid var(--line);
}

.category-sidebar h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.category-filter {
  width: 100%;
  min-height: 36px;
  border: 0;
  border-left: 3px solid transparent;
  background: transparent;
  color: #344054;
  text-align: left;
  font-size: 14px;
}

.category-filter:hover,
.category-filter.is-active {
  border-left-color: var(--green);
  color: var(--green-dark);
  font-weight: 900;
}

.all-products-panel {
  min-width: 0;
}

.all-products-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-filter-item {
  min-width: 0;
}

.product-filter-item .product-card {
  height: 100%;
}

.is-hidden {
  display: none !important;
}

.has-reveal .fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.has-reveal .fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .shop-main {
    animation: none !important;
  }

  .banner-slider__track {
    transition: none !important;
  }

  .has-reveal .fade-in,
  .has-reveal .fade-in.is-visible,
  .product-card,
  .payment-logo-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

.footer {
  background: linear-gradient(180deg, var(--footer-bg) 0%, var(--footer-bg-dark) 100%);
  color: var(--footer-text);
  padding: 52px 0 26px;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(140px, 0.72fr) minmax(170px, 0.8fr) minmax(310px, 1.25fr);
  gap: 54px;
  align-items: start;
}

.footer__brand img {
  width: 78px;
  margin-bottom: 20px;
}

.footer__brand p,
.footer p,
.footer a {
  color: var(--footer-muted);
}

.footer__brand p {
  max-width: 330px;
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.footer__links,
.footer-payment {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer__links h3,
.footer-payment h4 {
  margin: 0 0 12px;
  color: var(--footer-text);
  font-size: 15px;
  font-weight: 900;
}

.footer__links a {
  color: var(--footer-muted);
  font-size: 15px;
}

.footer__links a:hover {
  color: var(--footer-accent);
}

.footer__links--contact .footer-contact__link {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--footer-border);
  color: var(--footer-text);
}

.footer__links--contact .footer-contact__link:last-child {
  border-bottom: 0;
}

.footer-contact__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--footer-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--footer-text);
}

.footer-contact__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-contact__text {
  color: var(--footer-text);
  font-weight: 800;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.payment-logo-card {
  min-height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid var(--footer-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.payment-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 212, 111, 0.45);
}

.payment-logo {
  width: 78px;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer__bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid var(--footer-border);
}

.footer__bottom p {
  margin: 0;
  color: var(--footer-muted);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .shop-product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .all-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .main-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 16px;
  }

  .shop-logo img {
    width: 112px;
  }

  .shop-product-grid,
  .all-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .store-profile__overlay {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 26px;
  }

  .store-avatar {
    width: 84px;
    height: 84px;
  }

  .store-avatar img {
    width: 66px;
    height: 66px;
  }

  .all-products-section {
    grid-template-columns: 1fr;
  }

  .search-layout {
    grid-template-columns: 1fr;
  }

  .search-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow-x: visible;
    padding-bottom: 4px;
  }

  .search-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .search-sort {
    justify-content: flex-end;
  }

  .search-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-sidebar {
    position: static;
    display: flex;
    overflow-x: auto;
    padding: 0 0 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-sidebar h2 {
    min-width: max-content;
    margin: 0 10px 0 0;
    align-self: center;
  }

  .category-filter {
    width: auto;
    min-width: max-content;
    padding: 0 13px;
    border-left: 0;
    border-bottom: 2px solid transparent;
    text-align: center;
  }

  .category-filter:hover,
  .category-filter.is-active {
    border-bottom-color: var(--green);
    border-left-color: transparent;
  }
}

@media (max-width: 768px) {
  .search-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .search-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 60;
    display: grid;
    max-height: min(78vh, 680px);
    padding: 18px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    border-radius: 22px 22px 0 0;
    background: #ffffff;
    box-shadow: 0 -18px 40px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    transform: translateY(102%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.24s ease;
  }

  .search-sidebar.is-open,
  body.search-filters-open .search-sidebar {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .search-sidebar__body {
    min-height: 0;
    max-height: calc(min(78vh, 680px) - 120px);
    padding-right: 2px;
    overflow-y: auto;
  }

  .search-sidebar__footer {
    position: sticky;
    bottom: 0;
    margin: 0 -16px calc(-12px - env(safe-area-inset-bottom, 0px));
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), #ffffff 32%);
    border-top: 1px solid rgba(122, 150, 60, 0.12);
  }

  .search-sidebar__mobile-head,
  .search-sidebar__mobile-actions,
  .search-filter-trigger,
  .search-sidebar-backdrop {
    display: grid;
  }

  .search-sidebar__mobile-head {
    display: flex;
    margin-bottom: 2px;
  }

  .search-sidebar__mobile-actions {
    display: grid;
  }

  .search-filter-card--category {
    display: none;
  }

  .search-filter-trigger {
    display: inline-flex;
  }

  .search-sidebar-backdrop {
    display: block;
  }

  .search-sidebar-backdrop {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .search-sidebar-backdrop.is-open,
  body.search-filters-open .search-sidebar-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .search-results {
    gap: 10px;
  }

  .search-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .search-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .search-chips::-webkit-scrollbar {
    display: none;
  }

  .search-toolbar__controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
  }

  .search-sort {
    min-width: 0;
    justify-content: flex-end;
  }

  .search-sort label {
    font-size: 12px;
  }

  .search-sort select {
    min-width: 0;
    width: 100%;
    min-height: 38px;
  }

  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (min-width: 769px) {
  .search-sidebar {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .search-sidebar-backdrop {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .payment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .shop-container {
    width: min(100% - 22px, 1200px);
  }

  .mini-bar {
    font-size: 11px;
  }

  .mini-bar__inner {
    min-height: 28px;
    gap: 10px;
  }

  .mini-bar__inner > span,
  .mini-bar__actions,
  .mini-bar a {
    font-size: 11px;
    line-height: 1.2;
  }

  .mini-bar__actions {
    gap: 7px;
  }

  .main-header__inner {
    min-height: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px 12px;
    padding: 10px 0 12px;
    align-items: center;
  }

  .shop-logo {
    order: 1;
  }

  .shop-logo img {
    width: 82px;
    max-height: 42px;
  }

  .header-links {
    order: 2;
    width: auto;
    justify-self: end;
    justify-content: flex-end;
    gap: 10px;
  }

.header-links a {
  min-height: 32px;
  padding: 0 3px;
  font-size: 13px;
}

  .login-pill {
    min-height: 32px;
    padding: 0 3px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #344054;
    font-size: 13px;
    font-weight: 900;
  }

  .header-search {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: stretch;
  }

  .search-box {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 72px;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(83, 107, 42, 0.08);
  }

  .search-box input {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .search-box button {
    font-size: 13px;
  }

  .shop-main {
    padding: 12px 0 22px;
  }

  .banner-slider-shell {
    margin-bottom: 14px;
  }

  .banner-slider {
    aspect-ratio: auto;
    height: 162px;
    border-radius: 14px;
  }

  .banner-slider__arrow {
    width: 34px;
    height: 34px;
    display: grid;
    background: rgba(255, 255, 255, 0.78);
  }

  .banner-slider__arrow span {
    font-size: 21px;
    transform: translateY(-2px);
  }

  .banner-slider__arrow--prev {
    left: 8px;
  }

  .banner-slider__arrow--next {
    right: 8px;
  }

  .banner-slider__dots {
    bottom: 8px;
    gap: 5px;
    padding: 5px 7px;
  }

  .banner-slider__dot {
    width: 6px;
    height: 6px;
  }

  .banner-slider__dot.is-active {
    width: 18px;
  }

  .product-section,
  .all-products-section {
    margin-bottom: 14px;
    padding: 12px;
    border-radius: 16px;
  }

  .section-title {
    min-height: 0;
    margin-bottom: 10px;
    gap: 10px;
  }

  .section-title h2 {
    font-size: 18px;
    line-height: 1.1;
    text-transform: none;
  }

  .home-product-carousel .product-carousel__controls {
    display: none;
  }

  .home-product-carousel .shop-product-grid--rail {
    gap: 10px;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .home-product-carousel .shop-product-grid--rail::-webkit-scrollbar {
    display: none;
  }

  .home-product-carousel .shop-product-grid--rail > .product-card,
  .home-product-carousel .shop-product-grid--rail > article,
  .home-product-carousel .shop-product-grid--rail > div {
    flex: 0 0 184px;
    min-width: 184px;
    scroll-snap-align: start;
  }

  .home-product-carousel .shop-product-grid--rail .shop-empty {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .shop-product-grid,
  .all-products-grid {
    gap: 10px;
  }

  .all-products-section .all-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .all-products-section .product-card {
    border-radius: 14px;
  }

  .stock-badge {
    top: 7px;
    left: 7px;
    min-height: 20px;
    padding: 3px 7px;
    font-size: 10px;
  }

  .all-products-section .product-card__body {
    gap: 7px;
    padding: 10px;
  }

  .all-products-section .product-card__meta {
    gap: 6px;
    font-size: 10.5px;
  }

  .brand-badge {
    padding: 2px 5px;
    font-size: 10px;
  }

  .all-products-section .product-card h3 {
    min-height: 36px;
    font-size: 13px;
    line-height: 1.35;
  }

  .price-line {
    gap: 5px;
  }

  .all-products-section .price-line strong {
    font-size: 16px;
  }

  .all-products-section .price-line del {
    font-size: 10.5px;
  }

  .all-products-section .product-card__discount {
    min-height: 18px;
    padding: 1px 5px;
    font-size: 10px;
  }

  .all-products-section .wa-button {
    min-height: 32px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  .shop-empty {
    padding: 16px;
    font-size: 13px;
  }

  .category-sidebar {
    gap: 6px;
    padding: 0 0 8px;
  }

  .category-sidebar h2 {
    margin-right: 2px;
    font-size: 14px;
  }

  .category-filter {
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    background: #f7faf2;
    font-size: 12px;
    font-weight: 800;
  }

  .footer {
    padding: 32px 0 18px;
  }

  .footer__grid {
    gap: 24px;
  }

  .footer__brand img {
    width: 64px;
    margin-bottom: 12px;
  }

  .footer__brand p {
    font-size: 13px;
    line-height: 1.6;
  }

  .footer__links h3,
  .footer-payment h4 {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .footer__links {
    gap: 8px;
  }

  .footer__links a {
    font-size: 13px;
  }

  .footer__links--contact .footer-contact__link {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding-bottom: 9px;
  }

  .footer-contact__icon {
    width: 32px;
    height: 32px;
  }

  .footer-contact__icon svg {
    width: 16px;
    height: 16px;
  }

  .payment-grid {
    gap: 8px;
  }

  .payment-logo-card {
    min-height: 58px;
    border-radius: 10px;
  }

  .payment-logo {
    width: 56px;
    max-height: 32px;
  }

  .footer__bottom {
    margin-top: 24px;
    padding-top: 16px;
  }

  .footer__bottom p {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .shop-container {
    width: min(100% - 20px, 1200px);
  }

  .mini-bar__inner {
    min-height: 26px;
  }

  .mini-bar__inner > span {
    max-width: 58%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .main-header__inner {
    gap: 8px 10px;
    padding: 8px 0 10px;
  }

  .shop-logo img {
    width: 76px;
    max-height: 38px;
  }

  .login-pill {
    min-height: 30px;
    padding: 0 3px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: #344054;
    font-size: 12px;
  }

  .header-links {
    gap: 8px;
  }

  .header-links a {
    min-height: 30px;
    font-size: 12px;
  }

  .search-box {
    grid-template-columns: minmax(0, 1fr) 64px;
  }

  .search-box input {
    min-height: 40px;
    padding: 0 12px;
  }

  .shop-main {
    padding-top: 10px;
  }

  .search-page {
    gap: 14px;
  }

  .search-summary {
    align-items: start;
    flex-direction: column;
    padding: 15px;
  }

  .search-sidebar {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .search-filter-card {
    padding: 14px;
  }

  .search-sort {
    width: 100%;
    justify-content: space-between;
  }

  .search-sort select {
    width: min(100%, 190px);
  }

  .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .banner-slider {
    height: 148px;
    border-radius: 12px;
  }

  .banner-slider__dots {
    bottom: 7px;
  }

  .store-profile {
    min-height: 330px;
    background:
      linear-gradient(180deg, rgba(13, 26, 20, 0.94) 0%, rgba(33, 56, 22, 0.72) 100%),
      var(--store-bg) center / cover no-repeat;
  }

  .store-profile__overlay {
    grid-template-columns: 1fr;
    align-content: end;
    padding: 18px;
  }

  .store-profile__copy h1 {
    font-size: 30px;
  }

  .store-profile__actions {
    grid-column: 1;
    margin-top: 0;
  }

  .store-profile__actions a {
    flex: 1 1 130px;
  }

  .shop-product-grid,
  .all-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-section,
  .all-products-section {
    padding: 11px;
  }

  .payment-logo-card {
    min-height: 66px;
  }

  .payment-logo {
    width: 64px;
  }
}

@media (max-width: 480px) {
  .shop-container {
    width: min(100% - 16px, 1200px);
  }

  .mini-bar {
    font-size: 10px;
  }

  .mini-bar__inner,
  .mini-bar__inner > span,
  .mini-bar__actions,
  .mini-bar a {
    font-size: 10px;
  }

  .main-header__inner {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }

  .shop-logo img {
    width: 72px;
  }

  .search-box {
    grid-template-columns: minmax(0, 1fr) 60px;
    border-radius: 14px;
  }

  .search-box input,
  .search-box button {
    font-size: 12px;
  }

  .header-links a {
    font-size: 11.5px;
  }

  .banner-slider {
    height: 140px;
  }

  .product-section,
  .all-products-section {
    padding: 10px;
    margin-bottom: 12px;
  }

  .section-title h2 {
    font-size: 17px;
  }

  .shop-product-grid--rail > .product-card,
  .shop-product-grid--rail > article,
  .shop-product-grid--rail > div {
    flex-basis: 168px;
    min-width: 168px;
  }

  .all-products-section .all-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .all-products-section .product-card__body {
    padding: 9px;
  }

  .all-products-section .product-card h3 {
    font-size: 12.5px;
    min-height: 34px;
  }

  .all-products-section .price-line strong {
    font-size: 15px;
  }

  .all-products-section .wa-button {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 11.5px;
  }

  .footer {
    padding-top: 28px;
  }

  .payment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 390px) {
  .home-product-carousel .shop-product-grid--rail > .product-card,
  .home-product-carousel .shop-product-grid--rail > article,
  .home-product-carousel .shop-product-grid--rail > div {
    flex-basis: 176px;
    min-width: 176px;
  }

  .all-products-section .all-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .all-products-section .product-card__body {
    gap: 6px;
    padding: 8px;
  }

  .all-products-section .product-card h3 {
    min-height: 32px;
    font-size: 12px;
    line-height: 1.3;
  }

  .all-products-section .price-line strong {
    font-size: 14px;
  }

  .all-products-section .price-line del,
  .all-products-section .product-card__meta,
  .all-products-section .brand-badge {
    font-size: 10px;
  }

  .all-products-section .wa-button {
    min-height: 29px;
    padding: 6px 8px;
    font-size: 11px;
  }
}

.shop-header input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
.shop-main input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
.shop-main textarea,
.shop-main select,
.shop-main option {
  font-weight: 400 !important;
}

.shop-header input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"])::placeholder,
.shop-main input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"])::placeholder,
.shop-main textarea::placeholder,
.shop-header input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"])::-webkit-input-placeholder,
.shop-main input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"])::-webkit-input-placeholder,
.shop-main textarea::-webkit-input-placeholder,
.shop-header input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"])::-moz-placeholder,
.shop-main input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"])::-moz-placeholder,
.shop-main textarea::-moz-placeholder,
.shop-header input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):-ms-input-placeholder,
.shop-main input:not([type="checkbox"]):not([type="radio"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]):-ms-input-placeholder,
.shop-main textarea:-ms-input-placeholder {
  font-weight: 400 !important;
}
