:root {
  --primary-cyan: #25f4ee;
  --primary-pink: #fe2c55;
  --primary-purple: #8a3ffc;
  --bg-light: #f2f4f8;
  --bg-white: #ffffff;
  --text-dark: #121212;
  --text-body: #54656f;
  --text-light: #64748b;
  --green: #10b981;
  --radius-card: 32px;
  --radius-pill: 60px;
  --shadow-soft: 0 20px 35px -10px rgba(0, 0, 0, 0.06);
  --shadow-pink: 0 20px 40px -12px rgba(254, 44, 85, 0.16);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff 100%);
  color: var(--text-dark);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(100, 116, 139, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  backdrop-filter: blur(10px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}

.logo a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  text-decoration: none;
}

.logo-gradient,
.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink), var(--primary-purple));
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gradientShift 6s ease infinite;
}

.nav-list {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-pink);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--primary-pink);
  border-radius: 3px 3px 0 0;
}

.hamburger {
  display: none;
  width: 30px;
  height: 25px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger .bar {
  display: block;
  width: 30px;
  height: 3px;
  margin: 4px 0;
  background: var(--text-dark);
  border-radius: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  z-index: -1;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 244, 238, 0.16), rgba(254, 44, 85, 0.1) 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 820;
  letter-spacing: -1px;
  line-height: 1.2;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.subhead {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: clamp(1rem, 4vw, 1.3rem);
}

.filter-section {
  padding: 20px 0 30px;
}

.filter-header h2,
.section-title {
  margin-bottom: 50px;
  color: var(--text-dark);
  font-size: 2.2rem;
  font-weight: 760;
  text-align: center;
}

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

.filter-btn {
  padding: 10px 24px;
  border: 1.5px solid rgba(100, 116, 139, 0.2);
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  color: var(--text-body);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 650;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-btn:hover {
  border-color: var(--primary-pink);
  color: var(--primary-pink);
  transform: translateY(-2px);
}

.filter-btn.active {
  border-color: var(--primary-pink);
  background: var(--primary-pink);
  box-shadow: 0 8px 16px -6px rgba(254, 44, 85, 0.3);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px;
  background: transparent;
}

.product-table th {
  padding: 18px 16px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 650;
  text-align: left;
}

.product-table th:first-child {
  border-radius: 16px 0 0 16px;
}

.product-table th:last-child {
  border-radius: 0 16px 16px 0;
}

.product-table tr {
  background: #fff;
  border-radius: 28px;
}

.product-table td {
  padding: 16px;
  vertical-align: middle;
}

.product-title {
  color: var(--text-dark);
  font-weight: 760;
}

.product-table td:first-child > small {
  display: block;
  max-width: 860px;
  margin-top: 4px;
  overflow: hidden;
  color: var(--text-light);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-stock {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: #e6f7f0;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 650;
  white-space: nowrap;
}

.product-price {
  color: var(--primary-pink);
  font-size: 1.3rem;
  font-weight: 820;
  white-space: nowrap;
}

.product-price small {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 400;
}

.btn-buy,
.btn {
  display: inline-block;
  border: 0;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-buy {
  padding: 8px 20px;
  border-radius: 40px;
  background: linear-gradient(145deg, #121212, #2a2a2a);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 650;
  white-space: nowrap;
}

.btn-buy:hover {
  background: var(--primary-pink);
  box-shadow: 0 8px 14px -6px var(--primary-pink);
}

.features-section {
  margin-top: 30px;
  padding: 70px 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 60px 60px 0 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px 24px 30px;
  border: 1px solid rgba(100, 116, 139, 0.08);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-pink);
  transform: translateY(-10px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 76px;
  margin-bottom: 20px;
  border-radius: 60px;
  background: linear-gradient(145deg, #f9fafb, #fff);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.02);
  font-size: 3.1rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
}

.faq-section {
  padding: 60px 0;
}

.faq-grid {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.02);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  color: var(--text-dark);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 650;
}

.faq-question .icon {
  color: var(--primary-pink);
  font-size: 1.8rem;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  color: var(--text-body);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

.site-footer {
  margin-top: 50px;
  padding: 30px 0;
  border-radius: 40px 40px 0 0;
  background: #121212;
  color: #94a3b8;
  text-align: center;
}

.footer-copyright {
  font-size: 0.95rem;
}

.admin-body {
  min-height: 100vh;
}

.admin-main {
  padding: 58px 24px 80px;
}

.admin-panel {
  max-width: 760px;
  margin: 0 auto;
}

.admin-card {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 70px -30px rgba(18, 18, 18, 0.22);
}

.admin-card::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(37, 244, 238, 0.16), rgba(254, 44, 85, 0.12) 70%);
  border-radius: 50%;
  filter: blur(36px);
}

.admin-heading,
.settings-form {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--primary-pink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-heading h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
}

.admin-heading p:last-child {
  margin-bottom: 30px;
  color: var(--text-light);
}

.settings-form {
  display: grid;
  gap: 12px;
}

.address-settings {
  display: grid;
  gap: 10px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(100, 116, 139, 0.12);
}

.address-settings-head h2 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.address-settings-head p {
  margin-bottom: 8px;
  color: var(--text-light);
}

.form-label {
  color: var(--text-body);
  font-size: 1rem;
  font-weight: 700;
}

.admin-input {
  width: 100%;
  min-height: 52px;
  margin-bottom: 10px;
  padding: 14px 18px;
  border: 2px solid rgba(100, 116, 139, 0.15);
  border-radius: 18px;
  background: #fff;
  color: var(--text-dark);
  font: inherit;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-input:focus {
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 6px rgba(37, 244, 238, 0.1);
}

.admin-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}

.btn {
  flex: 1;
  padding: 15px 22px;
  border-radius: var(--radius-pill);
  font-size: 1.05rem;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink), var(--primary-purple));
  background-size: 200% 200%;
  box-shadow: 0 12px 26px -10px rgba(254, 44, 85, 0.65);
  color: #fff;
  animation: gradientShift 6s ease infinite;
}

.btn-secondary {
  border: 1px solid rgba(100, 116, 139, 0.18);
  background: #fff;
  color: var(--text-body);
}

.btn:hover {
  transform: translateY(-2px);
}

.admin-message {
  min-height: 26px;
  margin-top: 6px;
  color: var(--text-light);
  font-weight: 650;
}

.admin-message.success {
  color: var(--green);
}

.admin-message.error {
  color: var(--primary-pink);
}

.admin-message.info {
  color: var(--primary-purple);
}

.buy-body {
  min-height: 100vh;
}

.buy-main {
  padding: 58px 24px 90px;
}

.buy-shell {
  display: grid;
  max-width: 1120px;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  margin: 0 auto;
}

.buy-summary,
.checkout-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 70px -30px rgba(18, 18, 18, 0.2);
}

.buy-summary {
  padding: 46px;
}

.buy-summary::before {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -130px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(254, 44, 85, 0.14), rgba(37, 244, 238, 0.12) 68%);
  border-radius: 50%;
  filter: blur(38px);
}

.buy-summary > * {
  position: relative;
  z-index: 1;
}

.buy-summary h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.08;
}

.buy-lead {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--text-light);
  font-size: 1.12rem;
}

.order-card {
  padding: 28px;
  border: 1px solid rgba(100, 116, 139, 0.09);
  border-radius: 24px;
  background: linear-gradient(145deg, #f8fafc, #fff);
}

.order-card-head,
.total-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.order-card-head span,
.total-box span {
  color: var(--text-light);
  font-weight: 700;
}

.order-card-head strong,
.total-box strong {
  color: var(--primary-pink);
  font-size: 1.85rem;
  line-height: 1;
}

.order-card h2 {
  margin: 20px 0 10px;
  font-size: 1.65rem;
  line-height: 1.3;
}

.order-card p {
  color: var(--text-body);
}

.order-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.order-tags span {
  padding: 7px 13px;
  border-radius: 999px;
  background: #e6f7f0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 750;
}

.checkout-card {
  padding: 34px;
}

.checkout-heading h2 {
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.checkout-heading p {
  margin-bottom: 24px;
  color: var(--text-light);
}

.quantity-box {
  display: grid;
  max-width: 220px;
  grid-template-columns: 52px 1fr 52px;
  overflow: hidden;
  margin-bottom: 10px;
  border: 2px solid rgba(100, 116, 139, 0.15);
  border-radius: 18px;
  background: #fff;
}

.quantity-box .quantity-btn,
.quantity-box .quantity-input {
  height: 52px;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  font-weight: 800;
}

.quantity-box .quantity-btn {
  cursor: pointer;
  font-size: 1.25rem;
}

.quantity-box .quantity-btn:hover {
  background: var(--primary-pink);
  color: #fff;
}

.quantity-box .quantity-input {
  width: 100%;
  text-align: center;
  outline: 0;
}

.payment-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 2px 0 10px;
}

.payment-method-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 14px;
  border: 2px solid rgba(100, 116, 139, 0.14);
  border-radius: 18px;
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.payment-method-card:hover,
.payment-method-card.active {
  border-color: var(--primary-pink);
  box-shadow: 0 10px 24px -16px rgba(254, 44, 85, 0.8);
  transform: translateY(-1px);
}

.payment-method-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.payment-method-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 24px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(37, 244, 238, 0.13);
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 850;
}

.payment-method-card strong {
  font-size: 1rem;
  line-height: 1.15;
}

.payment-method-card small {
  color: var(--text-light);
  font-size: 0.82rem;
}

.payment-method-card.active::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--primary-pink);
  box-shadow: 0 0 0 4px rgba(254, 44, 85, 0.12);
}

.total-box {
  margin: 18px 0 24px;
  padding: 20px;
  border: 1px solid rgba(138, 63, 252, 0.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.1), rgba(254, 44, 85, 0.1));
}

.payment-panel {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: var(--radius-card);
  background: #fff;
  box-shadow: 0 30px 70px -30px rgba(18, 18, 18, 0.22);
}

.payment-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.payment-panel-head h2 {
  font-size: 1.85rem;
  line-height: 1.2;
}

.payment-status {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(254, 44, 85, 0.1);
  color: var(--primary-pink);
  font-weight: 800;
  white-space: nowrap;
}

.payment-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.payment-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 20px;
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: 28px;
  background: linear-gradient(145deg, #f8fafc, #fff);
}

.qr-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  min-height: 220px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  color: var(--text-dark);
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
  word-break: break-all;
}

.payment-detail {
  display: grid;
  gap: 14px;
}

.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(100, 116, 139, 0.1);
}

.summary-label {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 650;
}

.summary-value {
  color: var(--text-dark);
  font-weight: 800;
  text-align: right;
}

.summary-value.total {
  color: var(--primary-pink);
  font-size: 1.45rem;
}

.address-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 10px;
  border: 2px solid rgba(100, 116, 139, 0.14);
  border-radius: 20px;
  background: #fff;
}

.address-input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  font-weight: 700;
  outline: 0;
}

.copy-address {
  min-width: 74px;
  border: 0;
  border-radius: 999px;
  background: #121212;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.copy-address:hover {
  background: var(--primary-pink);
}

.payment-hint {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(2rem, 5vw, 2.85rem);
  }
}

@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }

  .hamburger {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 20px;
    border-radius: 0 0 30px 30px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-150%);
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .main-nav.active,
  .admin-nav {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  .admin-nav {
    position: static;
    width: auto;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .admin-nav .nav-list {
    flex-direction: row;
  }

  .product-table thead {
    display: none;
  }

  .product-table,
  .product-table tbody,
  .product-table td,
  .product-table tr {
    display: block;
    width: 100%;
  }

  .product-table tr {
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 28px;
  }

  .product-table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f2f5;
  }

  .product-table td:last-child {
    border-bottom: none;
  }

  .product-table td::before {
    content: attr(data-label);
    width: 40%;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 650;
  }

  .product-table td:first-child::before {
    width: 0;
    content: "";
  }

  .product-table td:first-child > small {
    display: none;
  }

  .btn-buy {
    padding: 8px 24px;
  }

  .admin-card {
    padding: 30px 22px;
  }

  .admin-actions {
    flex-direction: column;
  }

  .buy-shell {
    grid-template-columns: 1fr;
  }

  .buy-summary,
  .checkout-card {
    padding: 28px 22px;
  }

  .payment-panel {
    padding: 26px 20px;
  }

  .payment-panel-head,
  .payment-layout {
    grid-template-columns: 1fr;
  }

  .payment-layout {
    gap: 18px;
  }

  .payment-panel-head {
    display: grid;
  }

  .payment-qr {
    min-height: 240px;
  }

  .payment-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo a {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    font-size: 2.18rem;
  }

  .filter-tabs {
    gap: 8px;
  }

  .filter-btn {
    padding: 9px 16px;
  }

  .feature-card {
    border-radius: 24px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1.05rem;
  }
}
