:root {
  --bg: #ffffff;
  --text: #16171a;
  --muted: #6b6f76;
  --border: #e5e5e8;
  --accent: #16171a;
  --accent-text: #ffffff;
  --surface: #f7f7f8;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(16, 17, 20, 0.06);
  --shadow-md: 0 12px 24px -8px rgba(16, 17, 20, 0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid #2f7fe0;
  outline-offset: 2px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
}

/* Header */
header.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 4vw, 24px);
  max-width: 1100px;
  margin: 0 auto;
  gap: 16px;
  position: relative;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav.main-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 0.2s var(--ease);
}

nav.main-nav a:not(.cart-link)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s var(--ease);
}

nav.main-nav a:not(.cart-link):hover::after {
  transform: scaleX(1);
}

.cart-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), transform 0.15s var(--ease);
}

.cart-link:hover {
  border-color: var(--text);
}

.cart-badge {
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 999px;
  font-size: 12px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  transition: transform 0.2s var(--ease);
}

.cart-badge.bump {
  transform: scale(1.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 16px;
  margin: 0 auto;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
    order: 3;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  nav.main-nav {
    order: 4;
    flex-basis: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s var(--ease), opacity 0.2s var(--ease);
  }

  nav.main-nav.open {
    max-height: 320px;
    opacity: 1;
    padding-top: 12px;
  }

  nav.main-nav a {
    width: 100%;
    padding: 10px 0;
  }

  nav.main-nav a:not(.cart-link)::after {
    display: none;
  }

  .cart-link {
    margin-top: 4px;
  }
}

/* Promo bar */
.promo-bar {
  background: var(--text);
  color: var(--bg);
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
}

.promo-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.promo-track span {
  margin: 0 32px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .promo-track {
    animation: none;
  }
  * {
    scroll-behavior: auto !important;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(56px, 10vw, 100px) 24px;
  text-align: center;

  background-image: url("../images/rttdd.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-wordmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(56px, 16vw, 130px);
  font-weight: 900;
  letter-spacing: -4px;
  color: rgba(255, 255, 255, 0.06);
  white-space: nowrap;
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 48px);
  margin: 0 0 12px;
  letter-spacing: -1.5px;
}

.hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(14px, 2.5vw, 17px);
  margin: 0 0 28px;
}

.btn-hero {
  display: inline-block;
  background: #fff;
  color: #14161a;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.5);
}

.btn-hero:active {
  transform: translateY(0);
}

/* Pinned announcement card */
.pinned-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 32px;
  background: var(--bg);
}

.pinned-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pinned-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.pinned-title {
  font-weight: 700;
  font-size: 14px;
}

.verified {
  color: #2f7fe0;
  font-size: 12px;
}

.pinned-sub {
  color: var(--muted);
  font-size: 12px;
}

.pinned-body {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.pinned-body a {
  color: var(--text);
  font-weight: 600;
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.filter-tab {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.filter-tab:hover {
  border-color: var(--text);
}

.filter-tab.active {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}

/* Product grid */
.section-title {
  font-size: clamp(21px, 3.5vw, 26px);
  margin: 48px 0 24px;
  letter-spacing: -0.5px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
  gap: clamp(14px, 3vw, 24px);
  padding-bottom: 60px;
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-image {
    height: 110px;
    font-size: 36px;
  }

  .product-body {
    padding: 10px;
    gap: 4px;
  }

  .product-name {
    font-size: 13px;
  }

  .product-desc {
    font-size: 11px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }

  .product-price {
    font-size: 13px;
  }

  .compare-price {
    font-size: 11px;
  }

  button, .btn {
    padding: 8px 10px;
    font-size: 12px;
  }
}

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.product-image {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.rating-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  color: #16171a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

/* Product photo + emoji fallback layering (used on product cards, the
   options popup, and cart line items). The emoji sits in normal flow as
   the fallback; the real photo is absolutely positioned on top of it and
   hides itself via onerror if it fails to load, revealing the fallback. */
.product-image-fallback {
  position: relative;
  z-index: 0;
}

.product-image-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.product-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-name {
  font-weight: 600;
  font-size: 16px;
}

.product-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  flex: 1;
}

.product-price {
  font-weight: 700;
  font-size: 16px;
}

.compare-price {
  color: var(--muted);
  font-weight: 500;
  text-decoration: line-through;
  margin-right: 6px;
  font-size: 13px;
}

button, .btn {
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  font-family: inherit;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s var(--ease), background 0.2s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-text);
  width: 100%;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text);
}

/* Product options modal */
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 17, 20, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
  z-index: 1000;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: min(420px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-md);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.2s var(--ease);
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  line-height: 1;
}

.modal-close:hover {
  background: var(--border);
}

.modal-product {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding-right: 32px;
}

.modal-product-image {
  position: relative;
  overflow: hidden;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.modal-product-info {
  min-width: 0;
}

.modal-product-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.modal-product-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.modal-variants h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin: 0 0 10px;
}

.variant-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.variant-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
}

.variant-option:hover {
  border-color: var(--text);
}

.variant-option input {
  accent-color: var(--accent);
}

.variant-option.selected {
  border-color: var(--text);
  background: var(--surface);
}

.variant-option.disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.variant-option-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}

.variant-option-price {
  font-weight: 700;
  font-size: 14px;
}

.modal-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-footer .qty-control {
  flex-shrink: 0;
}

.modal-footer .btn-primary {
  flex: 1;
}

/* Cart page */
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-image {
  position: relative;
  overflow: hidden;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  flex-shrink: 0;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-name {
  font-weight: 600;
}

.cart-item-price {
  color: var(--muted);
  font-size: 14px;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.qty-control button {
  background: none;
  width: 32px;
  height: 32px;
  padding: 0;
  font-size: 16px;
}

.qty-control button:hover {
  background: var(--surface);
}

.qty-control span {
  width: 28px;
  text-align: center;
  font-weight: 600;
}

.remove-link {
  background: none;
  color: var(--muted);
  text-decoration: underline;
  padding: 0;
  font-size: 13px;
}

.cart-item-total {
  width: 80px;
  text-align: right;
  font-weight: 700;
}

.cart-summary {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 2px solid var(--text);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
}

.summary-total {
  font-size: 20px;
  font-weight: 800;
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}

@media (max-width: 640px) {
  .cart-item {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "image info"
      "qty   total";
    row-gap: 10px;
  }
  .cart-item-image {
    grid-area: image;
    width: 56px;
    height: 56px;
  }
  .cart-item-info {
    grid-area: info;
  }
  .qty-control {
    grid-area: qty;
  }
  .cart-item-total {
    grid-area: total;
    width: auto;
  }
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 40px 0 80px;
  align-items: start;
}

@media (max-width: 800px) {
  .checkout-layout {
    grid-template-columns: 1fr;
    padding: 24px 0 60px;
  }
}

.payment-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.payment-tab {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  border-radius: var(--radius);
  font-weight: 600;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.payment-tab.active {
  background: var(--accent);
  color: var(--accent-text);
  border-color: var(--accent);
}

.payment-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 4vw, 24px);
}

.payment-panel.hidden {
  display: none;
}

.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.qr-box img {
  border: 1px solid var(--border);
  border-radius: 8px;
  width: min(220px, 60vw);
  height: min(220px, 60vw);
}

.address-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  word-break: break-all;
}

.copy-btn {
  background: var(--accent);
  color: var(--accent-text);
  flex-shrink: 0;
  padding: 6px 10px;
  font-size: 12px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--bg);
  color: var(--text);
}

.note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.order-confirm {
  text-align: center;
  padding: 40px 24px;
}

.order-confirm .order-id {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: var(--surface);
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
  margin: 12px 0;
}

footer {
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* Testimonials */
.testimonials-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(36px, 6vw, 56px) 0;
}

.testimonials-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 24px clamp(16px, 4vw, 24px) 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 min(260px, 80vw);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: box-shadow 0.2s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.testimonial-date {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.testimonials-footnote {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* FAQ */
.faq-section {
  padding: clamp(36px, 6vw, 56px) 24px;
}

.faq-eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item .faq-icon {
  color: var(--muted);
  font-weight: 400;
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Newsletter */
.newsletter {
  text-align: center;
  padding: clamp(36px, 6vw, 56px) 24px;
  border-top: 1px solid var(--border);
}

.newsletter h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.newsletter p {
  color: var(--muted);
  margin: 0 0 20px;
}

.newsletter-form {
  display: flex;
  max-width: 360px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  background: var(--bg);
  color: var(--text);
}

.newsletter-form button {
  background: var(--accent);
  color: var(--accent-text);
  border-radius: 0;
  padding: 0 18px;
}

/* Shop layout / sidebar */
.shop-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  padding: 32px clamp(16px, 4vw, 24px) 60px;
}

.sidebar-toggle {
  display: none;
  width: 100%;
  margin-bottom: 16px;
}

@media (max-width: 800px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .sidebar-toggle {
    display: block;
  }

  .sidebar {
    display: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    margin-bottom: 20px;
  }

  .sidebar.open {
    display: block;
  }
}

.sidebar-block {
  margin-bottom: 24px;
}

.sidebar-block h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin: 0 0 10px;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  padding: 4px 0;
}

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

.price-range input {
  width: 0;
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  background: var(--bg);
  color: var(--text);
}

#sort-select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  background: var(--bg);
  color: var(--text);
}
