/** Shopify CDN: Minification failed

Line 6:0 Unexpected "}"

**/
}
/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--hero-min-height, 55vh);
  padding: 5rem 0 4rem;
  background: #fafbfc;
}

.hero .hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero .hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero__bg-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero .hero__bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #f5f6f7 100%);
  pointer-events: none;
}

.hero .hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: center;
}

.hero .hero__content {
  max-width: 520px;
}

.hero .hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent, #f28c1b);
  background: linear-gradient(135deg, rgba(242,140,27,0.15) 0%, rgba(242,140,27,0.05) 100%);
  border-radius: 50px;
  border: 1px solid rgba(242,140,27,0.2);
}

.hero .hero__subtitle-icon { font-size: 1rem; }

.hero .hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--hero-text-color, #1a1a1a);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.hero .hero__tagline {
  font-size: 1.25rem;
  color: var(--hero-text-color, #1a1a1a);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.hero .hero__brand-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.hero .hero__brand-link:hover { transform: scale(1.12); }

.hero .hero__brand-text {
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-accent,#f28c1b), #ff9f43, var(--color-accent,#f28c1b));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  transition: filter 0.3s ease, text-shadow 0.3s ease;
}

.hero .hero__brand-link:hover .hero__brand-text {
  filter: brightness(1.2);
  text-shadow: 0 0 20px rgba(242,140,27,0.5), 0 0 40px rgba(242,140,27,0.3);
}

.hero .hero__brand-underline {
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--color-accent,#f28c1b), #ff9f43);
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

.hero .hero__brand-link:hover .hero__brand-underline { width: 100%; }

.hero .hero__brand-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  padding: 6px 14px;
  background: #1a1a1a;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  -webkit-text-fill-color: #fff;
}

.hero .hero__brand-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
}

.hero .hero__brand-link:hover .hero__brand-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero .hero__description {
  font-size: 1rem;
  color: var(--hero-text-color, #1a1a1a);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero .hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.hero .hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent,#f28c1b) 0%, #e07b0a 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(242,140,27,0.3);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.hero .hero__cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.hero .hero__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(242,140,27,0.4);
}

.hero .hero__cta-btn:hover::before { left: 100%; }

.hero .hero__cta-icon {
  display: flex;
  transition: transform 0.3s ease;
}

.hero .hero__cta-btn:hover .hero__cta-icon { transform: translateX(4px); }

.hero .hero__cta-secondary {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.hero .hero__cta-secondary:hover { color: var(--color-accent,#f28c1b); }

.hero .search-panel {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 25px 80px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.hero .search-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.02);
}

.hero .search-panel__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.hero .search-panel__title svg { color: var(--color-accent,#f28c1b); }

.hero .search-panel__form { margin-bottom: 1rem; position: relative; }

.hero .search-input-wrapper {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.hero .search-input-wrapper:focus-within {
  border-color: var(--color-accent,#f28c1b);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(242,140,27,0.1);
}

.hero .search-panel__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #1a1a1a;
  outline: none;
}

.hero .search-panel__input::placeholder { color: #999; }

.hero .search-panel__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  margin: 4px;
  background: var(--color-accent,#f28c1b);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero .search-panel__submit:hover { background: #e07b0a; transform: scale(1.05); }

.hero .search-suggestions {
  position: absolute;
  top: 100%; left: 0; right: 0;
  margin-top: 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid #eee;
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 100;
  max-height: 420px;
  overflow-y: auto;
}

.hero .search-suggestions.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.hero .search-suggestions__header {
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
}

.hero .search-suggestions__empty {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #666;
}

.hero .search-suggestion {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  transition: background 0.15s ease;
}

.hero .search-suggestion:hover,
.hero .search-suggestion.is-active {
  background: #f8f8f8;
  color: var(--color-accent,#f28c1b);
}

.hero .search-suggestion__img {
  width: 40px; height: 40px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #f0f0f0;
}

.hero .search-suggestion__img--placeholder {
  display: block;
  width: 40px; height: 40px;
  border-radius: 6px;
  background: #f0f0f0;
  flex-shrink: 0;
}

.hero .search-suggestion__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero .search-suggestion__title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero .search-suggestion--product:hover .search-suggestion__title,
.hero .search-suggestion--product.is-active .search-suggestion__title {
  color: var(--color-accent,#f28c1b);
}

.hero .search-suggestion__price {
  font-size: 0.8rem;
  color: var(--color-accent,#f28c1b);
  font-weight: 600;
}

.hero .search-suggestion--all {
  border-top: 1px solid #eee;
  margin-top: 0.25rem;
  padding-top: 0.65rem;
  font-size: 0.82rem;
  color: #666;
}

.hero .search-suggestion--all:hover,
.hero .search-suggestion--all.is-active {
  color: var(--color-accent,#f28c1b);
  background: #f8f8f8;
}

.hero .search-suggestion mark {
  background: none;
  color: var(--color-accent,#f28c1b);
  font-weight: 600;
}

.hero .search-filters {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.hero .search-panel__filters-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.hero .search-panel__filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero .search-panel__filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  background: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 50px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.hero .search-panel__filter-btn:hover {
  color: var(--color-accent,#f28c1b);
  border-color: var(--color-accent,#f28c1b);
  background: rgba(242,140,27,0.05);
  transform: translateY(-2px);
}

.hero .filter-icon { font-size: 1rem; }

.hero .search-advanced { margin-bottom: 1rem; }

.hero .search-advanced__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent,#f28c1b);
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.hero .search-advanced__toggle:hover { opacity: 0.8; }

.hero .search-advanced__toggle .toggle-arrow { transition: transform 0.3s ease; }

.hero .search-advanced__toggle.is-open .toggle-arrow { transform: rotate(180deg); }

.hero .search-advanced__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.hero .search-advanced__panel.is-open { max-height: 200px; padding-top: 1rem; }

.hero .advanced-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hero .advanced-filter label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.hero .advanced-filter select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  color: #333;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.hero .advanced-filter select:focus {
  outline: none;
  border-color: var(--color-accent,#f28c1b);
}

.hero .search-panel__stats-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.hero .stat-inline { display: inline-flex; align-items: baseline; gap: 0.35rem; }

.hero .stat-inline__value { font-size: 1.1rem; font-weight: 700; color: var(--color-accent,#f28c1b); }

.hero .stat-inline__label { font-size: 0.8rem; color: #666; text-transform: lowercase; }

.hero .stat-inline__divider { color: #ddd; font-size: 0.8rem; }

.hero .hero__subtitle,
.hero .hero__title,
.hero .hero__tagline,
.hero .hero__description,
.hero .hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.7s ease forwards;
}

.hero .hero__title { animation-delay: 0.1s; }
.hero .hero__tagline { animation-delay: 0.15s; }
.hero .hero__description { animation-delay: 0.2s; }
.hero .hero__cta { animation-delay: 0.25s; }

.hero .search-panel {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: heroFadeIn 0.7s ease 0.2s forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero .desktop-only { display: block; }

@media (max-width: 1024px) {
  .hero .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero .hero__content { text-align: center; max-width: 100%; }
  .hero .hero__cta { justify-content: center; }
  .hero .advanced-filters { grid-template-columns: 1fr; }
  .hero .hero__cta-secondary { text-align: center; }
  .hero .desktop-only { display: none !important; }
  .hero .hero__search-panel { width: 100%; }
  .hero .search-panel { padding: 1.25rem; border-radius: 16px; text-align: center; overflow: visible; }
  .hero .search-panel__title { font-size: 1rem; margin-bottom: 0.75rem; justify-content: center; }
  .hero .search-panel__form { margin-bottom: 0; }
  .hero .search-input-wrapper { width: 100%; }
  .hero .search-suggestions { display: none; }
  .hero .hero__glow { display: none; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding: 2rem 0 1.5rem; }
  .hero .hero__grid { gap: 1.25rem; }
  .hero .hero__subtitle { padding: 0.35rem 0.75rem; margin-bottom: 0.75rem; font-size: 0.7rem; }
  .hero .hero__title { font-size: clamp(1.75rem, 7vw, 2.25rem); margin-bottom: 0.5rem; }
  .hero .hero__tagline { font-size: 1rem; margin-bottom: 0.5rem; }
  .hero .hero__description { font-size: 0.875rem; margin-bottom: 1rem; line-height: 1.5; }
  .hero .hero__cta-btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; gap: 0.5rem; border-radius: 10px; }
  .hero .hero__cta-secondary { font-size: 0.8rem; }
  .hero .search-panel { padding: 1rem; border-radius: 14px; overflow: visible; }
  .hero .search-panel__title { font-size: 0.85rem; margin-bottom: 0.5rem; }
  .hero .search-panel__input { padding: 0.7rem 0.75rem; font-size: 0.875rem; }
  .hero .search-panel__submit { width: 40px; height: 40px; margin: 3px; border-radius: 8px; }
  .hero .search-panel__form { margin-bottom: 0.5rem; }
  .hero .search-panel__filter-btn { padding: 0.35rem 0.65rem; font-size: 0.75rem; }
  .hero .search-panel__filters-label { font-size: 0.65rem; margin-bottom: 0.4rem; }
  .hero .search-panel__stats-inline { display: none; }
}
