/* Velora Street fashion ecommerce template — dynamic theme
   Base rules below are carried over unchanged from the original static demo
   (resources/views/frontend/seller_templates/velora-street/assets/css/style.css).
   Everything under "DYNAMIC THEME EXTENSIONS" is new, added to support the
   backend-driven header/cart/wishlist/filters/product-detail/checkout UI. */
:root {
  --ink: #141414;
  --muted: #6f6f6f;
  --line: #e8e8e8;
  --paper: #fafafa;
  --brand: var(--primary, #d71953);
  --brand-dark: var(--hov-primary, #9e123c);
  --cream: #fff5ee;
  --sky: #e8f4ff;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  background: var(--bg-color);
  font-family: "Outfit", sans-serif;
}

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

.promo-bar {
  background: var(--secondary-base);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-word {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* Fluid logo: scales smoothly between the mobile floor (34px, matching the
   old <=575.98px override) and the desktop ceiling (42px, the old base size)
   across the 320-1920px viewport range, instead of jumping at one breakpoint. */
.brand-word-logo{ height: clamp(34px, calc(32px + 0.5vw), 42px); width: auto; max-width: 220px; object-fit: contain; }

.brand-dot {
  color: var(--brand);
}

.navbar {
  background: var(--navbar-bg);
  border-bottom: 1px solid var(--line);
  padding-top: .85rem;
  padding-bottom: .85rem;
}

.nav-link {
  color: var(--seller-menu-color, #222);
  font-size: 0.94rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.btn-brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.btn-brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}

.btn-outline-brand {
  border-color: var(--secondary-base);
  color: var(--secondary-base);
  font-weight: 800;
  text-transform: uppercase;
}

.btn-outline-brand:hover {
  background: var(--secondary-base);
  color: #fff;
}

.hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18)),
    var(--ink) center/cover;
  color: #fff;
  min-height: 690px;
  padding: 7rem 0;
}

.hero.has-image {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18)),
    var(--hero-img);
  background-position: center;
  background-size: cover;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7.5rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-pad {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.soft-bg {
  background: var(--section-bg);
}

.feature-tile,
.product-card,
.info-card,
.checkout-card,
.account-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card-bg);
}

.feature-tile {
  display: block;
  overflow: hidden;
  position: relative;
}

.feature-tile img,
.product-card img,
.look-card img,
.detail-img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.feature-tile .tile-copy {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 1.25rem;
  position: absolute;
  right: 0;
}

.product-card {
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-card .card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .btn-add-cart {
  margin-top: auto;
}

.price {
  color: var(--ink);
  font-weight: 900;
}

.sale-price {
  color: var(--brand);
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
}

.badge-hot {
  background: var(--secondary-base);
  color: #fff;
}

.badge-sale {
  background: var(--brand);
  color: #fff;
}

/* .filter-panel is a Bootstrap .offcanvas.offcanvas-lg: native CSS already
   handles position (static inline sidebar >=992px, fixed slide-in drawer
   below it), so only cosmetic rules belong here. */
.filter-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}
@media (min-width: 992px) {
  .filter-panel { position: sticky; top: 92px; }
  /* Bootstrap's own .offcanvas-lg breakpoint CSS turns .offcanvas-body into
     a horizontal flex row (built for navbar-expand style horizontal nav) —
     wrong for a vertical filter list, which is why every filter section was
     squashed into one overflowing row at >=992px instead of stacking like a
     normal sidebar. No !important needed: this selector already out-specifies
     Bootstrap's non-!important display/padding rule. */
  .filter-panel .offcanvas-body { display: block; padding: 0; }
}
#filterOffcanvas.offcanvas-lg { --bs-offcanvas-width: min(340px, 88vw); }
@media (min-width: 992px) {
  #filterOffcanvas.offcanvas-lg { --bs-offcanvas-width: auto; border-radius: 8px; }
}
/* Cap attribute/color value lists so a long list (e.g. 100 colors) scrolls
   internally instead of growing the sidebar and breaking the page layout. */
.filter-values-list {
  max-height: 220px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.form-control,
.form-select {
  border-color: var(--line);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
}

.swatch {
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-block;
  height: 26px;
  width: 26px;
  cursor: pointer;
}

.size-btn {
  min-width: 46px;
}

.footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.72);
}

.footer h3,
.footer .brand-word {
  color: #fff;
}

.footer a:hover {
  color: #fff;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding: 5rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 3.5rem 0;
  }

  /* Cart table -> stacked cards. .cart-table-wrap normally scrolls
     sideways (overflow-x:auto, unconditional) on any width; on phones we
     avoid that entirely — each row becomes its own card, values are
     labeled via data-label. */
  .cart-table-wrap { overflow-x: visible; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table thead { display: none; }
  .cart-table tbody tr {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: .85rem;
  }
  .cart-table tbody tr:last-child { margin-bottom: 0; }
  .cart-table td { border-bottom: 0; padding: .35rem 0; }
  .cart-table td:first-child { padding-top: 0; padding-right: 2.5rem; }
  .cart-product-img { width: 56px; height: 70px; }
  .cart-table td[data-label] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
  }
  .cart-table td[data-label]::before {
    content: attr(data-label);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
  }
  .cart-table td:last-child {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0;
  }
  .qty-selector .qty-btn { width: 32px; height: 34px; }
  .qty-selector .qty-input { width: 40px; height: 34px; }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 3.25rem 0;
  }

  .hero {
    padding: 2.5rem 0;
  }

  .header-icons .icon-btn { width: 34px; height: 34px; font-size: 1rem; }
  .header-icons { gap: .1rem; }
}

/* ============================================================
   DYNAMIC THEME EXTENSIONS
============================================================ */

/* ---- Header icons (search / account / wishlist / cart) ---- */
.header-search {
  display: flex;
  align-items: center;
  gap: .5rem;
  max-width: 420px;
}
.header-search input[type="search"] {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .5rem 1rem;
  flex-grow: 1;
  font-size: .88rem;
}
.header-search .search-btn {
  background: var(--secondary-base);
  border: none;
  border-radius: 999px;
  color: #fff;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.header-icons {
  align-items: center;
  display: flex;
  gap: .5rem;
}
/* Mobile hamburger (Bootstrap default .navbar-toggler-icon is a static
   background-image data-URI, so it can't follow `color`/CSS vars directly —
   it's re-drawn as a mask instead, using the exact same Bootstrap icon
   geometry, so shape/size stay identical and only its color becomes
   database-controlled. */
.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  -webkit-mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  mask-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: var(--seller-menu-color, #000);
}
.navbar-toggler:hover .navbar-toggler-icon {
  background-color: var(--seller-menu-hover-color, #000);
}

.icon-btn {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--seller-menu-color, var(--ink));
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: relative;
  width: 40px;
}
.icon-btn:hover {
  background: var(--secondary-base);
  border-color: var(--secondary-base);
  color: var(--seller-menu-hover-color, #fff);
}
.badge-ic {
  background: var(--brand);
  border-radius: 999px;
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  line-height: 1;
  min-width: 17px;
  padding: 3px 4px;
  position: absolute;
  right: -4px;
  text-align: center;
  top: -4px;
}

/* ---- Category dropdown (Bootstrap default + brand accents) ---- */
.navbar .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 8px;
}
.navbar .dropdown-item {
  color: var(--seller-menu-color, #222);
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: var(--soft-primary);
  color: var(--seller-menu-hover-color, var(--brand));
}

/* ---- Product card actions (wishlist / quick view) ---- */
.product-img-wrap {
  position: relative;
}
.product-badge {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  left: .6rem;
  position: absolute;
  top: .6rem;
  z-index: 2;
}
.product-badge span {
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 800;
  padding: .25rem .5rem;
  text-transform: uppercase;
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  position: absolute;
  right: .6rem;
  top: .6rem;
  z-index: 2;
}
.product-action-btn {
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}
.product-action-btn:hover,
.product-action-btn.active {
  background: var(--brand);
  color: #fff;
}
.btn-add-cart {
  background: var(--secondary-base);
  border: 1px solid var(--secondary-base);
  border-radius: 6px;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  margin-top: .6rem;
  padding: .55rem;
  text-transform: uppercase;
  width: 100%;
}
.btn-add-cart:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-add-cart:disabled {
  background: var(--muted);
  border-color: var(--muted);
  cursor: not-allowed;
}
.product-name {
  color: var(--ink);
  display: block;
  font-size: .92rem;
  font-weight: 700;
}
.product-brand {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-rating {
  color: #f5a623;
  font-size: .82rem;
  margin: .2rem 0;
}
.product-rating .rating-count {
  color: var(--muted);
}
.price-off {
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
}

/* ---- Category / feature tile counts ---- */
.tile-copy .cat-count {
  color: rgba(255, 255, 255, .75);
  display: block;
  font-size: .78rem;
}

/* ---- Sidebar filters (product listing) ---- */
/* Visibility is handled by the .d-lg-none utility class in the blade markup
   (hidden >=992px where the sidebar is already inline, shown below it to
   open the #filterOffcanvas drawer) — only cosmetic rules belong here. */
.btn-filter-toggle {
  background: var(--secondary-base);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-inline: auto;
  padding: .5rem;
  text-transform: uppercase;
  width: 50%;
  max-width: 180px;
  display: block;
  text-align: center;
}
.filter-section {
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
}
.filter-section h6 {
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}
.filter-check label {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: .88rem;
  gap: .5rem;
  padding: .25rem 0;
}
.swatch.selected,
.size-btn.active {
  border-color: var(--secondary-base);
  box-shadow: 0 0 0 2px var(--secondary-base);
}
.price-range-wrap input[type="range"] {
  accent-color: var(--brand);
  width: 100%;
}
.price-inputs {
  align-items: center;
  display: flex;
  gap: .5rem;
  margin-top: .5rem;
}
.price-inputs input {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .4rem .5rem;
  width: 100%;
}
.btn-clear-filters {
  background: none;
  border: none;
  color: var(--muted);
  font-size: .82rem;
  padding: 0;
  text-decoration: underline;
}
/* ---- Products controls bar / pagination ---- */
.products-controls {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.pagination .page-link {
  border-color: var(--line);
  color: var(--ink);
}
.pagination .page-item.active .page-link {
  background: var(--secondary-base);
  border-color: var(--secondary-base);
}
.breadcrumb {
  font-size: .82rem;
  margin-bottom: 1rem;
}
.breadcrumb-item a {
  color: var(--muted);
}
.breadcrumb-item.active {
  color: var(--secondary-base);
  font-weight: 700;
}
.page-hero-sm {
  background: var(--section-bg);
  padding: 2.5rem 0;
}
.page-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* ---- Product detail gallery ---- */
.gallery-main {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.gallery-main img {
  aspect-ratio: 4 / 5;
  cursor: zoom-in;
  object-fit: cover;
  width: 100%;
}
.gallery-badge {
  left: .75rem;
  position: absolute;
  top: .75rem;
  z-index: 2;
}
.gallery-thumbs {
  display: flex;
  gap: .6rem;
  margin-top: .75rem;
}
.thumb-item {
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  height: 84px;
  overflow: hidden;
  width: 68px;
}
.thumb-item.active {
  border-color: var(--brand);
}
.thumb-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.option-group {
  margin-bottom: 1.25rem;
}
.option-label {
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.option-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.option-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: .85rem;
  min-width: 42px;
  padding: .45rem .75rem;
}
.option-chip.selected {
  border-color: var(--secondary-base);
  box-shadow: 0 0 0 1px var(--secondary-base);
}
.qty-selector {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: inline-flex;
  overflow: hidden;
}
.qty-selector .qty-btn {
  background: var(--paper);
  border: none;
  height: 42px;
  width: 40px;
}
.qty-selector .qty-input {
  border: none;
  height: 42px;
  text-align: center;
  width: 52px;
}
.in-stock-badge {
  background: var(--sky);
  border-radius: 4px;
  color: #0a5c36;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .55rem;
  text-transform: uppercase;
}
.detail-tabs {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 2rem;
}
.detail-tabs-nav {
  display: flex;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.detail-tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-weight: 800;
  padding: .75rem 0;
  text-transform: uppercase;
}
.detail-tab-btn.active {
  border-bottom-color: var(--brand);
  color: var(--secondary-base);
}
.detail-tab-panel {
  display: none;
}
.detail-tab-panel.active {
  display: block;
}
.review-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.reviewer-avatar {
  align-items: center;
  background: var(--secondary-base);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: .75rem;
  font-weight: 800;
  height: 32px;
  justify-content: center;
  width: 32px;
}

/* ---- Cart / order summary ---- */
.cart-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}
.cart-table {
  margin-bottom: 0;
  width: 100%;
}
.cart-table th,
.cart-table td {
  border-bottom: 1px solid var(--line);
  padding: 1rem;
  vertical-align: middle;
}
.cart-table tbody tr:last-child td {
  border-bottom: none;
}
.cart-product-wrap {
  align-items: center;
  display: flex;
  gap: 1rem;
}
.cart-product-img {
  border-radius: 6px;
  flex-shrink: 0;
  height: 80px;
  overflow: hidden;
  width: 64px;
}
.cart-product-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.cart-product-name {
  font-weight: 700;
}
.cart-product-meta {
  color: var(--muted);
  font-size: .82rem;
}
.cart-remove-btn {
  background: none;
  border: none;
  color: var(--muted);
}
.cart-remove-btn:hover {
  color: var(--brand);
}
.coupon-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}
.coupon-input-group {
  display: flex;
  gap: .5rem;
}
.coupon-input-group input {
  border: 1px solid var(--line);
  border-radius: 6px;
  flex-grow: 1;
  padding: .6rem .8rem;
}
.coupon-input-group button {
  background: var(--secondary-base);
  border: none;
  border-radius: 6px;
  color: #fff;
  font-weight: 700;
  padding: 0 1.1rem;
}
.order-summary-panel {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.order-summary-header {
  background: var(--secondary-base);
  color: #fff;
  font-weight: 800;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
}
.order-summary-body {
  padding: 1.25rem;
}
.summary-line {
  display: flex;
  font-size: .9rem;
  justify-content: space-between;
  margin-bottom: .6rem;
}
.summary-line .label {
  color: var(--muted);
}
.summary-total {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 1.15rem;
  font-weight: 900;
  justify-content: space-between;
  margin: .75rem 0 1rem;
  padding-top: .75rem;
}
.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.icon-list li {
  align-items: flex-start;
  color: var(--muted);
  display: flex;
  font-size: .8rem;
  gap: .5rem;
  margin-top: .5rem;
}

/* ---- Checkout ---- */
.checkout-step-indicator {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
.checkout-step-indicator .step {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: .82rem;
  font-weight: 700;
  gap: .5rem;
}
.checkout-step-indicator .step-num {
  align-items: center;
  background: var(--line);
  border-radius: 999px;
  display: inline-flex;
  height: 26px;
  justify-content: center;
  width: 26px;
}
.checkout-step-indicator .step.active,
.checkout-step-indicator .step.done {
  color: var(--secondary-base);
}
.checkout-step-indicator .step.active .step-num,
.checkout-step-indicator .step.done .step-num {
  background: var(--brand);
  color: #fff;
}
.checkout-form-panel {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  padding: 1.5rem;
}
.form-label-ic {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.form-control-ic {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .65rem .85rem;
  width: 100%;
}
.shipping-option {
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  padding: .85rem;
}
.payment-option {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  gap: .75rem;
  margin-bottom: .75rem;
  padding: 1rem;
}
.payment-option.selected {
  border-color: var(--secondary-base);
  box-shadow: 0 0 0 1px var(--secondary-base);
}
.method-desc {
  color: var(--muted);
  display: block;
  font-size: .78rem;
}
.method-icons {
  margin-left: auto;
}
.payment-icon-small {
  background: var(--paper);
  border-radius: 4px;
  font-size: .68rem;
  font-weight: 700;
  margin-left: .3rem;
  padding: .2rem .4rem;
}
.payment-icons .payment-icon {
  background: rgba(255, 255, 255, .1);
  border-radius: 4px;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  margin-right: .3rem;
  padding: .2rem .45rem;
}

/* ---- Footer links ---- */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: .5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
}
.footer-social {
  display: flex;
  gap: .5rem;
  margin-top: 1rem;
}
.social-btn {
  align-items: center;
  background: rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.social-btn:hover {
  background: var(--brand);
}

/* ---- Toast ---- */
.toast-vs {
  background: var(--secondary-base);
  border-radius: 8px;
  bottom: 24px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  opacity: 0;
  padding: .85rem 1.25rem;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
  z-index: 3000;
}
.toast-vs.show {
  opacity: 1;
  transform: translateY(0);
}
.toast-vs.success {
  background: #0a5c36;
}
.toast-vs.error {
  background: var(--brand);
}

/* ---- Empty states ---- */
.surface-panel {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.surface-panel-pad {
  padding: 3.5rem 1.5rem;
}
.text-gold {
  color: var(--brand) !important;
}
