:root {
  --sw-color-brand-primary:   #111111;
  --sw-color-brand-dark:      #000000;
  --sw-color-success:         #37d046;
  --sw-color-warning:         #fa5400;
  --sw-color-danger:          #de294c;
  --sw-color-dark:            #111111;
  --sw-color-text:            #111111;
  --sw-color-text-muted:      #707072;
  --sw-color-bg-light:        #f5f5f5;
  --sw-color-border:          #e5e5e5;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--sw-color-text);
  background: var(--sw-color-bg-light);
  margin: 0;
}

a { color: var(--sw-color-brand-primary); text-decoration: none; }
a:hover { color: var(--sw-color-brand-dark); }

.sw-topbar {
  background: #f0f0f0;
  font-size: 0.78rem;
  padding: 6px 16px;
  color: #555;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sw-topbar a { color: #555; }
.sw-topbar a:hover { color: #111; }

.sw-header {
  background: var(--sw-color-dark);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.sw-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}
.sw-logo {
  font-size: 1.7rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.sw-logo:hover { color: #fff; text-decoration: none; }

.sw-search-form {
  flex: 1;
  max-width: 600px;
  display: flex;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}
.sw-search-input {
  flex: 1;
  border: none;
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.sw-search-btn {
  background: var(--sw-color-brand-primary);
  border: none;
  padding: 0 16px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.sw-search-btn:hover { background: #333; }

.sw-header-icons { display: flex; gap: 4px; flex-shrink: 0; align-items: center; }
.sw-icon-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.85);
  padding: 6px 8px;
  cursor: pointer;
  position: relative;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: background 0.15s, color 0.15s;
}
.sw-icon-btn:hover { color: #fff; background: rgba(255,255,255,0.12); }
.sw-icon-label {
  font-size: 0.7rem;
  font-weight: 700;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: none;
}
.sw-cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--sw-color-warning);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.sw-wishlist-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--sw-color-danger);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.sw-category-nav {
  background: #fff;
  border-bottom: 2px solid var(--sw-color-border);
  position: sticky;
  top: 61px;
  z-index: 999;
}
.sw-category-list {
  list-style: none;
  margin: 0;
  padding: 0 16px;
  display: flex;
  gap: 0;
  overflow-x: auto;
}
.sw-category-link {
  display: block;
  padding: 13px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.15s, border-color 0.15s;
  margin-bottom: -2px;
}
.sw-category-link:hover,
.sw-category-link.active {
  color: var(--sw-color-brand-primary);
  border-bottom-color: var(--sw-color-brand-primary);
  text-decoration: none;
}

.sw-breadcrumbs {
  background: #fff;
  border-bottom: 1px solid var(--sw-color-border);
  padding: 10px 24px;
  font-size: 0.8rem;
  color: var(--sw-color-text-muted);
}
.sw-breadcrumbs a { color: var(--sw-color-text-muted); }
.sw-breadcrumbs a:hover { color: var(--sw-color-brand-primary); }
.sw-breadcrumbs .separator { margin: 0 6px; }

.sw-hero {
  position: relative;
  background: #111;
  color: #fff;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.sw-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 50%, #111 100%);
}
.sw-hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, transparent 0%, rgba(250,84,0,0.08) 100%);
}
.sw-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 640px;
}
.sw-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sw-color-warning);
  margin-bottom: 16px;
}
.sw-hero-headline {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.sw-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.6;
}
.sw-hero-cta {
  display: inline-block;
  padding: 15px 36px;
  background: #fff;
  color: #111;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.sw-hero-cta:hover {
  background: var(--sw-color-warning);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.sw-hero-cta-secondary {
  display: inline-block;
  padding: 15px 36px;
  background: transparent;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 3px;
  border: 2px solid rgba(255,255,255,0.4);
  margin-left: 12px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.sw-hero-cta-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
}

.sw-listing-layout {
  display: flex;
  gap: 24px;
  padding: 24px;
  align-items: flex-start;
}
.sw-filter-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--sw-color-border);
  border-radius: 4px;
  padding: 20px;
  position: sticky;
  top: 110px;
}
.sw-filter-sidebar h5 {
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sw-filter-sidebar h6 {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--sw-color-border);
}
.sw-filter-sidebar h6:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.sw-filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.87rem;
  cursor: pointer;
  user-select: none;
}
.sw-filter-option input[type=checkbox] { accent-color: var(--sw-color-brand-primary); }
.sw-filter-clear {
  width: 100%;
  margin-top: 16px;
  padding: 9px;
  background: transparent;
  border: 1px solid var(--sw-color-border);
  border-radius: 4px;
  font-size: 0.82rem;
  cursor: pointer;
  color: var(--sw-color-text-muted);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  transition: border-color 0.15s, color 0.15s;
}
.sw-filter-clear:hover { border-color: var(--sw-color-brand-primary); color: var(--sw-color-brand-primary); }

.sw-listing-main { flex: 1; min-width: 0; }
.sw-listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid var(--sw-color-border);
  border-radius: 4px;
  padding: 10px 14px;
}
.sw-listing-toolbar .result-count { font-size: 0.85rem; color: var(--sw-color-text-muted); }
.sw-sort-select {
  font-size: 0.85rem;
  padding: 5px 10px;
  border: 1px solid var(--sw-color-border);
  border-radius: 4px;
  outline: none;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.sw-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) { .sw-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .sw-listing-layout { flex-direction: column; padding: 16px; }
  .sw-filter-sidebar { width: 100%; position: static; }
  .sw-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sw-hero-headline { font-size: 2.8rem; }
  .sw-hero-content { padding: 60px 24px; }
}

.sw-product-card {
  background: #fff;
  border: 1px solid var(--sw-color-border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.sw-product-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.sw-product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5f5f5;
}
.sw-product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.sw-product-card:hover .sw-product-image-wrap img { transform: scale(1.06); }
.sw-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sw-badge-sale     { background: var(--sw-color-danger);  color: #fff; }
.sw-badge-new      { background: var(--sw-color-brand-primary); color: #fff; }
.sw-badge-topseller { background: var(--sw-color-warning); color: #fff; }
.sw-badge-outofstock {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sw-wishlist-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, color 0.15s;
  color: #bbb;
}
.sw-product-card:hover .sw-wishlist-btn { opacity: 1; }
.sw-wishlist-btn:hover { color: var(--sw-color-danger); }
.sw-wishlist-btn.active { opacity: 1; color: var(--sw-color-danger); }

.sw-product-info { padding: 12px 14px; flex: 1; display: flex; flex-direction: column; }
.sw-product-manufacturer { font-size: 0.72rem; color: var(--sw-color-text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; font-weight: 600; }
.sw-product-name { font-size: 0.92rem; font-weight: 700; color: var(--sw-color-text); margin-bottom: 6px; line-height: 1.3; }
.sw-product-name a { color: inherit; }
.sw-product-name a:hover { color: var(--sw-color-brand-primary); }

.sw-product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.sw-stars { color: #faa50a; font-size: 0.82rem; }
.sw-rating-count { font-size: 0.75rem; color: var(--sw-color-text-muted); }

.sw-product-price { margin-top: auto; }
.sw-price-current { font-size: 1.05rem; font-weight: 800; color: var(--sw-color-text); }
.sw-price-current.is-sale { color: var(--sw-color-danger); }
.sw-price-original { font-size: 0.82rem; color: var(--sw-color-text-muted); text-decoration: line-through; margin-left: 6px; }

.sw-product-actions { padding: 0 14px 14px; }
.sw-btn-cart {
  width: 100%;
  padding: 10px;
  background: var(--sw-color-brand-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.83rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'Inter', sans-serif;
}
.sw-btn-cart:hover { background: #fa5400; }
.sw-btn-cart:disabled { background: #ccc; cursor: not-allowed; }

.sw-no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--sw-color-text-muted);
}
.sw-no-results h4 { font-weight: 800; font-size: 1.3rem; margin-bottom: 8px; color: #111; }

.sw-product-detail {
  display: flex;
  gap: 48px;
  padding: 32px 24px;
  background: #fff;
  min-height: 70vh;
}
.sw-detail-gallery { flex: 0 0 55%; }
.sw-detail-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--sw-color-border);
  background: #f5f5f5;
}
.sw-detail-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.sw-detail-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 2px solid var(--sw-color-border);
  border-radius: 3px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.sw-detail-thumb.active,
.sw-detail-thumb:hover { border-color: var(--sw-color-brand-primary); }

.sw-detail-info { flex: 1; }
.sw-detail-back {
  background: transparent;
  border: none;
  font-size: 0.83rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--sw-color-text-muted);
  padding: 0;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
  transition: color 0.15s;
}
.sw-detail-back:hover { color: #111; }
.sw-detail-manufacturer { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sw-color-text-muted); margin-bottom: 6px; font-weight: 600; }
.sw-detail-name { font-size: 1.7rem; font-weight: 900; margin-bottom: 8px; line-height: 1.15; }
.sw-detail-sku { font-size: 0.78rem; color: var(--sw-color-text-muted); margin-bottom: 14px; }
.sw-detail-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-size: 0.85rem; }
.sw-detail-price-block { margin-bottom: 20px; display: flex; align-items: baseline; gap: 12px; }
.sw-detail-price { font-size: 1.9rem; font-weight: 900; color: var(--sw-color-text); }
.sw-detail-price.is-sale { color: var(--sw-color-danger); }
.sw-detail-price-original { font-size: 1rem; color: var(--sw-color-text-muted); text-decoration: line-through; }
.sw-detail-stock-ok  { color: var(--sw-color-success); font-size: 0.85rem; font-weight: 700; margin-bottom: 18px; }
.sw-detail-stock-out { color: var(--sw-color-danger);  font-size: 0.85rem; font-weight: 700; margin-bottom: 18px; }

.sw-variant-label { font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; color: #111; }
.sw-size-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.sw-size-btn {
  min-width: 46px;
  padding: 8px 10px;
  border: 1.5px solid var(--sw-color-border);
  border-radius: 3px;
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  font-family: 'Inter', sans-serif;
}
.sw-size-btn:hover { border-color: #111; }
.sw-size-btn.active { background: #111; border-color: #111; color: #fff; font-weight: 700; }

.sw-color-label-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sw-color-grid { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.sw-color-swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  cursor: pointer;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: outline-color 0.15s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.sw-color-swatch.active { outline-color: #111; }

.sw-qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sw-qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--sw-color-border);
  border-radius: 4px;
  overflow: hidden;
}
.sw-qty-ctrl button {
  width: 38px;
  height: 42px;
  border: none;
  background: #f5f5f5;
  font-size: 1.1rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s;
}
.sw-qty-ctrl button:hover { background: #e5e5e5; }
.sw-qty-ctrl input {
  width: 52px;
  height: 42px;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.sw-btn-add-to-cart {
  flex: 1;
  padding: 14px 28px;
  background: var(--sw-color-brand-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}
.sw-btn-add-to-cart:hover { background: #fa5400; }
.sw-btn-add-to-cart:disabled { background: #ccc; cursor: not-allowed; }

.sw-detail-description { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--sw-color-border); }
.sw-detail-description h6 { font-weight: 800; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.sw-detail-description p { color: #444; line-height: 1.7; font-size: 0.9rem; }

.sw-added-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #111;
  color: #fff;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 0.87rem;
  font-weight: 700;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideUp 0.25s ease;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

@media (max-width: 768px) {
  .sw-product-detail { flex-direction: column; padding: 16px; gap: 24px; }
  .sw-detail-gallery { flex: none; width: 100%; }
  .sw-detail-name { font-size: 1.3rem; }
  .sw-detail-price { font-size: 1.5rem; }
}

.sw-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  justify-content: flex-end;
}
.sw-cart-panel {
  width: 400px;
  max-width: 100vw;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slideInRight 0.25s ease;
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.sw-cart-header {
  padding: 20px 22px;
  border-bottom: 1px solid var(--sw-color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  color: #fff;
}
.sw-cart-header h5 { margin: 0; font-weight: 900; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; color: #fff; }
.sw-cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: rgba(255,255,255,0.7); transition: color 0.15s; }
.sw-cart-close:hover { color: #fff; }
.sw-cart-items { flex: 1; overflow-y: auto; padding: 16px 22px; }
.sw-cart-empty { text-align: center; padding: 60px 20px; color: var(--sw-color-text-muted); }
.sw-cart-empty p { font-weight: 600; }
.sw-cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sw-color-border);
}
.sw-cart-item img { width: 75px; height: 75px; object-fit: cover; border-radius: 3px; background: #f5f5f5; flex-shrink: 0; }
.sw-cart-item-info { flex: 1; min-width: 0; }
.sw-cart-item-name { font-size: 0.87rem; font-weight: 700; margin-bottom: 3px; line-height: 1.3; }
.sw-cart-item-meta { font-size: 0.77rem; color: var(--sw-color-text-muted); margin-bottom: 8px; }
.sw-cart-item-row { display: flex; align-items: center; gap: 8px; }
.sw-cart-item-price { font-weight: 800; font-size: 0.95rem; }
.sw-cart-item-qty-ctrl { display: flex; align-items: center; border: 1px solid var(--sw-color-border); border-radius: 3px; overflow: hidden; }
.sw-cart-item-qty-ctrl button { width: 26px; height: 26px; border: none; background: #f5f5f5; font-size: 0.9rem; cursor: pointer; transition: background 0.15s; }
.sw-cart-item-qty-ctrl button:hover { background: #e5e5e5; }
.sw-cart-item-qty-ctrl span { width: 28px; text-align: center; font-size: 0.85rem; font-weight: 700; }
.sw-cart-item-remove { background: none; border: none; color: var(--sw-color-text-muted); cursor: pointer; font-size: 0.9rem; padding: 4px; margin-left: auto; transition: color 0.15s; }
.sw-cart-item-remove:hover { color: var(--sw-color-danger); }
.sw-cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--sw-color-border);
}
.sw-cart-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }
.sw-btn-checkout {
  width: 100%;
  padding: 14px;
  background: var(--sw-color-brand-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Inter', sans-serif;
}
.sw-btn-checkout:hover { background: #fa5400; }

.sw-checkout-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-checkout-modal {
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  animation: popIn 0.2s ease;
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.sw-checkout-modal h3 { font-weight: 900; font-size: 1.4rem; margin-bottom: 12px; }
.sw-checkout-modal p { color: #555; margin-bottom: 24px; }
.sw-checkout-modal button {
  padding: 12px 32px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sw-checkout-modal button:hover { background: #fa5400; }

.sw-footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 24px;
  margin-top: 48px;
}
.sw-footer-newsletter { margin-bottom: 48px; }
.sw-footer-newsletter h5 { color: #fff; font-weight: 900; margin-bottom: 6px; font-size: 1.1rem; }
.sw-footer-newsletter p { font-size: 0.85rem; margin-bottom: 14px; }
.sw-footer-newsletter-form { display: flex; gap: 8px; max-width: 420px; }
.sw-footer-newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 0.87rem;
  outline: none;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s;
}
.sw-footer-newsletter-form input:focus { border-color: rgba(255,255,255,0.5); }
.sw-footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.sw-footer-newsletter-form button {
  padding: 10px 20px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 4px;
  font-size: 0.87rem;
  font-weight: 800;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
}
.sw-footer-newsletter-form button:hover { background: var(--sw-color-warning); color: #fff; }
.sw-newsletter-success { font-size: 0.85rem; color: var(--sw-color-success); margin-top: 8px; font-weight: 600; }
.sw-newsletter-error { font-size: 0.85rem; color: var(--sw-color-danger); margin-top: 8px; font-weight: 600; }

.sw-footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 40px; }
.sw-footer-col h6 { color: #fff; font-weight: 900; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.sw-footer-col ul { list-style: none; padding: 0; margin: 0; }
.sw-footer-col ul li { margin-bottom: 9px; }
.sw-footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.84rem; transition: color 0.15s; }
.sw-footer-col ul li a:hover { color: #fff; }
.sw-footer-social { display: flex; gap: 16px; margin-bottom: 32px; }
.sw-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.sw-social-link:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.sw-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}
@media (max-width: 768px) {
  .sw-footer-cols { grid-template-columns: repeat(2, 1fr); }
  .sw-footer-bottom { flex-direction: column; text-align: center; }
}
