:root {
  --rs-primary: #1f5b68;
  --rs-primary-dark: #123842;
  --rs-accent: #f2b84b;
  --rs-surface: #f5f7f9;
  --rs-panel: #ffffff;
  --rs-text: #17202a;
  --rs-muted: #5b6773;
  --rs-border: #d7dee5;
  --rs-radius: 8px;
}

* {
  box-sizing: border-box;
}

body.rs-theme {
  margin: 0;
  color: var(--rs-text);
  background: var(--rs-surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.rs-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.rs-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--rs-border);
  backdrop-filter: blur(12px);
}

.rs-header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 24px;
}

.rs-brand {
  display: inline-flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.rs-brand-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rs-primary);
  color: #ffffff;
  font-weight: 800;
}

.rs-brand strong,
.rs-brand small {
  display: block;
}

.rs-brand small {
  color: var(--rs-muted);
  font-size: 12px;
}

.rs-primary-nav {
  flex: 1;
}

.rs-primary-nav ul,
.rs-site-footer ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.rs-primary-nav a,
.rs-site-footer a {
  color: var(--rs-muted);
  font-weight: 700;
  text-decoration: none;
}

.rs-cart-link,
.rs-button,
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 0;
  border-radius: var(--rs-radius);
  background: var(--rs-primary);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.rs-cart-link {
  white-space: nowrap;
}

.rs-hero {
  background:
    linear-gradient(90deg, rgba(18, 56, 66, 0.94), rgba(31, 91, 104, 0.78)),
    var(--rs-primary);
  color: #ffffff;
}

.rs-hero-inner {
  display: grid;
  min-height: 520px;
  align-items: center;
  gap: 32px;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.rs-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.rs-hero p {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.rs-hero-panel {
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--rs-radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent),
    rgba(255, 255, 255, 0.08);
}

.rs-hero .rs-button {
  background: var(--rs-accent);
  color: #1b1f23;
}

.rs-page-section,
.rs-trust,
.rs-categories,
.rs-featured-products {
  padding: 52px 0;
}

.rs-section-title {
  margin: 0 0 24px;
  font-size: 30px;
}

.rs-grid {
  display: grid;
  gap: 16px;
}

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

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

.rs-card {
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  background: var(--rs-panel);
  padding: 20px;
}

.rs-card h3 {
  margin: 0 0 8px;
}

.rs-card p {
  margin: 0;
  color: var(--rs-muted);
}

.rs-category-card {
  min-height: 140px;
  border-bottom: 4px solid var(--rs-accent);
}

.rs-site-footer {
  border-top: 1px solid var(--rs-border);
  background: #ffffff;
}

.rs-footer-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  background: #ffffff;
  padding: 14px;
}

.woocommerce ul.products li.product .price {
  color: var(--rs-primary);
  font-weight: 800;
}

.woocommerce div.product {
  background: #ffffff;
  border: 1px solid var(--rs-border);
  border-radius: var(--rs-radius);
  padding: 24px;
}

@media (max-width: 860px) {
  .rs-header-inner,
  .rs-footer-inner,
  .rs-primary-nav ul,
  .rs-site-footer ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .rs-hero-inner,
  .rs-grid-3,
  .rs-grid-4 {
    grid-template-columns: 1fr;
  }

  .rs-hero-inner {
    min-height: 0;
    padding: 64px 0;
  }
}

