/* ==========================================================================
   Stop the Shopper — Premium E-commerce Stylesheet
   Inspired by modern ecommerce UX; original implementation & branding
   ========================================================================== */

:root {
  --sts-orange: #fd9636;
  --sts-orange-dark: #e87820;
  --sts-orange-soft: #fff4e8;
  --sts-navy: #0e224d;
  --sts-navy-2: #253d4e;
  --sts-text: #253d4e;
  --sts-muted: #7e7e7e;
  --sts-border: #ececec;
  --sts-bg: #f5f6f8;
  --sts-bg-soft: #f2f3f4;
  --sts-white: #ffffff;
  --sts-success: #3bb77e;
  --sts-danger: #e74c3c;
  --sts-shadow: 0 4px 20px rgba(14, 34, 77, 0.08);
  --sts-shadow-hover: 0 10px 30px rgba(14, 34, 77, 0.12);
  --sts-radius: 10px;
  --sts-radius-sm: 6px;
  --sts-font: "Quicksand", "Segoe UI", sans-serif;
  --sts-container: 1320px;
  --sts-header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sts-font);
  color: var(--sts-text);
  background: var(--sts-white);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--sts-navy);
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

a:hover {
  color: var(--sts-orange);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--sts-navy);
  line-height: 1.3;
}

.container-sts {
  width: 100%;
  max-width: var(--sts-container);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ---------- Buttons ---------- */
.btn-sts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sts-font);
  font-weight: 700;
  border-radius: 4px;
  border: 2px solid transparent;
  padding: 12px 28px;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-sts-orange {
  background: var(--sts-orange);
  color: #fff;
  border-color: var(--sts-orange);
}

.btn-sts-orange:hover {
  background: var(--sts-orange-dark);
  border-color: var(--sts-orange-dark);
  color: #fff;
}

.btn-sts-navy {
  background: var(--sts-navy);
  color: #fff;
  border-color: var(--sts-navy);
}

.btn-sts-navy:hover {
  background: var(--sts-orange);
  border-color: var(--sts-orange);
  color: #fff;
}

.btn-sts-outline {
  background: transparent;
  color: var(--sts-navy);
  border-color: var(--sts-navy);
}

.btn-sts-outline:hover {
  background: var(--sts-navy);
  color: #fff;
}

.btn-sts-outline-orange {
  background: #fff;
  color: var(--sts-orange);
  border-color: var(--sts-orange);
}

.btn-sts-outline-orange:hover {
  background: var(--sts-orange);
  color: #fff;
}

.btn-sts-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-sts-block {
  width: 100%;
}

/* ---------- Top bar ---------- */
.sts-topbar {
  background: var(--sts-bg-soft);
  font-size: 13px;
  color: var(--sts-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--sts-border);
}

.sts-topbar a {
  color: var(--sts-muted);
  margin-right: 18px;
}

.sts-topbar a:hover {
  color: var(--sts-orange);
}

.sts-topbar .sts-promo {
  color: var(--sts-navy);
  font-weight: 600;
}

.sts-topbar .sts-top-right a {
  margin-right: 0;
  margin-left: 16px;
}

/* ---------- Header ---------- */
.sts-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1040;
  box-shadow: 0 2px 16px rgba(14, 34, 77, 0.06);
}

.sts-header-main {
  padding: 16px 0;
}

.sts-logo {
  display: inline-flex;
  align-items: center;
}

.sts-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.sts-search {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--sts-orange);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}

.sts-search select {
  border: none;
  background: var(--sts-bg-soft);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sts-text);
  max-width: 140px;
  outline: none;
  font-family: var(--sts-font);
}

.sts-search input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  font-family: var(--sts-font);
  min-width: 0;
}

.sts-search button {
  background: var(--sts-orange);
  border: none;
  color: #fff;
  padding: 0 20px;
  cursor: pointer;
  transition: background 0.25s;
}

.sts-search button:hover {
  background: var(--sts-orange-dark);
}

.sts-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.sts-action {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sts-navy);
  position: relative;
}

.sts-action i {
  font-size: 22px;
}

.sts-action .sts-action-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 12px;
}

.sts-action .sts-action-text strong {
  font-size: 13px;
  font-weight: 700;
}

.sts-badge-count {
  position: absolute;
  top: -6px;
  left: 14px;
  background: var(--sts-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* ---------- Navigation ---------- */
.sts-nav {
  background: #fff;
  border-top: 1px solid var(--sts-border);
}

.sts-nav-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
}

.sts-browse-btn {
  background: var(--sts-orange);
  color: #fff !important;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.sts-browse-btn:hover {
  background: var(--sts-orange-dark);
  color: #fff !important;
}

.sts-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex-wrap: wrap;
}

.sts-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  color: var(--sts-navy);
  position: relative;
}

.sts-menu > li > a:hover,
.sts-menu > li > a.active {
  color: var(--sts-orange);
}

.sts-menu-badge {
  background: var(--sts-orange);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  line-height: 1;
}

.sts-menu-badge.hot {
  background: #e74c3c;
}

.sts-menu-badge.new {
  background: var(--sts-success);
}

.sts-nav-help {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--sts-navy);
  white-space: nowrap;
  text-decoration: none;
}

.sts-nav-help:hover {
  color: var(--sts-orange);
}

.sts-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--sts-navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 3000;
}

.sts-skip:focus {
  left: 12px;
  top: 12px;
}

.sts-nav-help i {
  color: var(--sts-orange);
  font-size: 22px;
}

.sts-nav-help span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  font-size: 12px;
}

.sts-nav-help strong {
  font-size: 14px;
}

.sts-mobile-toggle {
  display: none;
  background: var(--sts-navy);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  font-size: 18px;
}

/* ---------- Breadcrumb ---------- */
.sts-breadcrumb {
  background: var(--sts-bg);
  padding: 14px 0;
  font-size: 13px;
  color: var(--sts-muted);
}

.sts-breadcrumb a {
  color: var(--sts-muted);
}

.sts-breadcrumb a:hover {
  color: var(--sts-orange);
}

.sts-breadcrumb .current {
  color: var(--sts-navy);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.sts-hero {
  position: relative;
  min-height: 480px;
  background: var(--sts-bg) center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sts-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.75) 42%, rgba(255, 255, 255, 0.15) 100%);
  z-index: 1;
}

.sts-hero .container-sts {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}

.sts-hero-tag {
  display: inline-block;
  background: var(--sts-orange-soft);
  color: var(--sts-orange-dark);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sts-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 16px;
  max-width: 560px;
}

.sts-hero h1 span {
  color: var(--sts-orange);
}

.sts-hero p {
  max-width: 480px;
  color: var(--sts-muted);
  font-size: 16px;
  margin-bottom: 28px;
}

/* ---------- Features strip ---------- */
.sts-features-strip {
  background: var(--sts-bg);
  border-top: 1px solid var(--sts-border);
  border-bottom: 1px solid var(--sts-border);
  padding: 28px 0;
}

.sts-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 10px;
}

.sts-feature-item i {
  font-size: 28px;
  color: var(--sts-orange);
  width: 40px;
  text-align: center;
}

.sts-feature-item h6 {
  margin: 0;
  font-size: 15px;
}

.sts-feature-item p {
  margin: 0;
  font-size: 12px;
  color: var(--sts-muted);
}

/* ---------- Section helpers ---------- */
.sts-section {
  padding: 70px 0;
}

.sts-section-sm {
  padding: 50px 0;
}

.sts-section-bg {
  background: var(--sts-bg);
}

.sts-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.sts-section-title .eyebrow {
  color: var(--sts-orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: block;
}

.sts-section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 10px;
}

.sts-section-title p {
  color: var(--sts-muted);
  max-width: 560px;
  margin: 0 auto;
}

.sts-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.sts-tab {
  border: none;
  background: transparent;
  font-family: var(--sts-font);
  font-weight: 700;
  font-size: 16px;
  color: var(--sts-muted);
  padding: 8px 18px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}

.sts-tab.active,
.sts-tab:hover {
  color: var(--sts-orange);
  border-bottom-color: var(--sts-orange);
}

/* ---------- Category cards ---------- */
.sts-cat-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
}

.sts-cat-card {
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius);
  text-align: center;
  padding: 18px 10px;
  transition: all 0.3s ease;
}

.sts-cat-card:hover {
  border-color: var(--sts-orange);
  box-shadow: var(--sts-shadow);
  transform: translateY(-4px);
}

.sts-cat-card .sts-cat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sts-bg);
}

.sts-cat-card .sts-cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sts-cat-card:hover .sts-cat-icon img {
  transform: scale(1.1);
}

.sts-cat-card h6 {
  margin: 0;
  font-size: 13px;
}

/* ---------- Product card ---------- */
.sts-product-card {
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius);
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.sts-product-card:hover {
  box-shadow: var(--sts-shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.sts-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--sts-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

.sts-product-badge.hot {
  background: #e74c3c;
}

.sts-product-badge.new {
  background: var(--sts-success);
}

.sts-product-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 6px;
  background: #fafafa;
}

.sts-product-img img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.sts-product-card:hover .sts-product-img img {
  transform: scale(1.06);
}

.sts-product-cat {
  font-size: 12px;
  color: var(--sts-muted);
  margin-bottom: 4px;
}

.sts-product-title {
  font-size: 15px;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.sts-product-title a {
  color: var(--sts-navy);
}

.sts-product-title a:hover {
  color: var(--sts-orange);
}

.sts-rating {
  color: #f5a623;
  font-size: 12px;
  margin-bottom: 8px;
}

.sts-rating span {
  color: var(--sts-muted);
  margin-left: 4px;
}

.sts-price {
  margin-bottom: 12px;
}

.sts-price .current {
  color: var(--sts-orange);
  font-weight: 700;
  font-size: 18px;
}

.sts-price .old {
  color: #b0b0b0;
  text-decoration: line-through;
  font-size: 13px;
  margin-left: 8px;
}

.sts-spec-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  font-size: 12px;
  color: var(--sts-muted);
}

.sts-spec-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 3px;
}

.sts-spec-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--sts-orange);
}

.sts-product-card .btn-sts {
  margin-top: auto;
}

/* ---------- Banners ---------- */
.sts-promo-banner {
  border-radius: var(--sts-radius);
  overflow: hidden;
  position: relative;
  min-height: 200px;
  background: center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 30px;
}

.sts-promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(14, 34, 77, 0.75), rgba(14, 34, 77, 0.2));
}

.sts-promo-banner .content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 280px;
}

.sts-promo-banner h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.sts-promo-banner p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 16px;
}

/* ---------- Process / Why / Stats ---------- */
.sts-icon-box {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: var(--sts-radius);
  border: 1px solid var(--sts-border);
  height: 100%;
  transition: all 0.3s ease;
}

.sts-icon-box:hover {
  box-shadow: var(--sts-shadow);
  transform: translateY(-4px);
}

.sts-icon-box .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--sts-orange-soft);
  color: var(--sts-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.sts-icon-box h5 {
  margin-bottom: 8px;
}

.sts-icon-box p {
  color: var(--sts-muted);
  margin: 0;
  font-size: 14px;
}

.sts-stat {
  text-align: center;
  padding: 20px;
}

.sts-stat .num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--sts-orange);
  line-height: 1.1;
  margin-bottom: 6px;
}

.sts-stat p {
  margin: 0;
  color: var(--sts-muted);
  font-weight: 600;
}

.sts-process-step {
  text-align: center;
  position: relative;
  padding: 10px;
}

.sts-process-step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sts-navy);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.sts-process-step h5 {
  margin-bottom: 8px;
}

.sts-process-step p {
  color: var(--sts-muted);
  font-size: 14px;
  margin: 0;
}

/* ---------- Testimonials ---------- */
.sts-testimonial {
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius);
  padding: 28px;
  height: 100%;
}

.sts-testimonial .quote {
  color: var(--sts-muted);
  font-size: 14px;
  margin-bottom: 20px;
  font-style: italic;
}

.sts-testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sts-testimonial .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.sts-testimonial .author strong {
  display: block;
  font-size: 14px;
}

.sts-testimonial .author span {
  font-size: 12px;
  color: var(--sts-muted);
}

/* ---------- FAQ ---------- */
.sts-accordion .accordion-item {
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.sts-accordion .accordion-button {
  font-family: var(--sts-font);
  font-weight: 700;
  color: var(--sts-navy);
  font-size: 15px;
  box-shadow: none !important;
}

.sts-accordion .accordion-button:not(.collapsed) {
  background: var(--sts-orange-soft);
  color: var(--sts-orange-dark);
}

.sts-accordion .accordion-body {
  color: var(--sts-muted);
  font-size: 14px;
}

/* ---------- Blog cards ---------- */
.sts-blog-card {
  background: #fff;
  border-radius: var(--sts-radius);
  overflow: hidden;
  border: 1px solid var(--sts-border);
  height: 100%;
  transition: all 0.3s ease;
}

.sts-blog-card:hover {
  box-shadow: var(--sts-shadow-hover);
  transform: translateY(-4px);
}

.sts-blog-card .thumb {
  height: 200px;
  overflow: hidden;
}

.sts-blog-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.sts-blog-card:hover .thumb img {
  transform: scale(1.06);
}

.sts-blog-card .body {
  padding: 20px;
}

.sts-blog-card .cat {
  display: inline-block;
  background: var(--sts-orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  margin-bottom: 10px;
}

.sts-blog-card h5 {
  font-size: 16px;
  margin-bottom: 8px;
}

.sts-blog-card p {
  color: var(--sts-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.sts-blog-card .meta {
  font-size: 12px;
  color: var(--sts-muted);
  margin-bottom: 10px;
}

.sts-blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius);
  overflow: hidden;
  margin-bottom: 28px;
}

.sts-blog-featured .thumb {
  min-height: 280px;
}

.sts-blog-featured .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sts-blog-featured .body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ---------- Newsletter ---------- */
.sts-newsletter {
  background: var(--sts-navy);
  color: #fff;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.sts-newsletter h2 {
  color: #fff;
  margin-bottom: 8px;
}

.sts-newsletter p {
  opacity: 0.85;
  margin-bottom: 0;
}

.sts-newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  padding: 6px;
}

.sts-newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  outline: none;
  font-family: var(--sts-font);
  min-width: 0;
}

.sts-newsletter-form button {
  border: none;
  background: var(--sts-orange);
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 4px;
  font-family: var(--sts-font);
  cursor: pointer;
  white-space: nowrap;
}

.sts-newsletter-form button:hover {
  background: var(--sts-orange-dark);
}

.sts-newsletter-visual {
  max-height: 200px;
  object-fit: contain;
  margin-left: auto;
}

/* ---------- Footer ---------- */
.sts-footer {
  background: var(--sts-bg);
  padding-top: 60px;
  border-top: 1px solid var(--sts-border);
}

.sts-footer h5 {
  font-size: 16px;
  margin-bottom: 18px;
}

.sts-footer p,
.sts-footer li,
.sts-footer a {
  color: var(--sts-muted);
  font-size: 14px;
}

.sts-footer a:hover {
  color: var(--sts-orange);
}

.sts-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sts-footer ul li {
  margin-bottom: 10px;
}

.sts-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.sts-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sts-navy);
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sts-social a:hover {
  background: var(--sts-orange);
}

.sts-footer-newsletter {
  display: flex;
  gap: 0;
  margin-top: 12px;
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: 6px;
  overflow: hidden;
}

.sts-footer-newsletter input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  outline: none;
  font-family: var(--sts-font);
  min-width: 0;
  font-size: 13px;
}

.sts-footer-newsletter button {
  background: var(--sts-orange);
  border: none;
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
}

.sts-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  font-size: 28px;
  color: var(--sts-navy-2);
  opacity: 0.7;
}

.sts-footer-bottom {
  border-top: 1px solid var(--sts-border);
  margin-top: 40px;
  padding: 18px 0;
  font-size: 13px;
  color: var(--sts-muted);
}

.sts-footer-bottom a {
  margin-left: 16px;
  font-size: 13px;
}

/* ---------- Shop layout ---------- */
.sts-shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.sts-sidebar {
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius);
  padding: 20px;
}

.sts-sidebar .widget {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--sts-border);
}

.sts-sidebar .widget:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sts-sidebar h5 {
  font-size: 15px;
  margin-bottom: 14px;
}

.sts-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sts-filter-list li {
  margin-bottom: 8px;
}

.sts-filter-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--sts-muted);
}

.sts-filter-list input {
  accent-color: var(--sts-orange);
}

.sts-price-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sts-price-inputs input {
  width: 100%;
  border: 1px solid var(--sts-border);
  border-radius: 4px;
  padding: 8px;
  font-family: var(--sts-font);
  font-size: 13px;
}

.sts-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--sts-bg);
  padding: 12px 16px;
  border-radius: var(--sts-radius);
  margin-bottom: 22px;
  font-size: 14px;
}

.sts-toolbar select {
  border: 1px solid var(--sts-border);
  border-radius: 4px;
  padding: 6px 10px;
  font-family: var(--sts-font);
  font-size: 13px;
}

.sts-color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sts-color-swatches button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px var(--sts-border);
  cursor: pointer;
  padding: 0;
}

.sts-color-swatches button.active {
  box-shadow: 0 0 0 2px var(--sts-orange);
}

.sts-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sts-tags a {
  background: var(--sts-bg);
  color: var(--sts-muted);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 4px;
}

.sts-tags a:hover {
  background: var(--sts-orange);
  color: #fff;
}

.sts-mini-product {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.sts-mini-product img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--sts-bg);
}

.sts-mini-product h6 {
  font-size: 13px;
  margin: 0 0 4px;
}

.sts-mini-product .price {
  color: var(--sts-orange);
  font-weight: 700;
  font-size: 13px;
}

.sts-sidebar-banner {
  border-radius: var(--sts-radius);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  background: center/cover no-repeat;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sts-sidebar-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(14, 34, 77, 0.8));
}

.sts-sidebar-banner .content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.sts-sidebar-banner h5 {
  color: #fff;
}

/* ---------- Product detail ---------- */
.sts-pd-gallery {
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius);
  padding: 20px;
  text-align: center;
}

.sts-pd-gallery img {
  max-height: 420px;
  margin: 0 auto;
  object-fit: contain;
}

.sts-pd-info .sku {
  font-size: 13px;
  color: var(--sts-muted);
  margin-bottom: 8px;
}

.sts-pd-info h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 12px;
}

.sts-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--sts-border);
  border-radius: 4px;
  overflow: hidden;
}

.sts-qty-box button {
  width: 38px;
  height: 42px;
  border: none;
  background: var(--sts-bg);
  cursor: pointer;
  font-weight: 700;
}

.sts-qty-box input {
  width: 52px;
  height: 42px;
  border: none;
  text-align: center;
  font-family: var(--sts-font);
  font-weight: 700;
  outline: none;
}

.sts-pd-tabs {
  margin-top: 40px;
}

.sts-pd-tabs .nav-link {
  color: var(--sts-muted);
  font-weight: 700;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

.sts-pd-tabs .nav-link.active {
  color: var(--sts-orange);
  background: transparent;
  border-bottom-color: var(--sts-orange);
}

/* ---------- Cart ---------- */
.sts-cart-table {
  width: 100%;
  border-collapse: collapse;
}

.sts-cart-table th {
  background: var(--sts-bg);
  padding: 14px;
  font-size: 13px;
  text-align: left;
}

.sts-cart-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--sts-border);
  vertical-align: middle;
}

.sts-cart-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sts-cart-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--sts-bg);
}

.sts-cart-summary {
  background: var(--sts-bg);
  border-radius: var(--sts-radius);
  padding: 24px;
}

.sts-cart-summary .row-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.sts-cart-summary .total {
  font-size: 18px;
  font-weight: 700;
  color: var(--sts-navy);
  border-top: 1px solid var(--sts-border);
  padding-top: 14px;
  margin-top: 8px;
}

/* ---------- Forms / pages ---------- */
.sts-page-hero {
  background: var(--sts-bg);
  padding: 40px 0;
  text-align: center;
}

.sts-page-hero h1 {
  margin-bottom: 8px;
}

.sts-form-card {
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius);
  padding: 32px;
  box-shadow: var(--sts-shadow);
}

.sts-form-card .form-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--sts-navy);
}

.sts-form-card .form-control,
.sts-form-card .form-select {
  border-radius: 6px;
  border-color: var(--sts-border);
  padding: 12px 14px;
  font-family: var(--sts-font);
}

.sts-form-card .form-control:focus,
.sts-form-card .form-select:focus {
  border-color: var(--sts-orange);
  box-shadow: 0 0 0 3px rgba(253, 150, 54, 0.15);
}

.sts-contact-card {
  background: #fff;
  border: 1px solid var(--sts-border);
  border-radius: var(--sts-radius);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
}

.sts-contact-card i {
  font-size: 32px;
  color: var(--sts-orange);
  margin-bottom: 14px;
}

.sts-legal {
  max-width: 860px;
  margin: 0 auto;
}

.sts-legal h2 {
  font-size: 1.35rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.sts-legal p,
.sts-legal li {
  color: var(--sts-muted);
  margin-bottom: 12px;
}

.sts-team-card {
  text-align: center;
}

.sts-team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--sts-radius);
  margin-bottom: 14px;
}

.sts-team-card h5 {
  margin-bottom: 4px;
  font-size: 16px;
}

.sts-team-card span {
  color: var(--sts-muted);
  font-size: 13px;
}

.sts-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin-top: 20px;
}

.sts-check-grid li {
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 600;
  font-size: 14px;
}

.sts-check-grid i {
  color: var(--sts-orange);
  margin-top: 3px;
}

.sts-brand-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  opacity: 0.55;
  filter: grayscale(1);
}

.sts-brand-row span {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--sts-navy);
  transition: all 0.3s;
}

.sts-brand-row span:hover {
  opacity: 1;
  filter: none;
  color: var(--sts-orange);
}

/* ---------- Pagination ---------- */
.sts-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 36px;
}

.sts-pagination a,
.sts-pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid var(--sts-border);
  font-weight: 700;
  font-size: 14px;
  color: var(--sts-navy);
  padding: 0 10px;
}

.sts-pagination a:hover,
.sts-pagination .active {
  background: var(--sts-orange);
  border-color: var(--sts-orange);
  color: #fff;
}

/* ---------- Toast ---------- */
.sts-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--sts-navy);
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  box-shadow: var(--sts-shadow-hover);
  z-index: 2000;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.3s ease;
  max-width: 320px;
  font-weight: 600;
  font-size: 14px;
}

.sts-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.sts-success-banner {
  background: #e8f8f0;
  border: 1px solid #b6e6cd;
  color: #1e7a4c;
  border-radius: var(--sts-radius);
  padding: 20px 24px;
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.sts-cta {
  background: linear-gradient(120deg, var(--sts-navy) 0%, #1a3a6e 55%, var(--sts-orange-dark) 160%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.sts-cta h2 {
  color: #fff;
  margin-bottom: 12px;
}

.sts-cta p {
  opacity: 0.9;
  margin-bottom: 24px;
}

/* ---------- Utilities ---------- */
.sts-divider {
  height: 1px;
  background: var(--sts-border);
  margin: 24px 0;
}

.text-orange {
  color: var(--sts-orange) !important;
}

.bg-soft {
  background: var(--sts-bg) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .sts-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sts-nav-help {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .sts-shop-layout {
    grid-template-columns: 1fr;
  }
  .sts-sidebar {
    display: none;
  }
  .sts-sidebar.show-mobile {
    display: block;
    margin-bottom: 20px;
  }
  .sts-header-actions .sts-action-text {
    display: none;
  }
  .sts-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .sts-nav-inner {
    flex-wrap: wrap;
  }
  .sts-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 0 16px;
  }
  .sts-menu.open {
    display: flex;
  }
  .sts-browse-btn {
    flex: 1;
  }
  .sts-blog-featured {
    grid-template-columns: 1fr;
  }
  .sts-cat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767.98px) {
  .sts-topbar .sts-promo {
    display: none;
  }
  .sts-hero {
    min-height: 380px;
  }
  .sts-cat-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .sts-cat-card {
    min-width: 120px;
    scroll-snap-align: start;
  }
  .sts-check-grid {
    grid-template-columns: 1fr;
  }
  .sts-newsletter-form {
    flex-direction: column;
  }
  .sts-cart-table thead {
    display: none;
  }
  .sts-cart-table tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--sts-border);
    border-radius: 8px;
    padding: 10px;
  }
  .sts-cart-table td {
    display: flex;
    justify-content: space-between;
    border: none;
    padding: 8px;
  }
  .sts-footer-bottom {
    text-align: center;
  }
  .sts-footer-bottom a {
    margin: 0 8px;
  }
  .sts-search select {
    display: none;
  }
  .sts-logo img {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
