/** Shopify CDN: Minification failed

Line 127:1 Unexpected "@keyframes"
Line 128:2 Unexpected "0%"
Line 129:2 Unexpected "100%"

**/
/* ===========================================================
   StepMate Custom Theme — theme.css
   =========================================================== */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-black: #000000;
  --color-white: #ffffff;
  --color-orange: #FF6A00;
  --color-bg: #ffffff;
  --color-bg-light: #fdf8f5;
  --color-text: #000000;
  --color-text-muted: #666666;
  --color-border: #e8e8e8;
  --color-trustpilot: #00B67A;
  --font-main: 'Instrument Sans', sans-serif;
  --radius-btn: 16px;
  --radius-card: 20px;
  --transition: 0.2s ease;
  --container-max: 1200px;
  --header-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-to-content {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 9999;
}
.skip-to-content:focus { top: 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  transition: opacity var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn .material-icons { font-size: 18px; }

.btn--primary {
  background: var(--color-black);
  color: var(--color-white);
}
.btn--white {
  background: var(--color-white);
  color: var(--color-black);
}
.btn--full { width: 100%; justify-content: center; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--color-black);
  color: var(--color-white);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}

.announcement-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.announcement-bar__item .material-icons {
  font-size: 16px;
  color: var(--color-orange);
}
 @keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 24px;
}

.header__burger,
.header__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background var(--transition);
  flex-shrink: 0;
}
.header__burger:hover,
.header__cart:hover { background: #f5f5f5; }

/* Hide burger on desktop */
@media (min-width: 769px) {
  .header__burger { display: none; }
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo img { display: block; }
.header__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  white-space: nowrap;
}

/* Desktop navigation */
.header__nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header__nav-desktop ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.header__nav-desktop ul li a:hover {
  background: #f5f5f5;
}

@media (max-width: 768px) {
  .header__nav-desktop { display: none; }
}

.header__cart {
  position: relative;
}

.header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.header__cart-count:empty { display: none; }

/* ---------- MOBILE NAV ---------- */
.ac-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--color-white);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100%;
  background: var(--color-white);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.nav-mobile.is-open { transform: translateX(0); }

.nav-mobile__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile__title {
  font-weight: 600;
  font-size: 18px;
}

.nav-mobile__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.nav-mobile__list {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile__list li a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition);
}
.nav-mobile__list li a:hover { color: var(--color-orange); }

.nav-mobile__currency {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
}

.nav-mobile__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-mobile__overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  background: #b8cee0 center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero__trustpilot { margin-top: 8px; }

.trustpilot-widget {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 8px 16px;
}

.trustpilot-widget__label {
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.trustpilot-widget__stars {
  display: flex;
  gap: 2px;
}

.trustpilot-widget__count,
.trustpilot-widget__brand {
  color: var(--color-white);
  font-size: 13px;
}

.hero__product-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 560px;
  z-index: 1;
  padding: 40px;
}

.hero__brand-text {
  position: absolute;
  bottom: 60px;
  right: 40px;
  z-index: 2;
  text-align: right;
  color: rgba(255,255,255,0.85);
}

.hero__brand-name {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero__tagline {
  font-size: 1.1rem;
  font-weight: 400;
}

/* ---------- MARQUEE (secondary) ---------- */
.marquee-section {
  overflow: hidden;
  padding: 14px 0;
}

.marquee-section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.marquee-section--light {
  background: var(--color-bg-light);
  color: var(--color-black);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marquee-section--dark .marquee-item .material-icons { color: var(--color-orange); }

/* ---------- FEATURED COLLECTION ---------- */
.featured-collection {
  padding: 64px 0;
  background: var(--color-white);
}

.featured-collection__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.featured-collection__title {
  font-size: 2rem;
  font-weight: 600;
}

.featured-collection__view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--color-black);
  border-radius: 100px;
  padding: 8px 16px;
  transition: background var(--transition), color var(--transition);
}
.featured-collection__view-all:hover {
  background: var(--color-black);
  color: var(--color-white);
}

/* ---------- PRODUCTS SLIDER ---------- */
.products-slider {
  position: relative;
  overflow: hidden;
}

.products-slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.products-slider__track::-webkit-scrollbar { display: none; }

/* ---------- PRODUCT CARD ---------- */
.product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  scroll-snap-align: start;
}

.product-card__no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

@media (max-width: 768px) {
  .product-card { flex: 0 0 calc(50% - 10px); min-width: 160px; }
}

@media (max-width: 480px) {
  .product-card { flex: 0 0 calc(75% - 10px); }
}

.product-card__image-wrap {
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #FF6A00;
  aspect-ratio: 1;
  transition: transform var(--transition);
}
.product-card__image-wrap:hover { transform: scale(1.02); }
.product-card__image-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.product-card__placeholder { width: 100%; height: 100%; }

.product-card__info { padding: 12px 4px 0; }

.product-card__title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}
.product-card__title a:hover { text-decoration: underline; }

.product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
}

/* ---------- SLIDER BUTTONS ---------- */
.slider-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
  transition: background var(--transition), transform var(--transition);
}
.slider-btn:hover { background: var(--color-black); color: var(--color-white); }
.slider-btn--prev { left: -12px; }
.slider-btn--next { right: -12px; }

@media (max-width: 768px) {
  .slider-btn { display: none; }
}

/* ---------- BRAND STORY ---------- */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  gap: 0;
}

.brand-story--reverse { direction: rtl; }
.brand-story--reverse > * { direction: ltr; }

.brand-story__image {
  overflow: hidden;
  border-radius: 0;
}
.brand-story__image img { width: 100%; height: 100%; object-fit: cover; }
.brand-story__placeholder { width: 100%; height: 100%; }

.brand-story__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 60px 56px;
  background: var(--color-white);
}

.brand-story__title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-story__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 480px;
}

@media (max-width: 768px) {
  .brand-story { grid-template-columns: 1fr; }
  .brand-story__content { padding: 40px 24px; }
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 64px 0;
  background: var(--color-bg-light);
}

.testimonials__title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.testimonials-slider__track::-webkit-scrollbar { display: none; }

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 calc(80% - 12px); }
}

.testimonial-card__stars { display: flex; gap: 2px; }

.testimonial-card__text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-text-muted);
}
.testimonial-card__verified .material-icons { font-size: 14px; color: #4caf50; }

/* ---------- EBOOK BANNER ---------- */
.ebook-banner {
  background: #1a1a1a center/cover no-repeat;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.ebook-banner__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ebook-banner__label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
}

.ebook-banner__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}

.ebook-banner__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ebook-banner__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.ebook-banner__benefits .material-icons {
  color: var(--color-orange);
  font-size: 18px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 64px 0;
  background: var(--color-white);
}

.faq__title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

.faq__title-accent {
  color: var(--color-orange);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-top: 1px solid var(--color-border);
}
.faq__item:last-child { border-bottom: 1px solid var(--color-border); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--color-orange); }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }

.faq__icon { transition: transform 0.2s ease; flex-shrink: 0; }

.faq__answer {
  padding-bottom: 20px;
}
.faq__answer p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq__btn { display: block; width: fit-content; margin: 0 auto; }

/* ---------- TRUST BADGES ---------- */
.trust-badges {
  padding: 64px 0;
  background: var(--color-bg-light);
}

.trust-badges__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

@media (max-width: 640px) {
  .trust-badges__grid { grid-template-columns: 1fr; gap: 32px; }
}

.trust-badge__icon {
  font-size: 40px !important;
  color: var(--color-black);
  margin-bottom: 12px;
  display: block;
}

.trust-badge__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.trust-badge__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

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

.footer__logo {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer__mission {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__social a:hover { color: var(--color-white); }

.footer__nav-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer__nav ul li a:hover { color: var(--color-white); }

.footer__newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer__newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-input:focus { border-color: rgba(255,255,255,0.5); }

.footer__newsletter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  background: var(--color-white);
  color: var(--color-black);
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.footer__newsletter-btn:hover { opacity: 0.85; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--color-white); }

/* ---------- CART DRAWER ---------- */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
}

.cart-drawer.is-open { pointer-events: all; }

.cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cart-drawer.is-open .cart-drawer__overlay { opacity: 1; }

.cart-drawer__inner {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 100%);
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.is-open .cart-drawer__inner { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__header h2 { font-size: 20px; font-weight: 600; }

.cart-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background var(--transition);
}
.cart-drawer__close:hover { background: #f5f5f5; }

.cart-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-drawer__footer {
  padding: 20px 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
}

.cart-drawer__view-cart {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* ---------- PRODUCT PAGE (basic) ---------- */
.product-page {
  padding: 40px 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .hero__content { padding: 40px 24px; max-width: 100%; }
  .hero__product-image { display: none; }
  .hero__brand-text { right: 20px; bottom: 30px; }
  .featured-collection { padding: 40px 0; }
  .featured-collection__title { font-size: 1.5rem; }
  .brand-story { grid-template-columns: 1fr; }
  .testimonials { padding: 40px 0; }
  .faq { padding: 40px 0; }
  .faq__title { font-size: 1.5rem; }
  .trust-badges { padding: 40px 0; }
  .footer { padding-top: 40px; }
  .ebook-banner { padding: 48px 24px; }
}
