@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;800&display=swap');

:root {
  font-family: 'Onest', Arial, sans-serif;
  line-height: 1.45;
  font-weight: 400;
  color: #231844;
  background: #efedf4;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  --purple: #2a0a6c;
  --purple-2: #39128a;
  --orange: #f59a45;
  --orange-2: #ffb562;
  --yellow: #f7b500;
  --page: #efedf4;
  --surface: #ffffff;
  --surface-2: #f4f2f8;
  --surface-3: #ebe8f3;
  --text: #231844;
  --muted: #6d6483;
  --border: #dfd8eb;
  --success: #2b9b65;
  --shadow: 0 18px 36px rgba(35, 24, 68, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

a {
  color: inherit;
  text-decoration: none;
}

#root {
  min-height: 100vh;
}

.site-shell {
  min-height: 100vh;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.top-bar {
  background: var(--purple);
  color: #fff;
}

.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
}

.top-bar-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-link {
  color: rgba(255, 255, 255, 0.82);
  padding: 8px 0;
  transition: color 0.2s ease;
}

.top-link:hover,
.top-link.is-active {
  color: #fff;
}

.top-link.is-active {
  border-bottom: 3px solid var(--orange);
}

.shopaygo-mark {
  color: #ff9a00;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 242, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(61, 26, 136, 0.08);
}

.main-header-inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, #ffcf8e 0, #ffcf8e 8px, transparent 9px),
    linear-gradient(135deg, #331380 0%, #130439 100%);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
  text-transform: lowercase;
}

.brand-text {
  font-size: 3rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #2c136d;
}

.search-panel {
  display: grid;
  grid-template-columns: 1fr 210px 120px;
  background: var(--orange);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(42, 10, 108, 0.12);
}

.search-panel input,
.search-panel select {
  border: 0;
  outline: none;
  background: rgba(255, 255, 255, 0.96);
  min-height: 54px;
  padding: 0 18px;
}

.search-panel select {
  border-left: 1px solid rgba(42, 10, 108, 0.08);
}

.search-button {
  min-height: 54px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
}

.header-actions {
  display: flex;
  gap: 10px;
}

.action-card,
.icon-card {
  min-height: 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 10px 16px;
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #fff;
  border-radius: 16px;
  border: 1px solid rgba(42, 10, 108, 0.06);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.action-card:hover,
.icon-card:hover,
.product-card:hover,
.mini-promo:hover,
.promo-tab:hover,
.social-pill:hover,
.app-badge:hover,
.saved-item:hover {
  transform: translateY(-2px);
  filter: saturate(1.05);
}

.action-label {
  font-size: 0.82rem;
}

.icon-card {
  justify-content: center;
  align-items: center;
  min-width: 64px;
  font-size: 1rem;
}

.cart-card {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  min-width: 100px;
}

.main-content {
  padding: 24px 0 80px;
}

.home-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.category-rail {
  padding: 22px 18px;
  position: sticky;
  top: 110px;
}

.rail-title {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1e1438;
}

.category-list {
  display: grid;
  gap: 10px;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 8px;
  border-radius: 14px;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-link:hover {
  background: var(--surface-2);
  color: var(--purple);
}

.category-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffb068, #f08f3e);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.home-content {
  display: grid;
  gap: 20px;
}

.promo-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.promo-tab {
  min-height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--border);
  color: #24194a;
  font-weight: 700;
}

.promo-tab.is-active {
  background: linear-gradient(180deg, #ffcb3d, var(--yellow));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  gap: 18px;
}

.hero-card {
  min-height: 470px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 5, 61, 0.08), rgba(255, 255, 255, 0.03));
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 42px 36px;
  width: min(420px, 100%);
  color: #fff;
}

.eyebrow,
.section-kicker,
.promo-label {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f7cd6f;
  font-weight: 700;
}

.hero-copy h1,
.page-header h1,
.auth-card h1,
.product-summary h1,
.empty-card h1,
.profile-card h1,
.checkout-form h1 {
  margin: 12px 0 14px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-copy p:not(.eyebrow) {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 32ch;
}

.primary-pill,
.primary-button,
.secondary-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.primary-pill,
.primary-button {
  background: linear-gradient(180deg, #3d1790, var(--purple));
  color: #fff;
}

.primary-pill:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button.ghost {
  background: linear-gradient(180deg, #ffb35c, var(--orange));
}

.secondary-button {
  background: #fff;
  color: var(--purple);
  border: 1px solid rgba(42, 10, 108, 0.16);
}

.hero-dots {
  position: absolute;
  left: 36px;
  bottom: 26px;
  display: flex;
  gap: 10px;
  z-index: 1;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot.is-active {
  width: 24px;
  background: #fff;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.promo-card {
  min-height: 158px;
  padding: 26px;
}

.promo-card-orange {
  background: linear-gradient(180deg, #f8a35b, #f2923e);
  color: #fff;
}

.promo-card h2 {
  margin: 12px 0 0;
  font-size: 1.7rem;
  line-height: 1.05;
}

.text-link {
  color: inherit;
  font-weight: 700;
}

.text-link-inline {
  align-self: flex-start;
  color: var(--purple);
}

.protection-card {
  padding: 22px;
  display: grid;
  gap: 18px;
}

.protection-row {
  display: flex;
  gap: 14px;
  align-items: start;
}

.protection-row h3,
.footer-columns h3,
.summary-card h2,
.account-panel h2,
.product-section h2,
.auth-card h2 {
  margin: 0 0 4px;
  font-size: 1.25rem;
}

.protection-row p,
.page-description,
.microcopy,
.seller-line,
.auth-lead p,
.footer-news p,
.activity-item span,
.summary-line-item span {
  color: var(--muted);
}

.protection-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(59, 23, 145, 0.1);
  color: var(--purple);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.mini-promos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mini-promo {
  min-height: 104px;
  padding: 20px 22px;
  display: grid;
  gap: 8px;
  text-align: left;
}

.mini-promo span {
  color: var(--muted);
}

.mini-promo strong {
  font-size: 1.16rem;
}

.product-section {
  margin-top: 34px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-kicker {
  color: var(--orange);
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.wishlist-button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #db8b49;
  box-shadow: 0 10px 24px rgba(25, 17, 46, 0.08);
  z-index: 1;
}

.product-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f5fb, #f0ecf7);
}

.product-visual img,
.cart-image,
.detail-image,
.saved-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-copy {
  display: grid;
  gap: 10px;
}

.product-badge {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(245, 154, 69, 0.14);
  color: #c8691b;
  font-size: 0.82rem;
  font-weight: 700;
}

.product-link,
.seller-link {
  text-align: left;
}

.product-link {
  font-size: 1.04rem;
  font-weight: 700;
  line-height: 1.25;
}

.product-link:hover,
.seller-link:hover,
.footer-link:hover,
.text-link:hover {
  color: var(--purple);
}

.seller-link {
  color: var(--purple);
  font-weight: 600;
}

.price-line,
.summary-row,
.summary-line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-line strong,
.cart-price strong,
.summary-total strong,
.price-stack strong {
  font-size: 1.18rem;
}

.price-line span,
.price-stack span {
  color: #9f96b5;
  text-decoration: line-through;
}

.auction-info {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.92rem;
}

.page-wrap,
.auth-page {
  display: grid;
  gap: 22px;
}

.page-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
}

.page-description {
  max-width: 58ch;
}

.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter-pill,
.social-pill,
.app-badge {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.filter-pill.is-active {
  background: linear-gradient(180deg, #3d1790, var(--purple));
  color: #fff;
}

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

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 28px;
  padding: 28px;
}

.detail-image {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
}

.gallery-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.gallery-thumb {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f3f0f9, #dfd8eb);
  border: 1px solid transparent;
}

.gallery-thumb.is-active {
  border-color: rgba(42, 10, 108, 0.24);
}

.product-summary {
  display: grid;
  align-content: start;
  gap: 16px;
}

.price-stack {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.detail-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-card {
  padding: 34px;
}

.auth-split,
.checkout-shell,
.cart-layout,
.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 22px;
}

.auth-lead,
.checkout-form,
.profile-card,
.account-panel,
.summary-card {
  padding: 28px;
}

.auth-points {
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.auth-form,
.checkout-form {
  display: grid;
  gap: 16px;
  align-content: start;
}

.auth-form label,
.checkout-form label {
  display: grid;
  gap: 8px;
  color: #392e5a;
  font-weight: 600;
}

.auth-form input,
.checkout-form input,
.checkout-form select,
.newsletter-form input {
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  outline: none;
}

.auth-form input:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.newsletter-form input:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: rgba(42, 10, 108, 0.32);
  box-shadow: 0 0 0 4px rgba(58, 20, 140, 0.08);
}

.form-error {
  margin: 0;
  color: #c23a43;
  font-weight: 600;
}

.cart-layout {
  align-items: start;
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 130px 120px;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.cart-image {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}

.cart-copy {
  display: grid;
  gap: 6px;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  background: var(--surface-2);
  border-radius: 999px;
}

.quantity-stepper button {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(35, 24, 68, 0.08);
}

.cart-price {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.summary-card {
  display: grid;
  gap: 14px;
}

.summary-total {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-span {
  grid-column: 1 / -1;
}

.profile-card {
  min-height: 100%;
}

.activity-item {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.activity-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.saved-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.saved-item {
  display: grid;
  gap: 10px;
  text-align: left;
}

.saved-item img {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
}

.site-footer {
  background: linear-gradient(180deg, #2d0c72, #1d073f);
  color: rgba(255, 255, 255, 0.88);
  padding: 46px 0 30px;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-top {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-news h2 {
  margin: 0 0 8px;
  color: #fff;
}

.social-row,
.app-links,
.legal-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-pill,
.app-badge {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 30px 0;
}

.footer-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-link {
  color: inherit;
  padding: 0;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #28485d;
  color: #fff;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 30;
  box-shadow: 0 18px 40px rgba(15, 27, 34, 0.36);
}

.cookie-banner p,
.cookie-banner strong {
  margin: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(23, 12, 48, 0.7);
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 40;
}

.newsletter-modal {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
  animation: modal-in 0.24s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--surface-2);
  font-size: 1.2rem;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.toast {
  position: fixed;
  right: 18px;
  top: 96px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #1d8b5c;
  color: #fff;
  font-weight: 700;
  z-index: 50;
  box-shadow: 0 16px 30px rgba(19, 109, 72, 0.22);
}

.empty-card {
  padding: 38px;
  text-align: center;
}

.skeleton-card {
  display: grid;
  gap: 14px;
}

.skeleton {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #f2eff7 25%, #ece7f4 40%, #f2eff7 60%);
  background-size: 200% 100%;
  animation: pulse 1.2s linear infinite;
  border-radius: 14px;
}

.skeleton-image {
  aspect-ratio: 1 / 1;
}

.skeleton-line {
  height: 16px;
}

.skeleton-line.short {
  width: 42%;
}

.skeleton-line.medium {
  width: 78%;
}

@keyframes pulse {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 1180px) {
  .main-header-inner {
    grid-template-columns: 1fr;
  }

  .brand {
    justify-self: center;
  }

  .header-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .category-rail {
    position: static;
  }

  .category-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-split,
  .checkout-shell,
  .cart-layout,
  .account-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .top-bar-inner,
  .footer-top,
  .footer-bottom,
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-bar-nav {
    gap: 14px;
  }

  .brand-text {
    font-size: 2.35rem;
  }

  .search-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .mini-promos,
  .footer-columns,
  .saved-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-price {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 1280px);
  }

  .promo-tabs,
  .product-grid,
  .category-grid,
  .category-list {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-card {
    min-height: 380px;
  }

  .auth-card,
  .page-header,
  .checkout-form,
  .summary-card,
  .profile-card,
  .account-panel,
  .product-detail,
  .cookie-banner,
  .newsletter-modal {
    padding: 20px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.site {
  min-height: 100vh;
}

.site-main {
  padding: 24px 0 80px;
}

.page-shell {
  padding: 8px 0 32px;
}

.content-area {
  padding: 26px;
}

.topbar-menu,
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar-menu a,
.footer-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.header-search .search-field {
  width: 100%;
}

.entry-title {
  margin-top: 0;
}

.entry-content a {
  color: var(--purple);
}

.post-card + .post-card {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.woocommerce .products {
  margin-top: 20px !important;
}

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

.woocommerce div.product div.images img {
  border-radius: 16px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 999px;
  min-height: 46px;
  background: linear-gradient(180deg, #3d1790, var(--purple));
  color: #fff;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: linear-gradient(180deg, #ffb35c, var(--orange));
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  border-radius: 12px;
  border: 1px solid var(--border);
  min-height: 44px;
  padding: 10px 12px;
}

.woocommerce table.shop_table {
  border-radius: 14px;
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  margin-bottom: 18px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.bobshop-vendor-notice {
  margin: 0;
  font-size: 0.92rem;
  text-align: center;
  background: #f9f4e6;
  color: #6e4b17;
  border-bottom: 1px solid #e6d8b6;
  padding: 8px 12px;
}

.wcfm-collapse {
  border-radius: 12px;
}

@media (max-width: 860px) {
  .topbar-menu,
  .footer-menu {
    flex-direction: column;
    gap: 8px;
  }

  .content-area {
    padding: 20px;
  }
}
