/*===============
  Imports 
================*/

@import url("https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css?family=Roboto:700");

/*===============
  Design Tokens
================*/
:root {

  /* Typography Tokens */
  --font-body: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-logo: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Weight scale */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 800;

  /* Colour Tokens */
  --fn-black: #111111;
  --fn-black-soft: #1a1a1a;

  --fn-white: #ffffff;
  --fn-cream: #faf9f7;

  --fn-grey-100: #f4f4f4;
  --fn-grey-200: #e9e9e9;
  --fn-grey-400: #9a9a9a;

  --fn-accent: #111111;

}

/* Layout Tokens */

/* Theme/Profile Accent System */

:root {
  --profile-accent: #000000;
  --on-profile-accent: #ffffff;
}

.has-profile-accent {
  background: var(--profile-accent);
  color: var(--on-profile-accent);
}

.has-profile-accent:link,
.has-profile-accent:visited {
  color: var(--on-profile-accent);
  text-decoration: none;
}

.profile-page .profile-accent-btn,
.brand-accent-btn {
  background: var(--profile-accent);
  border-color: var(--profile-accent);
  color: #fff;
  border: none;
}

.profile-page .profile-accent-btn:hover,
.brand-accent-btn:hover {
  filter: brightness(0.95);
}

.btn-primary,
.it-buy-btn,
.it-save-btn,
.it-post-btn,
.tt-reply-post,
.item-primary-button {
  background: var(--profile-accent);
  color: var(--on-profile-accent);
  border-color: transparent;
}

.btn-primary:link,
.btn-primary:visited,
.it-buy-btn:link,
.it-buy-btn:visited,
.item-primary-button:link,
.item-primary-button:visited {
  color: var(--on-profile-accent);
  text-decoration: none;
}

.btn-primary:hover,
.it-buy-btn:hover,
.it-save-btn:hover,
.it-post-btn:hover,
.item-primary-button:hover {
  filter: brightness(0.98) saturate(1.05);
}

.btn-primary:active,
.it-buy-btn:active,
.it-save-btn:active,
.it-post-btn:active,
.item-primary-button:active {
  filter: brightness(0.95) saturate(1.05);
}


/*===============
  Base/Reset
================*/

html,
body {
  margin: 0;
  padding: 0;
  background: var(--fn-white);
  color: #000000;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  letter-spacing: 0;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit !important;
  text-decoration: none !important;
}

/*===============
  Typography System
================*/

html,
body {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
.home-title,
.dashboard-title,
.collection-title,
.collection-hero-title {
  font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.muted {
  color: #777;
  font-size: 13px;
  font-weight: 400;
}

.price {
  font-weight: 500;
  margin-top: 6px;
}

.home-title {
  font-weight: 500;
}

.home-subtitle {
  font-weight: 400;
}

.fn-search-bar input {
  font-weight: 400;
}

/*===============
  Layout System
================*/

/* Container */

.container {
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Spacing Utilities */

/* Grid Utilities */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

/* Flex Utilities */

/* Section Structure */

.fn-section {
  margin-top: 28px;
}

.fn-section-header {
  margin-bottom: 16px;
}

.fn-section-title {
  margin: 0;
  font-size: 18px;
}

.fn-section-subtitle {
  margin: 4px 0 0;
  font-size: 13px;
  color: #666;
}


/*===============
  Global Components
 ================*/

/* Buttons */

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: var(--fw-medium);
}

.btn.ghost {
  background: #fff;
  border: 1px solid #111;
  color: #111;
  margin-left: 8px;
}

.btn-pill-primary {
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  background: #111;
  color: #fff;
}

.fd-search-bar button {
  background: var(--profile-accent);
  color: white;

  border: none;
  border-radius: 999px;

  padding: 8px 16px;
  font-weight: 600;

  cursor: pointer;

  transition: transform .15s ease,
    filter .15s ease;
}

.fd-search-bar button:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.fn-load-more {
  text-align: center;
  margin: 32px 0 48px;
}

.fn-load-more .btn-pill-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.follow-button {
  margin-left: 16px;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: var(--profile-accent, #f7c4d9);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.follow-button:hover {
  filter: brightness(1.05);
}

.item-icon-button {
  border-radius: 999px;
  border: 1px solid #e1e1e6;
  background: #fff;
  padding: 4px 10px;
  font-size: 16px;
  cursor: pointer;
}

.item-icon-button:hover {
  background: #f8f5f9;
}

.item-pill-button {
  border-radius: 999px;
  border: 1px solid #e1e1e6;
  background: #fff;
  padding: 6px 16px;
  font-size: 13px;
  cursor: pointer;
}

.item-pill-button:hover {
  background: #f8f5f9;
}

.item-primary-button {
  border-radius: 999px;
  border: none;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.item-primary-button:hover {
  filter: brightness(0.96);
}

.accent-btn,
.brand-accent-btn {
  background: var(--profile-accent);
  border-color: var(--profile-accent);
  color: var(--accent-text, #fff);
}

.accent-btn:hover,
.brand-accent-btn:hover {
  filter: brightness(0.95);
}

.accent-btn:active,
.brand-accent-btn:active {
  transform: translateY(1px);
}

.btn-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--profile-accent);
  border-radius: 50%;

  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);

  animation: spin 0.7s linear infinite;
}

/* Inputs & Forms */

.fd-search-bar {
  margin: 22px 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.fd-search-bar input {
  flex: 1;
  padding: 18px 22px;
  border-radius: 999px;
  border: 1px solid #e5d3dd;
  background: #ffffff;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: 0.2s ease;
}

.fd-search-bar input:focus {
  outline: none;
  border-color: #e29bb5;
  box-shadow:
    0 0 0 2px rgba(226, 155, 181, 0.25),
    0 4px 14px rgba(0, 0, 0, 0.06);
}

.fd-search-bar button {
  background: var(--profile-accent);
  color: white;

  border: none;
  border-radius: 999px;

  padding: 8px 16px;
  font-weight: 600;

  cursor: pointer;

  transition: transform .15s ease,
    filter .15s ease,
    box-shadow .15s ease;
}

.fd-search-bar button:hover {
  transform: translateY(-1px);
  filter: brightness(.95);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.fd-search-bar input:focus {
  outline: none;
  border-color: var(--profile-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--profile-accent) 25%, transparent);
}

.search-page .fd-search-bar button {
  padding: 7px 14px;
  font-size: 14px;
}

/* Cards */

.card {
  border: 1px solid #eee3ef;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.card>img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.card-body {
  padding-top: 6px;
}

.brand-logo {
  max-width: 220px;
  margin-bottom: 12px;
}

.card {
  border: 1px solid #eee3ef;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  overflow: hidden;

  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* Badges & Chips */

.readonly-chip {
  cursor: default;
}

/* Dropdowns & Popovers */

/* Modals */

.follow-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.follow-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.follow-modal-window {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  max-height: 70vh;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 14px;
  padding: 1.2rem;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  animation: fadeUp 0.25s ease;
}

.follow-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: none;
  background: none;
  font-size: 1.2rem;
  cursor: pointer;
}

.follow-person {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  padding: 0.6rem 0;
  text-decoration: none;
  color: inherit;
}

.follow-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.follow-info .follow-name {
  font-weight: 600;
}

.follow-info .follow-username {
  color: #777;
  font-size: 0.9rem;
}

/* Alerts/Flash Messages */

.flashes {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.flash {
  padding: 8px 10px;
  border-radius: 6px;
  margin: 8px 0;
  font-size: 13px;
  font-weight: var(--fw-regular);
}

.flash.success {
  background: #e6ffed;
  color: #0a7a2a;
}

.flash.danger {
  background: #ffe6e6;
  color: #b40000;
}

/* Pagination */

/*===============
  Navigation System
================*/

/* Topbar */

.fn-topbar {
  width: 100%;
  background: #111;
  color: #fff;
  padding: 14px 0;
}

.fn-topbar-content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fn-topbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;

  font-family: var(--font-logo);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  font-size: 28px;
}

.fn-logo-mark {
  height: 50px;
  width: auto;
}

.fn-topbar-nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.fn-topbar-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.fn-topbar-nav a:hover {
  opacity: 1;
}

.fn-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.currency-select {
  padding: 6px 8px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}

.nav-logout-link,
.nav-signup-link {
  color: #fff;
  opacity: 0.8;
  font-size: 14px;
  text-decoration: none;
}

.nav-logout-link:hover,
.nav-signup-link:hover {
  opacity: 1;
}

/* Right Nav Cluster */

.fn-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.currency-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.currency-label {
  font-size: 12px;
  opacity: 0.7;
}

.currency-select {
  padding: 5px 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  color: #111;
}

.currency-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.nav-notifs {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-notifs-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;

  padding: 8px;
  line-height: 0;
  cursor: pointer;

  transition: background 160ms ease, border-color 160ms ease, transform 80ms ease;
}

.nav-notifs-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-notifs-btn:active {
  transform: translateY(1px);
}

.nav-notifs-btn:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.16);
}

.nav-notifs-icon {
  width: 26px;
  height: 26px;
  display: block;
  color: rgba(255, 255, 255, 0.92);
}

.nav-codes-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  background: #111111;
  border: 1px solid #111111;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.nav-codes-btn:hover {
  transform: translateY(-1px);
  background: #222222;
  border-color: #222222;
}

.nav-codes-icon {
  width: 18px;
  height: 18px;
  color: #ffffff;
}

.nav-codes-icon {
  width: 18px;
  height: 18px;
}

/* ✅ Badge: only exists when JS shows it */
.nav-notifs-badge {
  position: absolute;
  right: -3px;
  bottom: -3px;

  min-width: 16px;
  height: 16px;
  padding: 0 5px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 9999px;
  box-sizing: border-box;

  font-size: 10.5px;
  font-weight: var(--fw-bold);
  line-height: 1;

  background: #ff4b63;
  color: #fff;

  box-shadow: 0 0 0 2px #111, 0 6px 14px rgba(0, 0, 0, 0.30);
  pointer-events: none;

  animation: notif-pop 220ms ease-out;
}

/* ✅ THIS is the key fix: if hidden, it is gone */
.nav-notifs-badge[hidden] {
  display: none !important;
}

/* Keep your wide badge behavior */
.nav-notifs-badge.is-wide {
  min-width: 20px;
  height: 16px;
  padding: 0 6px;
}

/* (rest unchanged) */
.nav-profile-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eee;
  text-decoration: none;
  color: #444;

  border: 1.5px solid #ddd;
  transition: transform 0.15s ease;
}

.nav-profile-avatar:hover {
  transform: scale(1.05);
}

.nav-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-profile-initial {
  font-weight: 700;
  font-size: 16px;
}

.nav-profile-generic {
  font-size: 18px;
}

.fn-avatar-button {
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #eee;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.fn-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fn-avatar-placeholder {
  font-size: 18px;
  color: #888;
}

/* Notifications Panel */

.nav-notifs-panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;

  width: 360px;
  max-width: min(420px, 92vw);

  background: #fff;
  color: #111;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);

  overflow: hidden;
  z-index: 9999;
}

.nav-notifs-panel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 16px;

  width: 14px;
  height: 14px;

  background: #fff;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(0, 0, 0, 0.08);

  transform: rotate(45deg);
}

.nav-notifs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);

  background: linear-gradient(180deg,
      rgba(241, 170, 209, 0.10),
      rgba(255, 255, 255, 0.00));
}

.nav-notifs-title {
  font-family: var(--font-display);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
}

.nav-notifs-viewall {
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.55);
}

.nav-notifs-viewall:hover {
  color: rgba(0, 0, 0, 0.85);
}

.nav-notifs-body {
  max-height: 380px;
  overflow: auto;
  padding: 10px 10px;
}

.nav-notifs-body::-webkit-scrollbar {
  width: 10px;
}

.nav-notifs-body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 1);
}

.nav-notifs-empty {
  padding: 14px 12px;
  color: rgba(0, 0, 0, 0.55);
  font-weight: var(--fw-medium);
  font-size: 13px;
}

.nav-notif-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;

  padding: 10px 10px;
  border-radius: 12px;

  transition: background 160ms ease, transform 100ms ease;
}

.nav-notif-row:hover {
  background: rgba(241, 170, 209, 0.10);
}

.nav-notif-avatar {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  overflow: hidden;

  background: rgba(0, 0, 0, 0.06);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.nav-notif-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav-notif-avatar span {
  font-weight: var(--fw-semibold);
  color: rgba(0, 0, 0, 0.55);
  font-size: 13px;
}

.nav-notif-main {
  min-width: 0;
}

.nav-notif-text {
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.25;
}

.nav-notif-actor {
  font-weight: var(--fw-semibold);
  text-decoration: none;
  color: rgba(0, 0, 0, 0.92);
}

.nav-notif-actor:hover {
  text-decoration: underline;
}

.nav-notif-context {
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;

  color: rgba(0, 0, 0, 0.70);
  font-size: 12.5px;
  line-height: 1.25;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nav-notif-time {
  margin-top: 6px;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.48);
  font-weight: var(--fw-regular);
}

@keyframes notif-pop {
  from {
    transform: scale(0.86);
    opacity: 0;
  }

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

@media (max-width: 420px) {
  .nav-notifs-panel {
    right: -6px;
  }

  .nav-notifs-panel::before {
    right: 22px;
  }
}

/*===============
  Feed System
================*/

.fd-feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

@media (max-width: 1100px) {
  .fd-feed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 820px) {
  .fd-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .fd-feed-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.fd-feed-card {
  position: relative;
  display: flex;
  flex-direction: column;

  background: #fff;
  border-radius: 18px;
  overflow: hidden;

  text-decoration: none;
  color: inherit;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fd-feed-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.fd-feed-card-image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.fd-feed-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fd-feed-card-info {
  padding: 10px 12px 12px;
}

.fd-feed-card-brand {
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 4px;
}

.fd-feed-card-title {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 6px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  min-height: calc(1.3em * 2);
}

.fd-feed-card-price {
  font-size: 13px;
  font-weight: 600;
}

.fd-feed-card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fd-card-save-form {
  position: absolute;
  top: 10px;
  right: 10px;

  display: flex;
  align-items: center;
  gap: 6px;

  padding: 4px 10px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 2;
}

.fd-feed-card:hover .fd-card-save-form {
  opacity: 1;
  pointer-events: auto;
}

.fd-card-save-select {
  border: none;
  background: transparent;
  font-size: 11px;
  max-width: 130px;
  outline: none;
  padding: 0;
}

.fd-card-save-btn {
  border: none;
  border-radius: 999px;
  padding: 2px 8px;

  font-size: 11px;
  font-weight: 600;
  cursor: pointer;

  background: var(--profile-accent);
  color: var(--on-profile-accent);
}

.fd-card-save-create {
  position: absolute;
  top: 10px;
  right: 10px;

  padding: 4px 10px;
  border-radius: 999px;

  font-size: 11px;
  background: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  color: #ff4b8a;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
  z-index: 2;
}

.fd-feed-card:hover .fd-card-save-create {
  opacity: 1;
  pointer-events: auto;
}

.fd-card-like-form {
  margin: 0;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
}

.fd-like-btn,
.fd-card-like-btn {
  pointer-events: auto;
  cursor: pointer;

  background: transparent;
  border: 0;

  font-size: 20px;
  line-height: 1;
}

.fd-like-btn.is-liked {
  color: var(--profile-accent);
}

.home-hero {
  text-align: center;
  margin: 40px 0 32px;
}

.home-hero-title {
  font-size: clamp(34px, 4vw, 44px);
  margin: 12px 0 6px;
  letter-spacing: -0.02em;
}

.home-hero-kicker {
  margin-bottom: 10px;
}

/*===============
  Commerce System
================*/

.item-detail {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: start;
}

.item-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

@media (max-width: 820px) {
  .item-detail {
    grid-template-columns: 1fr;
  }
}

/*===============
  Comment System
================*/

.item-comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.item-comment-card {
  border-radius: 14px;
  border: 1px solid #ececf1;
  padding: 12px 14px;
  background: #fff;
}

.comment-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.comment-main {
  flex: 1;
  min-width: 0;
}

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
  background: rgba(0, 0, 0, 0.06);
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.item-comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-bottom: 6px;
}

.item-comment-date {
  color: #888;
  font-size: 11px;
}

.item-comment-body {
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 8px;
}

.item-comment-image {
  max-width: 180px;
  border-radius: 12px;
  display: block;
}

.comment-replies {
  margin-top: 14px;
  padding-left: 18px;
  border-left: 2px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comment--reply .comment-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}

/*===============
  Profile System
================*/

.profile-page {
  margin-top: 0;

  --profile-accent: #f28dcf;
  --profile-accent-soft: #ffe9f6;
  --profile-banner-bg: linear-gradient(160deg, #ffdff0, #f6c3e1);
  --profile-avatar-border: #ffffff;
}

.profile-banner {
  position: relative;
  width: 100%;
  border-radius: 0 0 24px 24px;
  overflow: visible;
  margin: 0 0 48px;
}

.profile-banner-inner {
  height: 180px;
  background: var(--profile-banner-bg);
}

.profile-avatar-wrapper {
  position: absolute;
  left: 50%;
  bottom: -52px;
  transform: translateX(-50%);
}

.profile-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--profile-avatar-border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-initial {
  font-size: 40px;
  font-weight: 600;
  color: #333;
}

.profile-header-content {
  margin-top: 68px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.profile-name-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-display-name {
  margin: 0;
  font-size: clamp(22px, 3vw, 26px);
  font-weight: 700;
}

.profile-username {
  font-size: 13px;
  color: #777;
}

.profile-follow-block {
  display: flex;
  gap: 18px;
  font-size: 13px;
  align-items: flex-end;
}

.profile-follow-number {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.profile-follow-count {
  font-weight: 600;
  font-size: 14px;
}

.profile-follow-label {
  color: #777;
}

.profile-follow-form {
  margin-left: 6px;
}

.profile-follow-btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease, opacity 160ms ease;

  border: 1.5px solid var(--profile-accent);
  background: var(--profile-accent);
  color: #fff;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
}

.profile-follow-btn:hover {
  transform: translateY(-1px);
  filter: brightness(0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.profile-follow-btn.is-following {
  background: var(--profile-accent);
  border-color: var(--profile-accent);
  color: #fff;
  opacity: 0.9;
}

.profile-follow-btn.is-following:hover {
  opacity: 1;
  filter: brightness(0.95);
}

.profile-bio-theme {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.profile-bio {
  margin: 0;
  font-size: 13px;
  color: #555;
  max-width: 60%;
}

.profile-bio-empty {
  margin: 0;
  padding: 0;
  min-height: 0;
}

.profile-favourites {
  margin-top: 32px;
}

.profile-favourites-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.profile-section-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.profile-section-subtitle {
  margin: 0;
  font-size: 13px;
  color: #777;
}

.profile-brand-stories {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;

  justify-content: center;
  align-items: center;

  gap: 1rem;
  margin: 0 auto 2rem;
}

.brand-story-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-story-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.brand-story-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-story-initial {
  font-weight: 600;
  font-size: 1.35rem;
  color: #444;
}

.brand-story-link:hover .brand-story-avatar {
  transform: scale(1.06);
}

.profile-collections-area {
  margin-top: 32px;
}

.profile-tabs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.profile-tab-list {
  display: inline-flex;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #f5f3f9;
}

.profile-tab-button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  font-weight: 500;
  color: #555;
}

.profile-tab-button.is-active {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  color: #111;
}

.profile-tab-panels {
  margin-top: 10px;
}

.profile-tab-panel {
  display: none;
}

.profile-tab-panel.is-active {
  display: block;
}

.profile-collections-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.profile-empty-illustration {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #faf7ff;
  border: 1px dashed #e0d5eb;
}

.profile-empty-title {
  margin: 0 0 2px;
  font-weight: 600;
  font-size: 13px;
}

.profile-empty-text {
  margin: 0;
  font-size: 13px;
  color: #666;
}

.item-placeholder {
  width: 100%;
  height: 100%;
  background: #f3f0f7;
  border-radius: 18px;
}

.profile-menu {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10000;
}

.profile-settings-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: none;

  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);

  font-size: 22px;
  line-height: 1;
  font-family: inherit;

  display: grid;
  place-items: center;
  cursor: pointer;

  position: relative;
  z-index: 10001;
}

.profile-settings-button:hover {
  background: #fff;
}

.profile-menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;

  min-width: 180px;
  padding: 8px;

  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);

  z-index: 10000;
}

.profile-menu-item {
  display: block;
  width: 100%;
  text-align: left;

  padding: 10px 12px;
  border-radius: 10px;

  background: transparent;
  border: none;
  font: inherit;
  cursor: pointer;

  color: #222;
  text-decoration: none;
}

.profile-menu-item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.profile-menu-danger {
  color: #d11a2a;
}

@media (max-width:700px) {
  .profile-header-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-follow-block {
    margin-top: 6px;
  }

  .profile-bio-theme {
    flex-direction: column;
    align-items: flex-start;
  }

  .profile-bio {
    max-width: 100%;
  }

  .profile-tabs-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.profile-tab-button.is-active {
  color: var(--profile-accent);
  border-color: var(--profile-accent);
}

/*===============
  Brand System
================*/

.brand-banner,
.brand-hero,
.brand-header {
  position: relative;
}

/*===============
  Collection System
================*/

.profile-collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  align-items: start;
}

.profile-collection-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.profile-collection-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;

  border-radius: 20px;
  overflow: hidden;
  background: #f3f3f3;
  aspect-ratio: 1/1;

  transition: filter .12s ease, transform .12s ease, box-shadow .12s ease;
}

.profile-collection-preview-tile {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eee;
}

.profile-collection-preview-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-collection-preview-empty {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6f6f6, #ededed);
}

.profile-collection-body {
  padding-top: 10px;
}

.profile-collection-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.profile-collection-meta {
  margin-top: 4px;
  font-size: 13px;
  opacity: .7;
}

.profile-collection-description {
  margin-top: 6px;
  font-size: 13px;
  opacity: .75;
  line-height: 1.3;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.profile-collection-card:hover .profile-collection-preview {
  filter: brightness(.985);
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
}

.collection-hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin: 18px 0;
  min-height: 220px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.collection-hero-overlay {
  display: none;
}

.collection-hero-content {
  position: relative;
  z-index: 2;
  padding: 22px 22px 18px;
  color: #fff;
}

.collection-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.collection-hero-title-wrap {
  background: rgba(255, 255, 255, .60);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  padding: 12px 18px;
  border-radius: 14px;
  color: #111;

  max-width: min(680px, 100%);
}

.collection-hero-title {
  margin: 0;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.collection-pill {
  display: inline-flex;
  align-items: center;

  padding: 8px 12px;
  border-radius: 999px;
  margin-left: 10px;

  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(0, 0, 0, .06);
  color: #111;

  font-size: 14px;
  font-weight: 700;
}

.collection-hero-description {
  margin: 10px 0 0;
  max-width: 72ch;
  opacity: .92;
  color: #fff;
}

.collection-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.collection-action-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, .10);
  cursor: pointer;
  text-decoration: none;
  color: #111;

  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}

.collection-action-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .98);
  border-color: rgba(0, 0, 0, .18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .14);
}

.collection-action-btn:active {
  transform: scale(.96);
}

a.collection-action-btn,
a.collection-action-btn:visited,
a.collection-action-btn:hover,
a.collection-action-btn:active {
  color: inherit;
  text-decoration: none;
}

.collection-action-icon {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}

.collection-action-btn svg * {
  stroke: currentColor !important;
  fill: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.collection-edit-btn {
  color: #111 !important;
}

.collection-share-btn {
  position: relative;
}

.collection-share-btn.is-copied::after {
  content: "Copied!";
  position: absolute;
  top: 110%;
  right: 0;

  font-size: 12px;
  color: #111;

  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .10);
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
  white-space: nowrap;
}

.collection-share-btn .share-icon {
  display: none !important;
}

.collection-edit-btn svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  overflow: visible !important;
}

.collection-edit-btn svg * {
  stroke: currentColor !important;
  fill: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.collection-hero .collection-actions .collection-action-btn {
  color: #111 !important;
}

.collection-hero .collection-edit-btn {
  color: #111 !important;
}

.collection-pill {
  display: inline-flex;
  align-items: center;

  padding: 6px 12px;
  margin-left: 10px;

  font-size: 13px;
  font-weight: 600;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);

  backdrop-filter: blur(6px);

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.collection-hero-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.collection-pill-label {
  opacity: .6;
  margin-right: 6px;
  font-weight: 500;
}

.collection-pill-value {
  font-weight: 700;
}

.collection-total {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 6px;

  padding: 6px 12px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, .08);

  font-size: 13px;
}

.collection-total-label {
  opacity: .65;
  font-weight: 500;
}

.collection-total-value {
  font-weight: 700;
}

/*===============
  Filters System
================*/

.fn-filters-section {
  margin-top: 18px;
}

.fn-filter-bar {
  background: #f7f3fb;
  border-radius: 24px;
  padding: 10px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fn-filter-pill {
  position: relative;
}

.fn-filter-pill>summary {
  list-style: none;
  cursor: pointer;

  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid #e1d5f0;
  background: #fff;

  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  transition: background 140ms ease, border-color 140ms ease, transform 120ms ease;
}

.fn-filter-pill>summary::-webkit-details-marker {
  display: none;
}

.fn-filter-pill[open]>summary {
  background: #f5ecff;
  border-color: #d8c6ef;
}

.fn-filter-pill>summary:active {
  transform: translateY(1px);
}

.fn-filter-dropdown {
  position: absolute;
  left: 0;
  margin-top: 6px;
  min-width: 230px;

  background: #fff;
  border-radius: 16px;
  border: 1px solid #e1d5f0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);

  padding: 10px 12px;
  z-index: 20;
}

.fn-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 8px;
}

.fn-filter-option:last-child {
  margin-bottom: 0;
}

.fn-filter-option input {
  margin: 0;
}

.fn-colour-swatch,
.fn-metal-swatch {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.fn-colour-black .fn-colour-swatch {
  background: #111;
}

.fn-colour-white .fn-colour-swatch {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .12);
}

.fn-colour-blue .fn-colour-swatch {
  background: #4b7cff;
}

.fn-colour-brown .fn-colour-swatch {
  background: #8b5a2b;
}

.fn-colour-grey .fn-colour-swatch {
  background: #9ea4b1;
}

.fn-colour-green .fn-colour-swatch {
  background: #3cb371;
}

.fn-colour-orange .fn-colour-swatch {
  background: #ff8a3c;
}

.fn-colour-pink .fn-colour-swatch {
  background: #ff7eb8;
}

.fn-colour-red .fn-colour-swatch {
  background: #ff4b5c;
}

.fn-colour-purple .fn-colour-swatch {
  background: #b37bff;
}

.fn-colour-yellow .fn-colour-swatch {
  background: #ffd94d;
}

.fn-colour-neutral .fn-colour-swatch {
  background: #e2d2c2;
}

.fn-colour-gold .fn-colour-swatch {
  background: linear-gradient(135deg, #fbe7a0, #f0c15b);
}

.fn-colour-silver .fn-colour-swatch {
  background: linear-gradient(135deg, #f4f7fb, #c2ccd8);
}

.fn-colour-bronze .fn-colour-swatch {
  background: linear-gradient(135deg, #c47a3a, #8b4b22);
}

.fn-colour-multi .fn-colour-swatch {
  background: linear-gradient(135deg, #ff7eb8, #ffd94d, #7dd3fc);
}

.fn-metal-gold .fn-metal-swatch {
  background: linear-gradient(135deg, #fbe7a0, #f0c15b);
}

.fn-metal-silver .fn-metal-swatch {
  background: linear-gradient(135deg, #f4f7fb, #c2ccd8);
}

.fn-metal-rose .fn-metal-swatch {
  background: linear-gradient(135deg, #f6c0c9, #e29aaa);
}

.fn-metal-bronze .fn-metal-swatch {
  background: linear-gradient(135deg, #c47a3a, #8b4b22);
}

.fn-filter-pill>summary {
  position: relative;
}

.fn-filter-pill>summary .fn-selected-chips {
  display: none;
}

.fn-filter-pill>summary::after {
  content: "";
  display: none;
}

.fn-filter-pill:has(.fn-colour-swatch)>summary::after {
  display: inline-block;
  content: "";
  width: auto;
  height: 10px;
  margin-left: 2px;
}

.fn-filter-pill:has(.fn-colour-swatch)>summary::after {
  width: 10px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  opacity: .95;
}

.fn-filter-pill:has(input[name="colour"][value="black"]:checked)>summary::after {
  background: #111;
}

.fn-filter-pill:has(input[name="colour"][value="white"]:checked)>summary::after {
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .18);
}

.fn-filter-pill:has(input[name="colour"][value="blue"]:checked)>summary::after {
  background: #4b7cff;
}

.fn-filter-pill:has(input[name="colour"][value="pink"]:checked)>summary::after {
  background: #ff7eb8;
}

.fn-filter-pill:has(input[name="colour"][value="red"]:checked)>summary::after {
  background: #ff4b5c;
}

.fn-filter-pill:has(input[name="colour"][value="purple"]:checked)>summary::after {
  background: #b37bff;
}

.fn-filter-pill:has(input[name="colour"][value="green"]:checked)>summary::after {
  background: #3cb371;
}

.fn-filter-pill:has(input[name="colour"][value="yellow"]:checked)>summary::after {
  background: #ffd94d;
}

.fn-filter-pill:has(input[name="colour"][value="multi"]:checked)>summary::after {
  background: linear-gradient(135deg, #ff7eb8, #ffd94d, #7dd3fc);
}

.fn-filter-pill:has(input[name="colour"][value="gold"]:checked)>summary::after {
  background: linear-gradient(135deg, #fbe7a0, #f0c15b);
}

.fn-filter-pill:has(input[name="colour"][value="silver"]:checked)>summary::after {
  background: linear-gradient(135deg, #f4f7fb, #c2ccd8);
}

.fn-filter-pill:has(input[name="colour"][value="bronze"]:checked)>summary::after {
  background: linear-gradient(135deg, #c47a3a, #8b4b22);
}

.fn-filter-pill:has(.fn-colour-swatch)>summary::after {
  box-shadow: 12px 0 0 rgba(0, 0, 0, 0), 24px 0 0 rgba(0, 0, 0, 0), 36px 0 0 rgba(0, 0, 0, 0);
}

.fn-filter-pill:has(input[name="colour"][value="pink"]:checked):has(input[name="colour"][value="black"]:checked)>summary::after {
  background: #ff7eb8;
  box-shadow: 12px 0 0 #111, 24px 0 0 rgba(0, 0, 0, 0), 36px 0 0 rgba(0, 0, 0, 0);
}

.fn-filter-pill:has(input[name="colour"][value="pink"]:checked):has(input[name="colour"][value="red"]:checked):has(input[name="colour"][value="purple"]:checked)>summary::after {
  background: #ff7eb8;
  box-shadow: 12px 0 0 #ff4b5c, 24px 0 0 #b37bff, 36px 0 0 rgba(0, 0, 0, 0);
}

/*===============
  Auth System
================*/

.auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 36px 32px;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.10),
    0 6px 18px rgba(0, 0, 0, 0.05);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.auth-head {
  margin-bottom: 18px;
}

.auth-title {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111;
  text-align: center;
}

.auth-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.7;
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-field {
  display: flex;
  flex-direction: column;
}

.auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.60);
}

.auth-field input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: 16px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  font-size: 15px;
  color: #111;

  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.auth-field input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.auth-field input:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.auth-password-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.pw-toggle {
  padding: 12px 12px;
  border-radius: 12px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.72);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

.pw-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.pw-toggle:active {
  transform: translateY(0);
}

.auth-forgot {
  text-align: right;
  margin-top: -6px;
}

.auth-link {
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.70);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.22);
}

.auth-link:hover {
  color: #111;
  border-bottom-color: rgba(0, 0, 0, 0.45);
}

.auth-recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.auth-recaptcha .g-recaptcha {
  transform-origin: center;
}

.auth-card .btn-primary {
  margin-top: 6px;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  background: #111;
  border: 1px solid #111;
  color: #fff;

  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.auth-card .btn-primary:hover {
  transform: translateY(-1px);
  background: #000;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.auth-footer {
  margin-top: 24px;
  text-align: center;
}

.auth-back {
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.15s ease;
}

.auth-back:hover {
  opacity: 1;
}

.auth-switch {
  margin: 18px 0 0;
  font-size: 13px;
  opacity: 0.75;
  text-align: center;
}

.auth-switch a {
  color: #111;
  font-weight: 900;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
}

.auth-switch a:hover {
  border-bottom-color: rgba(0, 0, 0, 0.55);
}

@media (max-width: 640px) {
  .auth-card {
    padding: 28px 22px;
    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  .auth-password-wrap {
    grid-template-columns: 1fr;
  }

  .pw-toggle {
    width: 100%;
  }
}

/*===============
  Admin System
================*/

.settings-page,
.settings-page * {
  box-sizing: border-box;
}

.settings-page {
  padding: 28px 16px 56px;
}

.settings-card {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;

  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.10),
    0 2px 10px rgba(0, 0, 0, 0.05);

  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.settings-card>.settings-title {
  margin: 0 0 6px;
  font-family: var(--font-logo, var(--font-display, system-ui));
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.86);
}

.settings-card>.settings-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.60);
}

.settings-section {
  margin-top: 16px;
  padding: 18px 18px 20px;

  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.70);
}

.settings-section+.settings-section {
  margin-top: 14px;
}

.settings-section .settings-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.74);
}

.settings-section .settings-subtitle {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.58);
}

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

.settings-page .auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.60);
  margin: 0 0 6px;
}

.settings-page .auth-field input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;

  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.86);

  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.settings-page .auth-field input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.settings-page .auth-field input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.settings-page .password-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.settings-page .pw-toggle {
  padding: 12px 12px;
  border-radius: 12px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.72);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.settings-page .pw-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.settings-page .settings-btn-primary {
  margin-top: 6px;
  width: fit-content;

  padding: 14px 18px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #111;
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.settings-page .settings-btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
}

.settings-section.danger {
  border-color: rgba(220, 20, 60, 0.22);
  background: rgba(220, 20, 60, 0.03);
}

.settings-section.danger .settings-title {
  color: rgba(220, 20, 60, 0.86);
}

.settings-page .settings-btn-danger {
  margin-top: 6px;
  width: fit-content;

  padding: 14px 18px;
  border-radius: 999px;

  border: 1px solid rgba(220, 20, 60, 0.40);
  background: rgba(220, 20, 60, 0.92);
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;
  box-shadow: 0 18px 44px rgba(220, 20, 60, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.settings-page .settings-btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(220, 20, 60, 0.26);
  filter: saturate(1.05);
}

@media (max-width: 640px) {
  .settings-card {
    padding: 18px;
    border-radius: 18px;
  }

  .settings-section {
    padding: 14px;
    border-radius: 16px;
  }

  .settings-page .password-wrap {
    grid-template-columns: 1fr;
  }

  .settings-page .pw-toggle,
  .settings-page .settings-btn-primary,
  .settings-page .settings-btn-danger {
    width: 100%;
    justify-self: stretch;
  }
}

.admin-page {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.admin-header {
  margin-left: 0;
  padding-left: 0;
}


/*===============
  Footer
================*/

.site-footer {
  padding: 24px 0;
  text-align: center;
  color: #777;
  margin-top: 40px;
  font-size: 13px;
  font-weight: var(--fw-regular);
}

.site-footer {
  margin-top: 48px;
  padding: 24px 16px;
  text-align: center;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 14px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 48px;
  padding: 24px 16px;
  text-align: center;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 14px;
}

.site-footer .footer-link {
  color: #111;
  text-decoration: underline;
  font-weight: 600;
}

.site-footer .footer-link:hover {
  opacity: 0.8;
}

.site-footer {
  margin-top: 56px;
  padding: 24px 16px 32px;
  border-top: 1px solid #ece7f2;
  text-align: center;
}

.site-footer .container {
  color: #6d6677;
  font-size: 0.95rem;
  line-height: 1.6;
}

.site-footer .footer-link {
  color: #1f1728;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.15s ease;
}

.site-footer .footer-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/*===============
  Utilaties
================*/

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 0, 0, 0.15);
  border-top-color: var(--profile-accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.progress-bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--profile-accent);
  width: 40%;
  transition: width 0.3s ease;
}



/*===============
  Animations
================*/

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*===============
  Responsive System
================*/

@media (max-width: 800px) {
  .fd-feed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*===============
 Tablet breakpoint
================*/

@media (max-width: 800px) {
  .admin-item-layout {
    flex-direction: column;
  }

  .admin-item-left {
    width: 100%;
    flex: none;
  }
}

/*===============
  Mobile breakpoint
================*/

@media (max-width: 600px) {
  .admin-title {
    font-size: 28px;
  }
}

@media (max-width: 800px) {
  .item-layout {
    flex-direction: column;
  }

  .item-main-image,
  .item-image-placeholder {
    max-width: 100%;
  }
}

/*===============
  Small Mobile breakpoint
================*/

/*===============
  Account Settings
================*/

.settings-page,
.settings-page * {
  box-sizing: border-box;
}

.settings-page {
  padding: 28px 16px 56px;
}

.settings-card {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;

  padding: 28px;

  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.10),
    0 2px 10px rgba(0, 0, 0, 0.05);

  backdrop-filter: blur(10px);
}

.settings-card>.settings-title {
  margin: 0 0 6px;
  font-family: var(--font-logo, var(--font-display, system-ui));
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.86);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.settings-card>.settings-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.60);
}

.settings-section {
  margin-top: 16px;
  padding: 18px 18px 20px;

  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.70);
}

.settings-section+.settings-section {
  margin-top: 14px;
}

.settings-section .settings-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.74);
}

.settings-section .settings-subtitle {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.58);
}

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

.settings-page .auth-field label {
  display: block;
  margin: 0 0 6px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.60);
}

.settings-page .auth-field input {
  width: 100%;
  padding: 14px;

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.86);

  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.settings-page .auth-field input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.settings-page .auth-field input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.settings-page .password-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.settings-page .pw-toggle {
  padding: 12px;
  border-radius: 12px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.72);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.settings-page .pw-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.settings-page .btn-primary {
  margin-top: 6px;
  width: fit-content;

  padding: 14px 18px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #111;
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.settings-page .btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
}

.settings-section.danger {
  border-color: rgba(220, 20, 60, 0.22);
  background: rgba(220, 20, 60, 0.03);
}

.settings-section.danger .settings-title {
  color: rgba(220, 20, 60, 0.86);
}

.settings-page .btn-danger {
  margin-top: 6px;
  width: fit-content;

  padding: 14px 18px;
  border-radius: 999px;

  border: 1px solid rgba(220, 20, 60, 0.40);
  background: rgba(220, 20, 60, 0.92);
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;
  box-shadow: 0 18px 44px rgba(220, 20, 60, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.settings-page .btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(220, 20, 60, 0.26);
  filter: saturate(1.05);
}

@media (max-width: 640px) {
  .settings-card {
    padding: 18px;
    border-radius: 18px;
  }

  .settings-section {
    padding: 14px;
    border-radius: 16px;
  }

  .settings-page .password-wrap {
    grid-template-columns: 1fr;
  }

  .settings-page .pw-toggle,
  .settings-page .btn-primary,
  .settings-page .btn-danger {
    width: 100%;
    justify-self: stretch;
  }
}

/*===============
  Add Brand
================*/

.admin-page {
  padding: 28px 16px 56px;
}

.admin-header {
  max-width: 860px;
  margin: 0 auto 18px;
}

.admin-title {
  margin: 0 0 6px;
  font-family: var(--font-logo);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.88);
}

.admin-subtitle {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.58);
}

.admin-section {
  max-width: 860px;
  margin: 18px auto 0;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;

  padding: 22px;

  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.08),
    0 2px 10px rgba(0, 0, 0, 0.04);

  backdrop-filter: blur(10px);
}

.admin-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-section label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.admin-section input[type="text"],
.admin-section input[type="file"],
.admin-section textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  padding: 14px 16px;
  border-radius: 14px;

  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;

  font-size: 15px;
  color: #111;

  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.admin-section textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.admin-section input:focus,
.admin-section textarea:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.26);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.admin-section input[type="file"] {
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.02);
  cursor: pointer;
}

.admin-section .admin-button {
  margin-top: 6px;
  width: fit-content;
}

@media (max-width: 640px) {
  .admin-section {
    padding: 18px;
    border-radius: 16px;
  }

  .admin-section .admin-button {
    width: 100%;
  }
}


/*===============
  Add Item
================*/

.admin-page {
  padding: 26px 16px 56px;
}

.admin-title {
  margin: 0 0 14px;
  font-family: var(--font-logo, var(--font-display, system-ui));
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 520;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.86);
}

.admin-item-form {
  width: 100%;
}

.admin-item-layout {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 16px;

  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  padding: 16px;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.10),
    0 2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

.admin-item-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.admin-item-preview-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.admin-item-preview-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.admin-item-preview-placeholder {
  height: 440px;
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.admin-item-upload-block {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.70);
  padding: 14px;
}

.admin-item-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.admin-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.admin-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.admin-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
}

.admin-help-text {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.50);
}

.admin-input,
.admin-item-right textarea,
.admin-input-file,
.admin-item-right select {
  width: 100%;
  box-sizing: border-box;

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.86);

  padding: 13px 14px;
  font-size: 14px;
  line-height: 1.35;

  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.admin-item-right textarea {
  resize: vertical;
  min-height: 120px;
}

.admin-input:focus,
.admin-item-right textarea:focus,
.admin-item-right select:focus,
.admin-input-file:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.admin-field-group>.admin-button.secondary {
  margin-top: 6px;
  align-self: flex-start;
}

.admin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 16px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #111;
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.admin-button:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.20);
}

.admin-button.secondary {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.78);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: none;
}

.admin-button.secondary:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.admin-button.primary {}

.admin-actions-row {
  padding-top: 8px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 920px) {
  .admin-item-layout {
    grid-template-columns: 1fr;
  }

  .admin-item-preview-image,
  .admin-item-preview-placeholder {
    height: 360px;
  }

  .admin-actions-row {
    justify-content: stretch;
  }

  .admin-actions-row .admin-button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .admin-field-row {
    grid-template-columns: 1fr;
  }
}

.admin-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .75);
}

.admin-check {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
}

.admin-check input {
  width: 16px;
  height: 16px;
}


/*===============
  Admin Add Slides
================*/

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

.admin-slideshow-card {
  margin-top: 20px;
  padding: 28px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #f1e4ec;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.admin-slideshow-form .admin-field-group {
  margin-bottom: 22px;
}

.admin-slideshow-page .admin-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e6dbe3;
  font-size: 14px;
  background: #fff;
  transition: all 0.15s ease;
}

.admin-slideshow-page .admin-input:focus {
  outline: none;
  border-color: #ff6fa5;
  box-shadow: 0 0 0 3px rgba(255, 111, 165, 0.12);
}

.admin-slideshow-page .admin-subtitle {
  margin-top: 6px;
  color: #8f7f88;
  font-size: 14px;
}

.admin-slideshow-page .admin-help-text {
  margin-top: 6px;
  font-size: 12px;
  color: #9a8a93;
}

.admin-slideshow-form .admin-actions-row {
  margin-top: 28px;
}

.admin-page.admin-slideshows-page {
  max-width: 980px;
  margin: 40px auto;
  padding: 0 20px;
}

.admin-page.admin-slideshows-page .admin-slideshows-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.admin-page.admin-slideshows-page .admin-slideshows-header-text {
  min-width: 0;
}

.admin-page.admin-slideshows-page .admin-slideshows-new {
  margin-left: auto;
  white-space: nowrap;
}

.admin-page.admin-slideshows-page .admin-slideshows-new.admin-button {
  background: linear-gradient(135deg, #f7c4d9, #e9a8c3);
  color: #4a2a38;
  border: 1px solid rgba(176, 86, 142, 0.25);
  box-shadow: 0 8px 18px rgba(176, 86, 142, 0.18);
}

.admin-page.admin-slideshows-page .admin-slideshows-new.admin-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(176, 86, 142, 0.22);
}

@media (max-width: 640px) {
  .admin-page.admin-slideshows-page .admin-slideshows-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-page.admin-slideshows-page .admin-slideshows-new {
    margin-left: 0;
  }
}



/*===============
  Admin Audit logs
================*/

/*===============
 Admin Brand Applications
================*/

.fd-brand-apps {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 0 28px;
}

.fd-brand-apps .fd-brand-apps-grid {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.fd-brand-apps .fd-brand-app-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.15s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.fd-brand-apps .fd-brand-app-card:hover {
  transform: translateY(-2px);
  border-color: rgba(176, 86, 142, 0.28);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
}

.fd-brand-apps .fd-brand-app-top {
  display: flex;
  gap: 16px;
  align-items: center;
}

.fd-brand-apps .fd-brand-app-logo {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg,
      rgba(176, 86, 142, 0.18),
      rgba(0, 0, 0, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.fd-brand-apps .fd-brand-app-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fd-brand-apps .fd-brand-app-logo span {
  font-weight: 900;
  color: #b0568e;
  font-size: 18px;
}

.fd-brand-apps .fd-brand-app-main {
  flex: 1;
  min-width: 0;
}

.fd-brand-apps .fd-brand-app-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.fd-brand-apps .fd-brand-app-name {
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fd-brand-apps .fd-badge {
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1;
  white-space: nowrap;
}

.fd-brand-apps .fd-badge.pending {
  background: rgba(255, 205, 86, 0.18);
}

.fd-brand-apps .fd-badge.approved {
  background: rgba(46, 204, 113, 0.18);
}

.fd-brand-apps .fd-badge.denied {
  background: rgba(231, 76, 60, 0.16);
}

.fd-brand-apps .fd-brand-app-meta {
  font-size: 13px;
  opacity: 0.78;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fd-brand-apps .fd-brand-app-meta a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
}

.fd-brand-apps .fd-brand-app-meta a:hover {
  border-bottom-color: rgba(176, 86, 142, 0.55);
}

.fd-brand-apps .fd-brand-app-statusline {
  margin-top: 7px;
  font-size: 13px;
  opacity: 0.92;
}

.fd-brand-apps .fd-brand-app-statusline span {
  opacity: 0.6;
  margin-left: 6px;
}

.fd-brand-apps .fd-brand-app-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}

.fd-brand-apps .fd-brand-app-actions form {
  margin: 0;
}

.fd-brand-apps .fd-brand-app-decided {
  font-size: 12px;
  opacity: 0.65;
  flex: 0 0 auto;
  white-space: nowrap;
}

.fd-brand-apps .fd-brand-app-body {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  line-height: 1.5;
}

.fd-brand-apps .fd-brand-app-body strong {
  font-weight: 900;
}

.fd-brand-apps .fd-brand-app-why {
  margin-top: 8px;
}

.fd-brand-apps .fd-brand-apps-empty {
  margin-top: 14px;
}

@media (max-width: 720px) {
  .fd-brand-apps .fd-brand-app-top {
    align-items: flex-start;
  }

  .fd-brand-apps .fd-brand-app-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fd-brand-apps .fd-brand-app-decided {
    margin-left: auto;
  }
}


/*===============
 Admin Brand Logins
================*/

.admin-brand-logins {
  margin-top: 30px;
}

.admin-brand-login-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  margin-bottom: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.admin-brand-login-header {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.admin-brand-login-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-brand-login-form input {
  flex: 1;
  min-width: 180px;
}

.admin-brand-login-form button {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: linear-gradient(135deg, #f7c4d9, #e9a8c3);
  border: none;
  color: #4a2a38;
  cursor: pointer;
}

.admin-brand-login-form button:hover {
  opacity: 0.9;
}

.admin-brand-login-help {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}

.admin-brand-logins-intro {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.admin-brand-logins-intro h1 {
  margin: 0 0 6px;
  font-size: 20px;
}

.admin-brand-logins-intro p {
  margin: 0;
  color: #666;
  font-size: 14px;
}

.brand-login-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.brand-login-name {
  font-weight: 700;
}

.brand-login-meta {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

.brand-login-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.brand-login-form input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.admin-button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}


/*===============
 Admin Brands
================*/

.admin-brands-page {
  max-width: 1200px;
  margin: 0 auto;
}

.admin-brands-header {
  margin-bottom: 14px;
}

.admin-brands-header .admin-title {
  margin-bottom: 6px;
}

.admin-brands-toolbar {
  margin: 12px 0 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 214, 234, 0.55), rgba(255, 240, 248, 0.9));
  border: 1px solid rgba(176, 86, 142, 0.18);
}

.admin-brands-search {
  min-width: 260px;
  flex: 1;
}

.admin-brands-count {
  margin-left: auto;
}

.admin-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}

.admin-brand-card {
  background: #fff;
  border: 1px solid rgba(176, 86, 142, 0.16);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.admin-brand-card:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 86, 142, 0.26);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.06);
}

.admin-brand-card.is-archived {
  background: linear-gradient(180deg, #fff, rgba(255, 241, 248, 0.9));
}

.admin-brand-top {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-brand-link {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0;
}

.admin-brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(176, 86, 142, 0.18);
  background: radial-gradient(circle at top, rgba(255, 214, 234, 0.65), #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.admin-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-brand-logo span {
  font-weight: 900;
  color: #b0568e;
  font-size: 18px;
}

.admin-brand-info {
  min-width: 0;
}

.admin-brand-name {
  font-weight: 900;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-brand-badges {
  margin-top: 6px;
}

.admin-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(176, 86, 142, 0.22);
  background: rgba(255, 214, 234, 0.35);
  color: #7a2a54;
}

.admin-badge-archived {
  border-color: rgba(255, 180, 80, 0.35);
  background: rgba(255, 240, 220, 0.7);
  color: #a15d00;
}

.admin-brand-edit {
  padding: 8px 12px;
  font-size: 13px;
}

.admin-brand-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.admin-brand-action {
  margin: 0;
}

.admin-brands-page .admin-danger {
  border-color: rgba(255, 140, 140, 0.45) !important;
  background: rgba(255, 230, 230, 0.65) !important;
  color: #8b1a1a !important;
}

@media (max-width: 520px) {
  .admin-brands-grid {
    grid-template-columns: 1fr;
  }

  .admin-brands-count {
    width: 100%;
    margin-left: 0;
  }
}

/*===============
 Admin Dashboard
================*/

.admin-page {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.admin-dashboard {
  align-items: stretch;
}

.admin-dashboard .admin-header {
  margin-bottom: 22px;
  text-align: left;
  align-items: flex-start;
  max-width: none;
  padding-left: 0;
}

.admin-dashboard .admin-title {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111;
  text-align: left;
}

.admin-dashboard .admin-subtitle {
  font-size: 15px;
  color: #6b6b6b;
  margin: 0;
  text-align: left;
}

.admin-quick-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 16px 0 40px;
}

.admin-quick-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-quick-card--clickable {
  cursor: pointer;
}

.admin-quick-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.08);
}

.admin-quick-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.admin-quick-text {
  font-size: 14px;
  color: #6b6b6b;
  margin: 0 0 14px;
}

.admin-section {
  margin-top: 48px;
}

.admin-section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}

.admin-section-title {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.admin-section-link {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
}

.admin-section-link:hover {
  text-decoration: underline;
}

.admin-feed-grid {
  margin-top: 14px;
}

.fd-feed-card.admin-item-card {
  position: relative;
}

.brand-charts-tab.is-active,
.brand-charts-tab.is-active:link,
.brand-charts-tab.is-active:visited,
.brand-charts-tab.is-active:hover,
.brand-charts-tab.is-active:active,
.brand-charts-tab.is-active:focus {
  color: #fff !important;
}

/*===============
 Admin Edit Slides
================*/

.admin-edit-slideshow .admin-edit-slideshow__form {
  max-width: 980px;
  display: grid;
  gap: 14px;
}

.admin-edit-slideshow__card {
  background: #fff;
  border: 1px solid #eee3ef;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.admin-edit-slideshow__field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.admin-edit-slideshow__row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.admin-edit-slideshow__field--small {
  min-width: 200px;
}

.admin-edit-slideshow__field--xs {
  width: 160px;
}

.admin-edit-slideshow__cover {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 8px 0 10px;
}

.admin-edit-slideshow__cover img {
  width: 190px;
  height: 116px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #eee3ef;
  background: #faf6fb;
}

.admin-edit-slideshow__cover-meta {
  font-size: 13px;
  opacity: 0.75;
}

.admin-edit-slideshow__items-head {
  margin-bottom: 10px;
}

.admin-edit-slideshow__items-title {
  font-weight: 900;
  font-size: 16px;
}

.admin-edit-slideshow__items-sub {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 4px;
}

.admin-edit-slideshow__toolbar {
  border: 1px solid #eee3ef;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(180deg, #fff, #fff8fd);
}

.admin-edit-slideshow__search {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}

.admin-edit-slideshow__search-input {
  min-width: 260px;
  flex: 1;
}

.admin-edit-slideshow__pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.admin-edit-slideshow__pager-meta {
  font-size: 13px;
  opacity: 0.78;
}

.admin-edit-slideshow__pager-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-edit-slideshow__dot {
  opacity: 0.45;
  margin: 0 6px;
}

.admin-edit-slideshow__items-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}

.admin-edit-slideshow__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid #f1e6ef;
  border-radius: 14px;
  cursor: pointer;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.admin-edit-slideshow__item:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 86, 142, 0.30);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
}

.admin-edit-slideshow__check {
  transform: scale(1.12);
  accent-color: #b0568e;
}

.admin-edit-slideshow__thumb {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #eee3ef;
  background: #faf6fb;
  flex: 0 0 auto;
}

.admin-edit-slideshow__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-edit-slideshow__item-text {
  min-width: 0;
  flex: 1;
}

.admin-edit-slideshow__item-name {
  font-weight: 900;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-edit-slideshow__item-meta {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-edit-slideshow__empty {
  margin-top: 12px;
}

.admin-edit-slideshow__sticky {
  position: sticky;
  bottom: 14px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid #eee3ef;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.admin-edit-slideshow__save {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(176, 86, 142, 0.35);
  background: linear-gradient(135deg, #b0568e, #f7c4d9);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.admin-edit-slideshow__save:hover {
  opacity: 0.95;
}

@media (max-width: 640px) {
  .admin-edit-slideshow__field--xs {
    width: 100%;
  }

  .admin-edit-slideshow__cover {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-edit-slideshow__cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/10;
  }
}

/*===============
 Admin Items 
================*/

.admin-items-layout {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.admin-items-sidebar {
  width: 260px;
  flex: 0 0 260px;
  background: #fff;
  border: 1px solid rgba(176, 86, 142, .14);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .04);
  height: fit-content;
}

.admin-items-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 1px solid transparent;
}

.admin-items-brand:hover {
  background: rgba(176, 86, 142, .06);
  border-color: rgba(176, 86, 142, .18);
}

.admin-items-brand.active {
  background: rgba(176, 86, 142, .10);
  border-color: rgba(176, 86, 142, .22);
}

.admin-items-brand-dot {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: #f5f0f4;
  border: 1px solid rgba(176, 86, 142, .14);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #b0568e;
  flex: 0 0 auto;
}

.admin-items-brand-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-items-brand-name {
  font-weight: 800;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-items-main {
  flex: 1;
  min-width: 0;
}

@media (max-width: 900px) {
  .admin-items-layout {
    flex-direction: column;
  }

  .admin-items-sidebar {
    width: 100%;
    flex: 1;
  }
}

/*===============
 Admin Login
================*/

/*===============
 Admin Slideshows
================*/

.admin-slideshows-page,
.admin-slideshow-page {
  max-width: 980px;
  margin: 0 auto;
}

.admin-slideshows-page .admin-slideshows-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.admin-slideshows-page .admin-slideshows-header-text {
  min-width: 0;
}

.admin-slideshows-page .admin-slideshows-new {
  margin-left: auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.admin-slideshows-page .admin-title {
  margin: 0 0 6px;
}

.admin-slideshows-page .admin-subtitle {
  margin: 0;
}

.admin-slideshows-list {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.admin-slideshows-card {
  background: #fff;
  border: 1px solid #eee3ef;
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.admin-slideshows-card:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 139, 189, 0.35);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.admin-slideshows-cover {
  width: 104px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  background: #faf6fb;
  border: 1px solid #eee3ef;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admin-slideshows-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-slideshows-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f7e6f0, #f5f5fb);
}

.admin-slideshows-info {
  flex: 1;
  min-width: 0;
}

.admin-slideshows-title {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-slideshows-slug {
  margin-top: 3px;
  font-size: 13px;
  opacity: 0.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-slideshows-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.admin-slideshows-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid #eee3ef;
  background: #fff;
}

.admin-slideshows-badge--active {
  border-color: rgba(217, 139, 189, 0.45);
  background: rgba(217, 139, 189, 0.12);
  color: #8f2e6a;
}

.admin-slideshows-badge--inactive {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.03);
  color: #444;
}

.admin-slideshows-badge--position {
  background: #faf6fb;
  color: #4a2a38;
}

.admin-slideshows-actions {
  flex: 0 0 auto;
}

.admin-slideshows-empty {
  margin-top: 14px;
}

.admin-slideshow-form {
  background: #ffffff;
  border: 1px solid #f0e3ec;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  margin-top: 10px;
}

.admin-slideshow-form .admin-field-group {
  margin-bottom: 16px;
}

.admin-slideshow-form .admin-label {
  display: block;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 6px;
  color: #2b2b2b;
}

.admin-slideshow-form .settings-input {
  width: 100%;
  border: 1px solid #ead7e6;
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 15px;
  background: #fff;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.admin-slideshow-form .settings-input:focus {
  border-color: #d98bbd;
  box-shadow: 0 0 0 4px rgba(217, 139, 189, 0.18);
}

.admin-slideshow-form .admin-help-text {
  font-size: 12px;
  color: #8b7f87;
  margin-top: 6px;
}

.admin-slideshow-form .admin-actions-row {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .admin-slideshows-page .admin-slideshows-header {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-slideshows-page .admin-slideshows-new {
    margin-left: 0;
    align-self: flex-start;
  }

  .admin-slideshows-card {
    padding: 12px;
  }

  .admin-slideshows-cover {
    width: 92px;
    height: 62px;
  }
}



/*===============
 Admin Users
================*/

/*===============
 Base
================*/

/*===============
 Beta Welcome
================*/

.beta-page {
  background: #ffffff;
}

.beta-shell {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.04), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.beta-card {
  width: 100%;
  max-width: 560px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 28px;
  padding: 44px 34px;
  text-align: center;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.03);
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid #d9d9d9;
  background: #fafafa;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beta-title {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.beta-subtitle {
  margin: 0 auto;
  max-width: 420px;
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.65;
}

.beta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.beta-button,
.beta-button:link,
.beta-button:visited {
  appearance: none;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff !important;
  text-decoration: none;
  padding: 13px 22px;
  min-width: 170px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.beta-button:hover,
.beta-button:focus {
  background: #222222;
  border-color: #222222;
  color: #ffffff !important;
  text-decoration: none;
  transform: translateY(-1px);
}

.beta-button:active {
  transform: translateY(0);
}

.beta-button-secondary,
.beta-button-secondary:link,
.beta-button-secondary:visited {
  background: #ffffff;
  color: #111111 !important;
  border-color: #d0d0d0;
  box-shadow: none;
}

.beta-button-secondary:hover,
.beta-button-secondary:focus {
  background: #f6f6f6;
  color: #111111 !important;
  border-color: #111111;
  text-decoration: none;
}

@media (max-width: 640px) {
  .beta-shell {
    padding: 28px 16px;
  }

  .beta-card {
    padding: 32px 22px;
    border-radius: 22px;
  }

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

  .beta-button {
    width: 100%;
    min-width: 0;
  }
}

/*===============
 Beta
================*/


.beta-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.05), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f6f6 48%, #ffffff 100%);
}

.beta-page .container {
  max-width: 100% !important;
  padding: 0 !important;
}

.beta-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.beta-card {
  width: 100%;
  max-width: 520px;
  padding: 38px 30px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e7e7e7;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.08),
    0 4px 18px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
  text-align: center;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  background: #fafafa;
  border: 1px solid #dddddd;
  color: #111111;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beta-title {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #111111;
}

.beta-subtitle {
  margin: 0 auto 24px;
  max-width: 380px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 600;
}

.beta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.beta-label {
  font-size: 13px;
  font-weight: 800;
  color: #111111;
}

.beta-input {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  background: #ffffff;
  color: #111111;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  box-sizing: border-box;
}

.beta-input::placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.beta-input:focus {
  border-color: #111111;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.beta-button {
  margin-top: 6px;
  border: 1px solid #111111;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.01em;
  font-family: inherit;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.beta-button:hover {
  transform: translateY(-1px);
  background: #1d1d1d;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.15);
}

.beta-button:active {
  transform: translateY(0);
}

.beta-error {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #faf5f5;
  border: 1px solid #ead6d6;
  color: #8f2d2d;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 640px) {
  .beta-card {
    padding: 28px 18px 22px;
    border-radius: 22px;
  }

  .beta-title {
    font-size: 30px;
  }

  .beta-subtitle {
    font-size: 14px;
  }

  .beta-input,
  .beta-button {
    font-size: 16px;
  }
}

/*===============
Brand add item
================*/

.admin-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 16px;
}

.admin-item-layout {
  gap: 18px;
}

.admin-item-right {
  max-width: 560px;
}

.admin-item-preview-card {
  padding: 12px;
}

.admin-item-preview-image {
  border-radius: 14px;
}

.admin-input,
.admin-input-file,
.admin-input select,
textarea.admin-input {
  font-size: 14px;
  padding: 10px 12px;
}

textarea.admin-input {
  min-height: 120px;
}

.admin-button {
  font-size: 14px;
  padding: 10px 14px;
}

.admin-note.admin-note--aud {
  margin-top: 8px;
  padding: 10px 12px;
  font-size: 12.5px;
  line-height: 1.35;
  border-radius: 12px;
}

/*===============
Brand Annalytics
================*/

/*===============
 Brand Apply
================*/

.fd-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fd-label {
  font-weight: 800;
  font-size: 14px;
  margin-top: 6px;
}

.fd-input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fd-input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

textarea.fd-input {
  resize: vertical;
  min-height: 120px;
}

.fd-alert {
  background: #fff7f7;
  border: 1px solid rgba(220, 53, 69, 0.25);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.fd-form .btn-pill-primary {
  margin-top: 10px;
  align-self: flex-start;

  background: #111;
  color: #fff;
  border-color: #111;
}

.fd-form .btn-pill-primary:hover {
  background: #000;
  border-color: #000;
}

#submittedModal>div {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

#submittedModal h3 {
  font-size: 20px;
  font-weight: 900;
}

#submittedModal p {
  opacity: 0.8;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .fd-input {
    padding: 11px 12px;
  }
}


/*===============
 Brand Catagory View All
================*/

.viewall-page {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: 26px 0 44px;
}

.viewall-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.viewall-title {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.3px;
  font-weight: 900;
}

.viewall-subtitle {
  margin: 6px 0 0 0;
  opacity: 0.7;
  font-size: 14px;
}

.viewall-filters {
  margin-top: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(10px);

  position: relative;
  z-index: 50;
}

.viewall-grid {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.viewall-searchrow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
}

.viewall-searchwrap {
  flex: 1 1 520px;
  min-width: 260px;
}

.viewall-search-input {
  width: 100%;
  height: 44px;
  border-radius: 14px;
}

.viewall-search-btn,
.viewall-clear-btn {
  height: 40px;
}

.viewall-chiprow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}

.viewall-dd {
  position: relative;
  z-index: 60;
}

.viewall-dd>summary {
  list-style: none;
}

.viewall-dd>summary::-webkit-details-marker {
  display: none;
}

.viewall-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  height: 36px;
  padding: 7px 12px;

  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;

  font-weight: 800;
  font-size: 12.5px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  line-height: 1;
}

.viewall-dd>summary.viewall-chip::after {
  content: "▾";
  opacity: 0.7;
  font-size: 11px;
  transform: translateY(-1px);
}

.viewall-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  width: min(360px, 92vw);
  padding: 12px;

  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .12);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);

  z-index: 9999;
}

.viewall-panel-wide {
  width: min(520px, 92vw);
}

.viewall-dd-wide .viewall-panel-wide {
  left: auto;
  right: 0;
}

.viewall-panel-title {
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.viewall-select {
  width: 100%;
  height: 44px;
  border-radius: 14px;
}

.viewall-panel-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .viewall-page {
    width: calc(100% - 20px);
  }

  .viewall-title {
    font-size: 24px;
  }

  .viewall-panel {
    left: 0;
    right: auto;
  }

  .viewall-dd-wide .viewall-panel-wide {
    left: 0;
    right: auto;
  }
}

/*===============
 Brand Charts
================*/

.brand-charts-tabs {
  display: flex;
  gap: 10px;
  margin: 0 0 18px;
}

.brand-charts-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #111;
  font-weight: 700;
  opacity: .7;
  transition:
    background .15s ease,
    transform .12s ease,
    opacity .15s ease,
    border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.brand-charts-tab:hover {
  opacity: 1;
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.04);
}

.brand-charts-tab:active {
  transform: scale(0.97);
  background: rgba(0, 0, 0, 0.08);
}

.brand-charts-tab.is-active {
  opacity: 1;
  background: #111;
  color: #fff;
  border-color: #111;
}

.brand-charts-tab.is-active:active {
  background: #111;
}

.brand-charts-tab:focus {
  outline: none;
  box-shadow: none;
}

.brand-chart-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.brand-chart-row {
  display: grid;
  grid-template-columns: 64px 1fr 42px;
  gap: 14px;
  align-items: center;
  padding: 14px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  transition: background .15s ease;
  -webkit-tap-highlight-color: transparent;
}

.brand-chart-row:hover {
  background: rgba(0, 0, 0, .025);
}

.brand-chart-row.rank-1 {
  background: linear-gradient(to right, rgba(214, 177, 74, .10), transparent);
}

.brand-chart-row.rank-2 {
  background: linear-gradient(to right, rgba(199, 199, 199, .12), transparent);
}

.brand-chart-row.rank-3 {
  background: linear-gradient(to right, rgba(184, 115, 51, .12), transparent);
}

.brand-chart-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .14);
  font-weight: 900;
  background: #fff;
}

.brand-chart-row.rank-3 .brand-chart-number {
  width: 42px;
  height: 42px;
}

.brand-chart-row.rank-2 .brand-chart-number {
  width: 46px;
  height: 46px;
}

.brand-chart-row.rank-1 .brand-chart-number {
  width: 52px;
  height: 52px;
}


.brand-chart-row.rank-1 .brand-chart-number {
  background: #d6b14a;
  color: #1a1a1a;
}

.brand-chart-row.rank-2 .brand-chart-number {
  background: #c7c7c7;
  color: #1a1a1a;
}

.brand-chart-row.rank-3 .brand-chart-number {
  background: #b87333;
  color: #1a1a1a;
}

.brand-chart-brand {
  text-decoration: none;
  color: inherit;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

.brand-chart-brand-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-chart-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, .06), rgba(0, 0, 0, .02));
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.brand-chart-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-chart-avatar span {
  font-weight: 900;
  opacity: .6;
}

.brand-chart-text {
  min-width: 0;
}

.brand-chart-name {
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-chart-meta {
  font-size: 12px;
  opacity: .7;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trend {
  font-weight: 900;
  font-size: 16px;
}

.trend.up {
  color: #1f8b4c;
}

.trend.down {
  color: #c0392b;
}

.trend.flat {
  opacity: .45;
}

.brand-chart-row.is-empty {
  opacity: .45;
}


/*===============
 Brand Dashboard
================*/

.dashboard-page {
  padding: 32px 0;
}

.dashboard-header {
  margin-bottom: 22px;
}

.dashboard-title {
  font-size: 40px;
  margin: 0;
  letter-spacing: -0.6px;
  font-weight: 900;
}

.dashboard-subtitle {
  margin-top: 6px;
  opacity: 0.7;
  font-size: 15px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

.dashboard-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  position: relative;
  overflow: hidden;
}

.dashboard-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  border-color: rgba(0, 0, 0, 0.12);
}

.dashboard-card-title {
  margin: 0 0 8px 0;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.dashboard-card-text {
  margin: 0 0 14px 0;
  opacity: 0.72;
  line-height: 1.4;
  font-size: 14px;
}


.dashboard-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 14px;
  border-radius: 999px;

  font-weight: 800;
  font-size: 13px;
  text-decoration: none;

  color: #2b2b2b;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
}

.dashboard-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
  opacity: 1;
}

.dashboard-pill:disabled,
.dashboard-pill[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}


.dashboard-pill-primary {
  background: linear-gradient(135deg, #d6b14a, #c7a35b) !important;
  color: #1a1a1a !important;
  border: 1px solid rgba(0, 0, 0, 0.14);
  box-shadow: 0 8px 20px rgba(214, 177, 74, 0.22);
}

.dashboard-pill-primary:hover {
  box-shadow: 0 10px 26px rgba(214, 177, 74, 0.35);
}

.dashboard-upload-btn,
.dashboard-upload-btn:visited,
.dashboard-upload-btn:hover,
.dashboard-upload-btn:active {
  background: linear-gradient(135deg, #d6b14a, #c7a35b) !important;
  color: #1a1a1a !important;
}

.dashboard-pill-primary,
.dashboard-pill-primary:visited,
.dashboard-pill-primary:hover,
.dashboard-pill-primary:active,
.dashboard-upload-btn,
.dashboard-upload-btn:visited,
.dashboard-upload-btn:hover,
.dashboard-upload-btn:active {
  background: #111111 !important;
  color: #ffffff !important;
  border: 1px solid #111111 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.dashboard-pill-primary:hover,
.dashboard-upload-btn:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16) !important;
  transform: translateY(-1px);
}

/* =====================
   Brand Edit Product 
   ===================== */

.brand-edit-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.brand-edit-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 18px;
  margin-top: 8px;
}

.brand-edit-preview {
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.brand-edit-preview img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-edit-preview-empty {
  padding: 70px 14px;
  text-align: center;
  opacity: .6;
}

.brand-edit-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.brand-edit-colour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.brand-edit-check {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 12px;
  background: #fff;
}

.brand-edit-check input {
  transform: translateY(1px);
}

.brand-edit-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.brand-edit-archive {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

/* mobile */
@media (max-width: 860px) {
  .brand-edit-grid {
    grid-template-columns: 1fr;
  }

  .brand-edit-row-2 {
    grid-template-columns: 1fr;
  }

  .brand-edit-colour-grid {
    grid-template-columns: 1fr;
  }
}


/*===============
 Brand Manage Products
================*/

.bm-page {
  width: 100%;
  padding: 26px 18px;
}

.bm-shell {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.bm-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.bm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.bm-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

.bm-subtitle {
  margin: 6px 0 0 0;
  color: #666;
  font-size: 14px;
}

.bm-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 22px 0;
}

.bm-input {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  height: 40px;
}

.bm-search {
  flex: 1;
  min-width: 240px;
}

.bm-status {
  width: 180px;
}

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

@media (max-width: 1100px) {
  .bm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bm-grid {
    grid-template-columns: 1fr;
  }
}

.bm-item {
  border: 1px solid #eee;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.bm-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.bm-thumb {
  width: 78px;
  height: 78px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  flex: 0 0 78px;
}

.bm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bm-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 12px;
}

.bm-info {
  flex: 1;
  min-width: 0;
}

.bm-name {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
  word-break: break-word;
}

.bm-price {
  font-size: 14px;
  color: #444;
}

.bm-badges {
  margin-top: 8px;
}

.bm-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #f4f4f4;
  border: 1px solid #e6e6e6;
  color: #444;
}

.bm-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.bm-actions form {
  margin: 0;
}

.bm-page .btn-danger,
.bm-page .btn-danger:focus,
.bm-page .btn-danger:focus-visible,
.bm-page .btn-danger:active {
  box-shadow: none !important;
  outline: none !important;
}

.bm-page button:focus,
.bm-page button:focus-visible,
.bm-page a.btn-danger:focus,
.bm-page a.btn-danger:focus-visible {
  box-shadow: none;
}

/*===============
 Brand Page
================*/

/* BRAND FAVOURITE STAR */

.brand-fav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #e6e6e6;
  background: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.brand-fav-btn:hover {
  transform: scale(1.05);
  border-color: var(--profile-accent);
}

.brand-fav-btn.is-on {
  color: white;
  background: var(--profile-accent);
  border-color: var(--profile-accent);
}

/*===============
 Brand Set Password
================*/

.fd-auth {
  padding: 36px 16px;
  display: flex;
  justify-content: center;
}

.fd-auth-card {
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.fd-auth-header {
  padding: 22px 22px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .75));
}

.fd-auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .8);
}

.fd-auth-title {
  margin: 10px 0 6px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.fd-auth-subtitle {
  margin: 0 0 6px;
  opacity: .8;
}

.fd-auth-form {
  padding: 18px 22px 22px;
}

.fd-field {
  margin: 14px 0;
}

.fd-label {
  display: block;
  font-weight: 800;
  margin: 0 0 8px;
}

.fd-help {
  margin-top: 8px;
  font-size: 13px;
  opacity: .75;
}

.fd-input-wrap {
  position: relative;
}

.fd-input {
  width: 100%;
  padding: 12px 44px 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(255, 255, 255, .92);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

.fd-input:focus {
  border-color: rgba(0, 0, 0, .28);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .06);
}

.fd-input-action {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(255, 255, 255, .85);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer;
}

.fd-input-action:hover {
  filter: brightness(.98);
}

.fd-alert {
  margin: 16px 22px 0;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .85);
  display: grid;
  gap: 4px;
}

.fd-alert strong {
  font-weight: 900;
}

.fd-alert--error {
  border-color: rgba(176, 0, 32, .22);
  background: rgba(176, 0, 32, .06);
}

.fd-auth-submit {
  width: 100%;
  margin-top: 10px;
}

.fd-auth-actions {
  padding: 16px 22px 22px;
}

.fd-auth-footnote {
  margin: 14px 0 0;
  font-size: 12.5px;
  opacity: .7;
  line-height: 1.4;
}

.fd-input,
.fd-input-action {
  box-sizing: border-box;
}

.fd-input {
  height: 54px;
  padding: 0 92px 0 16px;
  font-size: 16px;
  line-height: 1.2;
}

.fd-input::placeholder {
  opacity: .65;
}

.fd-input-action {
  height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.fd-input {
  border-radius: 14px;
}

.fd-auth {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  background: #fafafa;
}

.fd-auth-card {
  width: 100%;
  max-width: 620px;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.brand-terms-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 18px 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.brand-terms-check input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.brand-terms-check a {
  text-decoration: underline !important;
  font-weight: 600;
}

/*===============
 Brand Settings
================*/

.settings-page.container {
  max-width: 980px;
  padding: 28px 16px;
}

.settings-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(176, 86, 142, 0.18);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(176, 86, 142, 0.10);
  padding: 22px 18px;
}

.settings-header {
  margin-bottom: 18px;
}

.settings-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #3a2430;
}

.settings-subtitle {
  margin: 8px 0 0 0;
  color: rgba(58, 36, 48, 0.72);
  font-size: 14px;
}

.settings-form {
  display: block;
}

.settings-block {
  padding: 14px 0;
}

.settings-block-head {
  margin-bottom: 12px;
}

.settings-section-title {
  margin: 0 0 6px 0;
  font-size: 16px;
  color: #3a2430;
}

.form-help {
  margin: 0;
  font-size: 13px;
  color: rgba(58, 36, 48, 0.68);
}

.settings-divider {
  border: 0;
  height: 1px;
  background: rgba(176, 86, 142, 0.12);
  margin: 4px 0;
}

.settings-logo-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
}

.settings-avatar-shell {
  width: 128px;
  height: 128px;
  border-radius: 22px;
  border: 1px solid rgba(176, 86, 142, 0.18);
  background: rgba(247, 196, 217, 0.18);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.settings-avatar-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.settings-avatar-placeholder {
  font-weight: 800;
  font-size: 44px;
  color: rgba(58, 36, 48, 0.72);
  display: grid;
  place-items: center;
}

.settings-logo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.settings-image-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(176, 86, 142, 0.22);
  background: rgba(255, 255, 255, 0.8);
  color: #3a2430;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.settings-image-upload-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(176, 86, 142, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.settings-image-upload-button input[type="file"] {
  display: none;
}

.settings-field {
  display: grid;
  gap: 8px;
  max-width: 560px;
}

.settings-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(58, 36, 48, 0.78);
}

.settings-input,
.settings-textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(176, 86, 142, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: #2f1e27;
  outline: none;
  transition: box-shadow 120ms ease, border-color 120ms ease;
}

.settings-textarea {
  resize: vertical;
  min-height: 110px;
}

.settings-input:focus,
.settings-textarea:focus {
  border-color: rgba(176, 86, 142, 0.35);
  box-shadow: 0 0 0 4px rgba(247, 196, 217, 0.35);
}

.settings-color-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.settings-color-input {
  width: 46px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(176, 86, 142, 0.22);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.settings-color-value {
  font-size: 13px;
  font-weight: 800;
  color: rgba(58, 36, 48, 0.70);
}

.settings-buttons {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.settings-save-btn.btn-primary {
  border: 1px solid rgba(176, 86, 142, 0.25);
  background: linear-gradient(135deg, #f7c4d9, #e9a8c3);
  color: #4a2a38;
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(176, 86, 142, 0.14);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.settings-save-btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(176, 86, 142, 0.18);
}

.settings-cancel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(176, 86, 142, 0.22);
  background: rgba(255, 255, 255, 0.85);
  color: #3a2430;
  font-weight: 800;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.settings-cancel-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(176, 86, 142, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

@media (max-width: 700px) {
  .settings-logo-row {
    grid-template-columns: 1fr;
  }

  .settings-avatar-shell {
    width: 120px;
    height: 120px;
  }
}

/*===============
 Brand 
================*/

/*===============
  Brands
================*/

.fn-featured-brands {
  margin-top: -70px !important;
}

.fn-featured-scroll {
  overflow-x: auto;
  padding-bottom: 4px;
  margin: 0 -16px;
}

.fn-featured-scroll::-webkit-scrollbar {
  height: 6px;
}

.fn-featured-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.fn-featured-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 999px;
}

.fn-featured-track {
  display: flex;
  gap: 12px;
  padding: 4px 16px 10px;
}

.fn-featured-pill {
  min-width: 180px;
  max-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #ecdeef;
  text-decoration: none;
  color: #343737;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.14s ease,
    background-color 0.14s ease;
}

.fn-featured-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: #f1aad1;
  background: #fff7fc;
}

.fn-featured-pill-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #faf7fb;
  border: 1px solid #ecdeef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.fn-featured-pill-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fn-featured-pill-initial {
  font-size: 18px;
  font-weight: 600;
  color: #343737;
}

.fn-featured-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fn-featured-pill-name {
  font-size: 13px;
  font-weight: 600;
}

.fn-featured-pill-tagline {
  font-size: 11px;
  color: #777;
}

.fn-featured-viewall {
  border-style: dashed;
  border-color: #f1aad1;
  background: #fff0f7;
}

.fn-featured-viewall .fn-featured-pill-avatar {
  background: #f1aad1;
  border-color: #f1aad1;
}

.fn-featured-viewall .fn-featured-pill-initial {
  color: #ffffff;
}

.fn-all-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.fn-all-brand-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 12px;
  border-radius: 16px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #ecdeef;
  color: #343737;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    border-color 0.14s ease;
}

.fn-all-brand-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  border-color: #f1aad1;
}

.fn-all-brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: #faf7fb;
  border: 1px solid #ecdeef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 8px;
}

.fn-all-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fn-all-brand-initial {
  font-size: 24px;
  font-weight: 600;
}

.fn-all-brand-name {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.fn-all-brand-bio {
  font-size: 12px;
  color: #777;
  text-align: center;
  margin-top: 4px;
}

.brands-page {
  padding-bottom: 30px;
}

.brands-header {
  margin: 10px 0 18px;
}

.brands-title {
  margin: 0;
}

.brands-subtitle {
  margin: 6px 0 0;
  opacity: .75;
}

.brands-featured {
  margin-bottom: 18px;
}

.brands-section-title {
  margin: 0 0 10px;
}

.brands-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

@media (max-width: 820px) {
  .brands-top-row {
    grid-template-columns: 1fr;
  }
}

.brands-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brands-pill {
  text-decoration: none;
}

.brands-search {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 6px 0 14px;
}

.brands-search-input {
  margin: 0;
  flex: 1;
}

.brands-clear {
  text-decoration: none;
}

.brands-az {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.brands-az-link {
  text-decoration: none;
  padding: 6px 10px;
}

.brands-az-link.is-disabled {
  opacity: .35;
  pointer-events: none;
}

.brands-letter {
  margin: 18px 0 22px;
}

.brands-letter-title {
  margin: 0 0 10px;
}

.brands-featured-card {
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.brands-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.brands-logo {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, .05);
  flex: 0 0 auto;
}

.brands-logo.lg {
  width: 64px;
  height: 64px;
}

.brands-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brands-name {
  font-weight: 700;
}

.brands-name.center {
  text-align: center;
  font-weight: 650;
}

.brands-bio {
  opacity: .75;
  font-size: 14px;
  margin-top: 2px;
}

.brands-empty {
  opacity: .75;
}

.brands-top-row--hype {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0 18px;
}

@media (max-width: 860px) {
  .brands-top-row--hype {
    grid-template-columns: 1fr;
  }
}

.brands-hype-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(240, 230, 239, 1);
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.brands-hype-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .10);
  border-color: rgba(255, 79, 163, .35);
}

.brands-hype-inner {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brands-hype-left {
  min-width: 0;
}

.brands-hype-kicker {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, .45);
  margin-bottom: 4px;
}

.brands-hype-title {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.2px;
  line-height: 1.1;
}

.brands-hype-subtitle {
  margin: 6px 0 0;
  font-size: 13px;
  color: #7b5b6e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 360px;
}

.brands-hype-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brands-hype-chip {
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(255, 255, 255, .75);
  backdrop-filter: blur(10px);
}

.brands-hype-cta {
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .2px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  white-space: nowrap;
}

.brands-hype-card--top {
  background:
    radial-gradient(520px 160px at 10% 0%, rgba(255, 79, 163, .18), transparent 60%),
    radial-gradient(520px 160px at 100% 55%, rgba(255, 210, 232, .26), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 245, 250, 1));
}

.brands-hype-card--trend {
  background:
    radial-gradient(520px 160px at 10% 0%, rgba(90, 45, 182, .14), transparent 60%),
    radial-gradient(520px 160px at 100% 55%, rgba(229, 215, 255, .30), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 245, 255, 1));
}

.brands-hype-sheen {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .55) 38%, transparent 55%);
  transform: translateX(-40%);
  opacity: .35;
}

.brands-hype-card:hover .brands-hype-sheen {
  opacity: .45;
  transform: translateX(12%);
  transition: transform .55s ease, opacity .25s ease;
}

/*===============
 Collection
================*/

/*===============
 Create Collection
================*/

.create-collection-page,
.create-collection-page *,
.create-collection-page *::before,
.create-collection-page *::after {
  box-sizing: border-box;
}

.create-collection-page {
  padding-top: 18px;
  padding-bottom: 28px;
}

.cc-card {
  width: 100%;
  max-width: 760px;
  margin: 24px auto;
  overflow: hidden;

  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.cc-head {
  margin-bottom: 16px;
}

.cc-title {
  margin: 0;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #111;
}

.cc-subtitle {
  margin: 8px 0 0;
  color: rgba(0, 0, 0, .62);
  font-size: 14px;
  line-height: 1.45;
  max-width: 62ch;
}

.cc-form {
  display: grid;
  gap: 14px;
  margin-top: 14px;
  min-width: 0;
}

.cc-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.cc-label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(0, 0, 0, .78);
}

.cc-optional {
  font-weight: 700;
  color: rgba(0, 0, 0, .45);
  font-size: 12px;
}

.cc-input,
.cc-textarea {
  width: 100%;
  max-width: 100%;
  display: block;

  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, 0.98);

  padding: 12px 14px;
  font-size: 15px;
  color: #111;

  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .10s ease;
}

.cc-textarea {
  resize: vertical;
  min-height: 92px;
  overflow-x: hidden;
  word-break: break-word;
}

.cc-input::placeholder,
.cc-textarea::placeholder {
  color: rgba(0, 0, 0, .38);
}

.cc-input:focus,
.cc-textarea:focus {
  border-color: rgba(0, 0, 0, .22);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .06);
}

.cc-divider {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, .08);
  margin: 6px 0;
}

.cc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  padding: 14px 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(0, 0, 0, .02);
  border-radius: 16px;

  min-width: 0;
}

.cc-toggle-left {
  min-width: 0;
}

.cc-toggle-title {
  font-size: 14px;
  font-weight: 900;
  color: #111;
  margin: 0;
}

.cc-help {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0, 0, 0, .60);
  max-width: 60ch;
}

.cc-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;
  width: 50px;
  height: 30px;
}

.cc-switch input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.cc-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 999px;

  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(0, 0, 0, .10);

  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.cc-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;

  width: 24px;
  height: 24px;
  border-radius: 999px;

  transform: translateY(-50%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .12);

  transition: left .18s ease, transform .12s ease;
}

.cc-switch input:checked+.cc-slider {
  background: #111;
  border-color: rgba(0, 0, 0, .22);
}

.cc-switch input:checked+.cc-slider::after {
  left: 23px;
}

.cc-switch input:focus-visible+.cc-slider {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .10);
}

.cc-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
}

.cc-primary {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.cc-cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 14px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: rgba(0, 0, 0, .70);

  text-decoration: none;
  font-weight: 800;

  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.cc-cancel:hover {
  border-color: rgba(0, 0, 0, .18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  transform: translateY(-1px);
  color: #111;
}

.cc-cancel:active {
  transform: translateY(0);
}

@media (max-width: 560px) {
  .cc-card {
    padding: 18px;
  }

  .cc-title {
    font-size: 24px;
  }

  .cc-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-cancel {
    width: 100%;
  }
}

/*===============
 Edit Brand
================*/

.admin-edit-page {
  max-width: 720px;
  margin: 28px auto 60px;
  padding: 0 14px;
}

.admin-title {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.admin-edit-form {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.admin-edit-form label {
  display: block;
  margin: 14px 0 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(0, 0, 0, 0.82);
}

.admin-edit-form input[type="text"],
.admin-edit-form textarea,
.admin-edit-form input[type="file"] {
  width: 100%;
  box-sizing: border-box;
}

.admin-edit-form input[type="text"],
.admin-edit-form textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(250, 250, 252, 1);
  color: #111;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.admin-edit-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.45;
}

.admin-edit-form input[type="text"]:focus,
.admin-edit-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.22);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.admin-edit-logo-wrapper {
  margin: 10px 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 92px;
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(250, 250, 252, 1);
  overflow: hidden;
}

.admin-edit-logo-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.admin-colour-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.admin-colour-row input[type="color"] {
  width: 56px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.admin-colour-row input[type="text"] {
  flex: 1 1 220px;
}

.admin-edit-form input[type="file"] {
  padding: 10px 0 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.70);
}

.admin-edit-page .admin-button {
  margin-top: 18px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #111;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.admin-button:hover {
  filter: brightness(1.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

.admin-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.admin-help {
  margin: 6px 0 0;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.62);
}

/*===============
 Edit Collection
================*/

.ec-page {
  max-width: 920px;
}

.ec-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin: 18px 0 14px;
}

.ec-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ec-subtitle {
  margin: 6px 0 0;
  opacity: .75;
  max-width: 70ch;
}

.ec-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
  margin: 14px 0;
}

.ec-card-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.ec-h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.ec-form {
  display: grid;
  gap: 14px;
}

.ec-field {
  display: grid;
  gap: 8px;
}

.ec-label {
  font-weight: 800;
  font-size: 13px;
  opacity: .9;
}

.ec-optional {
  font-weight: 700;
  opacity: .6;
  margin-left: 6px;
}

.ec-input,
.ec-textarea,
.ec-role {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
}

.ec-textarea {
  resize: vertical;
  min-height: 110px;
}

.ec-input:focus,
.ec-textarea:focus,
.ec-role:focus {
  border-color: rgba(0, 0, 0, .20);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .06);
}

.ec-help {
  margin: 0;
  font-size: 13px;
  opacity: .75;
  line-height: 1.35;
}

.ec-divider {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, .08);
  margin: 2px 0;
}

.ec-toggles {
  display: grid;
  gap: 10px;
}

.ec-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: rgba(0, 0, 0, .02);
}

.ec-toggle-left {
  display: grid;
  gap: 3px;
}

.ec-toggle-title {
  font-weight: 900;
  font-size: 14px;
}

.ec-toggle-help {
  font-size: 13px;
  opacity: .72;
  line-height: 1.3;
  max-width: 60ch;
}

.ec-toggle input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.ec-cover-preview {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.ec-cover-meta {
  font-size: 12px;
  opacity: .7;
  font-weight: 700;
}

.ec-cover-preview img {
  width: 260px;
  max-width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, .10);
  display: block;
}

.ec-share-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.ec-share-input {
  max-width: 560px;
}

.ec-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2px;
}

.ec-collab-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.ec-role {
  max-width: 180px;
}

.ec-collab-list {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.ec-collab-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 14px;
  background: #fff;
}

.ec-collab-left {
  display: grid;
  gap: 2px;
}

.ec-collab-name {
  font-weight: 900;
}

.ec-collab-meta {
  font-size: 13px;
  opacity: .7;
}

.ec-card--danger {
  border-color: rgba(0, 0, 0, .10);
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(255, 255, 255, 1));
}

@media (max-width: 560px) {
  .ec-title {
    font-size: 28px;
  }

  .ec-head {
    flex-direction: column;
  }
}

.btn-pill-danger {
  background: linear-gradient(180deg, #ff4d6d, #e0314f);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, .10);
  font-weight: 900;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(224, 49, 79, 0.35);
  transition: transform .12s ease,
    box-shadow .12s ease,
    filter .12s ease;
}

.btn-pill-danger:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 14px 28px rgba(224, 49, 79, 0.45);
}

.btn-pill-danger:active {
  transform: translateY(0);
  filter: brightness(.98);
  box-shadow: 0 8px 18px rgba(224, 49, 79, 0.35);
}


/*===============
 Edit Item
================*/

/*===============
 Edit Profile
================*/

/* --- EP (Edit Profile) specific styles --- */

.ep-page {
  padding-top: 18px;
  padding-bottom: 40px;
}

.ep-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
  padding: 18px;
}

.ep-page .ep-card * {
  box-sizing: border-box;
}

.ep-header {
  margin: 0 0 14px 0;
}

.ep-title {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.ep-subtitle {
  margin: 6px 0 0 0;
  opacity: .75;
}

.ep-form {
  display: block;
  margin: 0;
}

.ep-block {
  padding: 10px 0;
  margin: 0;
}

.ep-block-head {
  margin: 0 0 8px 0;
}

.ep-h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.ep-help {
  margin: 4px 0 0 0;
  font-size: 13px;
  opacity: .72;
  line-height: 1.35;
}

.ep-rule {
  height: 1px;
  background: rgba(0, 0, 0, .08);
  margin: 8px 0;
}

.ep-avatar-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: start;
}

.ep-avatar-shell {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  overflow: hidden;
  background: #f3f3f3;
  border: 1px solid rgba(0, 0, 0, .10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ep-avatar-inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform .12s ease;
}

.ep-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 28px;
  color: rgba(0, 0, 0, .55);
}

.ep-avatar-controls {
  display: grid;
  gap: 10px;
}

.ep-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
  width: fit-content;
}

.ep-upload input {
  display: none;
}

.ep-zoom {
  display: grid;
  gap: 6px;
  max-width: 360px;
}

.ep-zoom-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  opacity: .85;
}

.ep-zoom-value {
  opacity: .7;
  font-weight: 800;
}

.ep-mini-note {
  margin: 0;
  font-size: 12px;
  opacity: .65;
}

.ep-input,
.ep-textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: #fff;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
}

.ep-textarea {
  resize: vertical;
  min-height: 88px;
}

.ep-input:focus,
.ep-textarea:focus {
  border-color: rgba(0, 0, 0, .22);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .06);
}

.ep-textarea-wrap {
  position: relative;
}

.ep-counter {
  margin-top: 6px;
  font-size: 12px;
  opacity: .65;
  text-align: right;
}

.ep-color-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ep-color {
  width: 54px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 12px;
  padding: 0;
  background: transparent;
}

.ep-color-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ep-color-chip {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #f7c4d9;
}

.ep-color-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  opacity: .75;
}

.ep-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding-top: 6px;
}

.ep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .10);
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.ep-btn-primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

.ep-btn-ghost {
  background: #fff;
  color: #111;
}

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

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

@media (max-width: 640px) {
  .ep-card {
    padding: 14px;
  }

  .ep-avatar-row {
    grid-template-columns: 78px 1fr;
  }

  .ep-avatar-shell {
    width: 78px;
    height: 78px;
  }
}

/* --- Keep latest Settings System (lowest version) --- */

.settings-page,
.settings-page * {
  box-sizing: border-box;
}

.settings-page {
  padding: 28px 16px 56px;
}

.settings-card {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;

  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.10),
    0 2px 10px rgba(0, 0, 0, 0.05);

  padding: 28px;
  backdrop-filter: blur(10px);
}

.settings-card>.settings-title {
  margin: 0 0 6px;
  font-family: var(--font-logo, var(--font-display, system-ui));
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.86);

  text-transform: none;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.settings-card>.settings-subtitle {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.60);
}

.settings-section {
  margin-top: 16px;
  padding: 18px 18px 20px;

  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.70);
}

.settings-section+.settings-section {
  margin-top: 14px;
}

.settings-section .settings-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.74);
}

.settings-section .settings-subtitle {
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.58);
}

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

.auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.60);
  margin: 0 0 6px;
}

.auth-field input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;

  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(0, 0, 0, 0.86);

  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.auth-field input::placeholder {
  color: rgba(0, 0, 0, 0.38);
}

.auth-field input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.password-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.pw-toggle {
  padding: 12px 12px;
  border-radius: 12px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.03);
  color: rgba(0, 0, 0, 0.72);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.pw-toggle:hover {
  background: rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.btn-primary {
  margin-top: 6px;
  width: fit-content;

  padding: 14px 18px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #111;
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
}

.settings-section.danger {
  border-color: rgba(220, 20, 60, 0.22);
  background: rgba(220, 20, 60, 0.03);
}

.settings-section.danger .settings-title {
  color: rgba(220, 20, 60, 0.86);
}

.btn-danger {
  margin-top: 6px;
  width: fit-content;

  padding: 14px 18px;
  border-radius: 999px;

  border: 1px solid rgba(220, 20, 60, 0.40);
  background: rgba(220, 20, 60, 0.92);
  color: #fff;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;
  box-shadow: 0 18px 44px rgba(220, 20, 60, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 54px rgba(220, 20, 60, 0.26);
  filter: saturate(1.05);
}

@media (max-width: 640px) {
  .settings-card {
    padding: 18px;
    border-radius: 18px;
  }

  .settings-section {
    padding: 14px;
    border-radius: 16px;
  }

  .password-wrap {
    grid-template-columns: 1fr;
  }

  .pw-toggle,
  .btn-primary,
  .btn-danger {
    width: 100%;
    justify-self: stretch;
  }
}


/*===============
 Explore
================*/

.explore-hero {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 24px 22px 26px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff5fb, #f7f3ff);
  border: 1px solid #ecdeef;
}

.explore-hero-slider {
  position: relative;
  min-height: 150px;
}

.explore-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.explore-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.explore-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid #e3ccd6;
  color: #7a5865;
  background: #fff;
  margin-bottom: 8px;
}

.explore-slide h1 {
  margin: 0;
  font-size: clamp(26px, 4vw, 32px);
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.explore-subtitle {
  margin-top: 8px;
  max-width: 520px;
  font-size: 14px;
  color: #555;
}

.explore-hero-dots {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 18px;
}

.explore-hero-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: #d6c5de;
  padding: 0;
  cursor: pointer;
}

.explore-hero-dots .dot.is-active {
  width: 18px;
  background: #c47ca0;
}

@media (max-width: 600px) {
  .explore-hero {
    padding: 20px 16px 22px;
  }

  .explore-subtitle {
    max-width: 100%;
  }
}

:is(.fn-explore-category-grid, .fd-explore-category-grid) {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

:is(.fn-category-card, .fd-category-card) {
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #ecdeef;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

:is(.fn-category-card, .fd-category-card):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  border-color: #d5b7e3;
}

:is(.fn-category-thumb, .fd-category-thumb) {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}

:is(.fn-category-label, .fd-category-label) {
  padding: 8px 10px 10px;
  font-size: 13px;
  font-weight: 500;
  color: #222;
}

:is(.fn-cat-dresses .fn-category-thumb, .fd-cat-dresses .fd-category-thumb) {
  background-image: linear-gradient(135deg, #ffd6e9, #f7bfe8);
}

:is(.fn-cat-tops .fn-category-thumb, .fd-cat-tops .fd-category-thumb) {
  background-image: linear-gradient(135deg, #ffe9c7, #ffd0a6);
}

:is(.fn-cat-bottoms .fn-category-thumb, .fd-cat-bottoms .fd-category-thumb) {
  background-image: linear-gradient(135deg, #cfe9ff, #9fd1ff);
}

:is(.fn-cat-outerwear .fn-category-thumb, .fd-cat-outerwear .fd-category-thumb) {
  background-image: linear-gradient(135deg, #d8f0e7, #a9dbc5);
}

:is(.fn-cat-jewellery .fn-category-thumb, .fd-cat-jewellery .fd-category-thumb) {
  background-image: linear-gradient(135deg, #fdf4d8, #f7e0a1);
}

:is(.fn-cat-shoes .fn-category-thumb, .fd-cat-shoes .fd-category-thumb) {
  background-image: linear-gradient(135deg, #f3ddff, #dfb5ff);
}

:is(.fn-cat-bags .fn-category-thumb, .fd-cat-bags .fd-category-thumb) {
  background-image: linear-gradient(135deg, #ffe8dd, #ffc4a0);
}

:is(.fn-cat-swim .fn-category-thumb, .fd-cat-swim .fd-category-thumb) {
  background-image: linear-gradient(135deg, #ffe8dd, #ffc4a0);
}

:is(.fn-cat-accessories .fn-category-thumb, .fd-cat-accessories .fd-category-thumb) {
  background-image: linear-gradient(135deg, #fbe7ff, #e5c8ff);
}

:is(.fn-cat-intimates .fn-category-thumb, .fd-cat-intimates .fd-category-thumb) {
  background-image: linear-gradient(135deg, #ffdce8, #ffb7cf);
}

:is(.fn-cat-sleep .fn-category-thumb, .fd-cat-sleep .fd-category-thumb) {
  background-image: linear-gradient(135deg, #e6e9ff, #d0d6ff);
}

.explore-page {
  padding-top: 18px;
  padding-bottom: 40px;
}

.explore-page .explore-head {
  margin: 6px 0 18px;
}

.explore-page .explore-title {
  margin: 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.explore-page .explore-subtitle {
  margin: 8px 0 0;
  opacity: 0.75;
  max-width: 70ch;
}

.explore-page .explore-section {
  margin-top: 22px;
}

.explore-page .explore-section-head {
  margin-bottom: 12px;
}

.explore-page .explore-h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.explore-page .explore-muted {
  margin: 6px 0 0;
  opacity: 0.7;
}

.explore-page .explore-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

@media (max-width: 1200px) {
  .explore-page .explore-cat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .explore-page .explore-cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.explore-page .explore-cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.explore-page .explore-cat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

.explore-page .explore-cat-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #f2f2f2;
  overflow: hidden;
}

.explore-page .explore-cat-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.18s ease, filter 0.18s ease;
  filter: saturate(1.02) contrast(1.02);
}

.explore-page .explore-cat-card:hover .explore-cat-media img {
  transform: scale(1.06);
}

.explore-page .explore-cat-fallback {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #f6f6f6, #eeeeee);
}

.explore-page .explore-cat-label {
  padding: 10px 12px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.explore-page .explore-cat-label::after {
  content: "→";
  opacity: 0.55;
  font-weight: 900;
}

.explore-page .explore-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;

  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  position: relative;
  z-index: 30;
}

.explore-page .explore-filters-section {
  position: relative;
  z-index: 30;
}

.explore-page .filter-pill {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.explore-page .filter-pill>label {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.7;
}

.explore-page .filter-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.explore-page .chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.explore-page .chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.explore-page .chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.95);
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.explore-page .chip input:checked+span {
  border-color: rgba(0, 0, 0, 0.22);
  background: rgba(0, 0, 0, 0.06);
}

.explore-page .chip span:hover {
  transform: translateY(-1px);
}

.explore-page details.filter-dd {
  position: relative;
  z-index: 40;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.92);
  overflow: visible;
}

.explore-page details.filter-dd[open] {
  z-index: 50;
}

.explore-page details.filter-dd>summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.explore-page details.filter-dd>summary::-webkit-details-marker {
  display: none;
}

.explore-page details.filter-dd>summary::after {
  content: "▾";
  opacity: 0.7;
  font-weight: 900;
}

.explore-page details.filter-dd[open]>summary::after {
  content: "▴";
}

.explore-page .filter-panel {
  position: absolute;
  z-index: 999;
  top: calc(100% + 10px);
  left: 0;

  min-width: 220px;
  max-height: 320px;
  overflow: auto;

  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
}

.explore-page .check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.explore-page .check:hover {
  background: rgba(0, 0, 0, 0.04);
}

.explore-page .check input {
  width: 16px;
  height: 16px;
}

.explore-page .filter-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;

  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.10);
  color: #111;

  transition: transform 0.12s ease, background 0.12s ease;
}

.explore-page .filter-clear:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.08);
}

.explore-page .fd-feed-grid {
  column-count: 4;
  column-gap: 16px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .explore-page .fd-feed-grid {
    column-count: 3;
  }
}

@media (max-width: 800px) {
  .explore-page .fd-feed-grid {
    column-count: 2;
  }
}

@media (max-width: 520px) {
  .explore-page .fd-feed-grid {
    column-count: 1;
  }
}

.explore-page .fd-feed-card {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 16px;
  position: relative;
  z-index: 0;
}

.explore-page .fd-feed-card-image-wrapper {
  overflow: hidden;
  border-radius: 18px;
}

.explore-page .fd-feed-card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.explore-page .fd-like-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.explore-page .fd-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.explore-page .fd-like-count {
  font-size: 12px;
  font-weight: 800;
  opacity: 0.85;
}

.explore-page .infinite-loader {
  text-align: center;
  padding: 14px 0;
  opacity: 0.75;
  font-weight: 700;
}

.explore-empty {
  border: 1px solid #eee3ef;
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  text-align: center;
}

.explore-empty-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 6px;
}

.explore-empty-sub {
  color: #7b5b6e;
  font-size: 14px;
  margin-bottom: 16px;
}

.explore-empty-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/*===============
 Followers List
================*/

.follow-page {
  max-width: 640px;
  margin: 2rem auto;
}

.follow-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.follow-title {
  font-size: 1.6rem;
  margin: 0;
}

.follow-subtitle {
  margin: 0.25rem 0 0;
  color: #777;
  font-size: 0.95rem;
}

.follow-back-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #555;
}

.follow-back-link:hover {
  text-decoration: underline;
}

.follow-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.follow-list-item {
  margin: 0;
}

.follow-user-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  color: inherit;
}

.follow-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.follow-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.follow-user-text {
  display: flex;
  flex-direction: column;
}

.follow-name {
  font-weight: 600;
  font-size: 0.98rem;
}

.follow-username {
  font-size: 0.86rem;
  color: #777;
}

.follow-empty {
  color: #777;
  margin-top: 1rem;
}


/*===============
 Forgot Password
================*/

/*===============
Index HTML
================*/

.home-hero--landing .home-hero-title {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  text-transform: lowercase;

  font-family: var(--font-logo);

  font-size: clamp(24px, 3vw, 38px);
  font-weight: 400;

  letter-spacing: -0.01em;

  line-height: 1.18;

  color: rgba(0, 0, 0, 0.66);

  margin: 28px 0 16px;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.fn-search-bar {
  width: 100%;
  max-width: 880px;
  margin: 14px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.fn-search-bar input {
  flex: 1;
  min-width: 420px;
  padding: 18px 22px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;

  font-size: 17px;
  font-weight: var(--fw-regular);
  color: #111;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.fn-search-bar input::placeholder {
  color: rgba(0, 0, 0, 0.42);
  font-weight: var(--fw-regular);
}

.fn-search-bar input:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.28);
  box-shadow:
    0 0 0 5px rgba(0, 0, 0, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

.fn-search-bar button {
  flex: 0 0 auto;
  padding: 16px 20px;
  border-radius: 999px;

  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #111;
  color: #fff;

  font-weight: var(--fw-semibold);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.fn-search-bar button:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.20);
}

.home-hero--landing {
  margin-bottom: 26px;
}

@media (max-width: 720px) {
  .fn-search-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .fn-search-bar input {
    min-width: 0;
    width: 100%;
  }

  .fn-search-bar button {
    width: 100%;
  }
}

.home-hero .fd-search-bar {
  max-width: 640px;
  margin: 20px auto 10px;
}

.home-hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 18px;
}

.home-hero-logo {
  display: block;
  width: min(120px, 30vw);
  height: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.home-hero-wordmark {
  font-family: var(--font-logo);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.5;
  font-size: 24px;
  color: #111111;
}

/*===============
 Item HTML
================*/

.item-page {
  max-width: 1040px;
  margin: 40px auto 80px;
}

.item-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.item-media {
  flex: 1 1 50%;
}

.item-main-image {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

.item-image-placeholder {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  background: #f3f3f5;
}

.item-main {
  flex: 1 1 50%;
}

.item-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 8px;
}

.item-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  text-decoration: none;
  color: inherit;
}

.item-brand-row:hover .item-brand-name {
  text-decoration: underline;
}

.item-brand-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
}

.item-brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-brand-name {
  font-size: 14px;
}

.item-price {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.item-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.item-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.item-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.item-action-count {
  font-size: 13px;
  color: #555;
}

.item-collections-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
}

.item-collections-form select {
  border-radius: 999px;
  border: 1px solid #e1e1e6;
  padding: 6px 12px;
  font-size: 13px;
}

.item-comments {
  margin-top: 40px;
}

.item-section-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.item-empty-state {
  font-size: 13px;
  color: #777;
}

.it-page {
  padding-top: 26px;
  padding-bottom: 60px;
}

.it-hero {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 18px;
  align-items: start;
}

@media (max-width: 980px) {
  .it-hero {
    grid-template-columns: 1fr;
  }
}

.it-media-card {
  border-radius: 16px;
  overflow: hidden;
}

.it-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.it-img-fallback {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, #f6f6f6, #ececec);
}

.it-buy {
  position: sticky;
  top: 22px;
}

@media (max-width: 980px) {
  .it-buy {
    position: static;
  }
}

.it-buy-card {
  border-radius: 16px;
  padding: 22px 20px 18px;
}

.it-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;

  font-size: 12px;
  font-weight: 900;
  opacity: 0.65;
  margin-bottom: 12px;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.it-toplink {
  text-decoration: none;
  color: inherit;
}

.it-toplink:hover {
  text-decoration: underline;
}

.it-dot {
  opacity: 0.5;
}

.it-title {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.015em;
}

.it-brand {
  display: flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;
  color: inherit;

  margin: 0 0 14px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 0;
}

.it-brand:hover {
  text-decoration: underline;
}

.it-brand-avatar {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  overflow: hidden;
  background: #f3f3f3;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.it-brand-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.it-brand-letter {
  font-weight: 950;
  opacity: 0.7;
}

.it-brand-name {
  font-weight: 900;
}

.it-brand-arrow {
  display: none;
}

.it-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin: 10px 0 10px;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.it-price {
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.it-like-mini form {
  margin: 0;
}

.it-like-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 7px 10px;

  cursor: pointer;
  text-decoration: none;
  color: inherit;
  font-weight: 950;
}

.it-like-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.it-like-btn.is-on {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.22);
  color: #111;
}

.it-like-count {
  font-size: 12px;
  opacity: 0.7;
}

.it-desc {
  margin: 14px 0 18px;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.88;
}

.it-actions {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.it-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 950;

  border: 1px solid #111 !important;
  background: #111 !important;
  color: #fff !important;

  box-shadow: none !important;

  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.it-buy-btn:hover {
  transform: none !important;
  filter: brightness(1.05);
}

.it-buy-btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.it-external {
  opacity: 0.9;
  font-weight: 900;
}

.it-collect {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}

.it-collect-label {
  display: block;
  margin-bottom: 8px;

  font-size: 11px;
  font-weight: 950;
  opacity: 0.65;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.it-collect-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.it-select {
  width: 100%;
  border-radius: 10px;
  padding: 10px 12px;

  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #fff !important;
  font-weight: 800;
}

.it-save-btn {
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);

  padding: 10px 12px;
  font-weight: 950;
  cursor: pointer;

  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.it-save-btn:hover {
  background: rgba(0, 0, 0, 0.03);
}

.it-create-collection {
  text-decoration: none;
  font-weight: 950;
  opacity: 0.8;
}

.it-create-collection:hover {
  text-decoration: underline;
}

.it-meta {
  margin-top: 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.it-chip {
  font-size: 11px;
  font-weight: 900;
  padding: 7px 10px;
  border-radius: 999px;

  background: #fff !important;
  border: 1px solid rgba(0, 0, 0, 0.10);

  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}

.it-comments {
  margin-top: 28px;
}

.it-comments-head {
  margin-bottom: 10px;
}

.it-h2 {
  margin: 0;
  font-size: 18px;

  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.it-muted {
  margin: 6px 0 0;
  font-size: 13px;
  opacity: 0.7;
}

.it-comment-form {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 12px 0 18px !important;
}

.it-comment-form textarea {
  width: 100%;
  display: block;
  resize: vertical;

  min-height: 92px;
  padding: 14px 16px;

  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);

  font-size: 14px;
  line-height: 1.35;

  outline: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

.it-comment-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.10);
  transform: translateY(-1px);
}

.it-comment-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.it-post-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;

  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.02em;

  cursor: pointer;
  background: rgba(0, 0, 0, 0.92);
  color: #fff;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}

.it-post-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
}

.it-post-btn:active {
  transform: translateY(0);
  opacity: 0.9;
}

.it-thread {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.it-comment {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;

  padding: 14px 0;
  margin: 0;

  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.it-thread>.it-comment:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.it-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);

  display: grid;
  place-items: center;

  text-decoration: none;
  color: inherit;
}

.it-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.it-avatar span {
  font-weight: 900;
  opacity: 0.7;
}

.it-avatar.is-small {
  width: 34px;
  height: 34px;
}

.it-cmeta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}

.it-name {
  font-weight: 900;
  text-decoration: none;
  color: inherit;
}

.it-user {
  font-weight: 800;
  opacity: 0.6;
}

.it-date {
  margin-left: auto;
  font-size: 12px;
  opacity: 0.55;
}

.it-ctext {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.35;
}

.it-cactions {
  margin-top: 8px;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
}

.it-like2,
.it-reply-btn,
.it-del-btn {
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;

  text-decoration: none;
  color: inherit;

  font-weight: 900;
  opacity: 0.75;

  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.it-like2:hover,
.it-reply-btn:hover {
  opacity: 0.95;
}

.it-like2.is-on {
  opacity: 1;
  color: #ff4b8a;
}

.it-del-btn {
  opacity: 0.45;
}

.it-del-btn:hover {
  opacity: 0.7;
}

.it-toggle-replies {
  margin-top: 10px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;

  font-weight: 900;
  opacity: 0.55;
}

.it-toggle-replies:hover {
  opacity: 0.85;
}

.it-replies {
  list-style: none;
  margin: 10px 0 0;
  padding: 10px 0 0 14px;

  display: flex;
  flex-direction: column;
  gap: 0;

  border-left: 2px solid rgba(0, 0, 0, 0.08);
}

.it-comment.it-reply {
  grid-template-columns: 34px 1fr;
  padding: 12px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.it-reply-form {
  margin-top: 10px;
}

.it-reply-form textarea {
  width: 100%;
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.it-reply-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.it-post-mini {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;

  font-weight: 900;
  cursor: pointer;

  background: rgba(0, 0, 0, 0.08);
}

.it-post-mini:hover {
  background: rgba(0, 0, 0, 0.12);
}

.it-empty {
  margin-top: 8px;
  opacity: 0.7;
}

.it-media-card,
.it-buy-card,
.it-reply-form {
  background: #fff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: 1px solid rgba(0, 0, 0, 0.10) !important;
}

/* COMMENT BOX */
.it-comment-form {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 20px;
}

.it-comment-input {
  width: 100%;
  border: 1px solid #e7e7e7;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: all 0.2s ease;
  background: #fafafa;
}

.it-comment-input:focus {
  border-color: var(--profile-accent);
  background: white;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.03);
}

.it-post-btn {
  background: var(--profile-accent);
  color: white;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.it-post-btn:hover {
  opacity: 0.9;
}

/*===============
 Login
================*/

/*===============
 My Beta Codes
================*/

/* =========================
   MY BETA CODES PAGE
   ========================= */

.codes-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  background:
    radial-gradient(circle at top, rgba(0, 0, 0, 0.04), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.codes-card {
  width: 100%;
  max-width: 620px;
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 28px;
  padding: 40px 32px 32px;
  text-align: center;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.06),
    0 2px 10px rgba(0, 0, 0, 0.03);
}

.codes-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid #d9d9d9;
  background: #fafafa;
  color: #111111;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.codes-title {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.codes-subtitle {
  margin: 0 auto 26px;
  max-width: 440px;
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.65;
}

.codes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  background: #fcfcfc;
  text-align: left;
}

.code-value {
  flex: 1;
  min-width: 0;
  color: #111111;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  word-break: break-all;
}

.code-copy-btn {
  appearance: none;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}

.code-copy-btn:hover {
  background: #222222;
  border-color: #222222;
  transform: translateY(-1px);
}

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

.codes-empty {
  padding: 18px 16px;
  border: 1px dashed #d8d8d8;
  border-radius: 18px;
  background: #fafafa;
  color: #666666;
  font-size: 0.95rem;
  font-weight: 600;
}

.codes-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .codes-page {
    padding: 28px 16px;
  }

  .codes-card {
    padding: 30px 20px 22px;
    border-radius: 22px;
  }

  .code-row {
    flex-direction: column;
    align-items: stretch;
  }

  .code-copy-btn {
    width: 100%;
  }
}

/*===============
 Notifications
================*/

.fn-notifs-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 26px 0 44px;
}

.fn-notifs-head {
  text-align: center;
  margin-bottom: 26px;
  padding-top: 6px;
}

.fn-notifs-title {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 950;
  letter-spacing: -0.02em;
  color: #0f0f10;
}

.fn-notifs-subtitle {
  margin: 10px 0 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(15, 15, 16, 0.55);
}

.fn-notifs-section {
  margin-top: 18px;
}

.fn-notifs-section-title {
  margin: 0 0 10px 6px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 15, 16, 0.82);
}

.fn-notifs-section-title.is-muted {
  color: rgba(15, 15, 16, 0.45);
}

.fn-notifs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fn-notif-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;

  padding: 14px 16px;
  border-radius: 18px;

  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, opacity 160ms ease;
}

.fn-notif-card:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
}

.fn-notif-card.is-read {
  opacity: 0.72;
}

.fn-notif-card.is-read:hover {
  opacity: 0.9;
}

.fn-notif-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow: hidden;

  display: grid;
  place-items: center;

  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.10);

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.fn-notif-avatar,
.fn-notif-avatar:link,
.fn-notif-avatar:visited {
  text-decoration: none;
  color: inherit;
}

.fn-notif-avatar:hover {
  transform: scale(1.03);
  border-color: rgba(0, 0, 0, 0.14);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.fn-notif-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fn-notif-avatar span {
  font-weight: 950;
  font-size: 15px;
  color: rgba(15, 15, 16, 0.70);
}

.fn-notif-main {
  min-width: 0;
}

.fn-notif-top {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: baseline;
}

.fn-notif-actor {
  font-weight: 950;
  color: #0f0f10;
}

.fn-notif-actor,
.fn-notif-actor:link,
.fn-notif-actor:visited {
  text-decoration: none;
}

.fn-notif-actor:hover {
  opacity: 0.72;
  text-decoration: underline;
}

.fn-notif-message {
  font-weight: 650;
  color: rgba(15, 15, 16, 0.78);
  min-width: 0;
}

.fn-notif-quote {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.07);

  font-weight: 650;
  line-height: 1.45;
  font-size: 13.5px;
  color: rgba(15, 15, 16, 0.78);
}

.fn-notif-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fn-notif-time {
  font-size: 12px;
  font-weight: 850;
  color: rgba(15, 15, 16, 0.48);
}

.fn-notif-link {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 12px;
  border-radius: 999px;

  font-size: 11.5px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.10);
  color: rgba(15, 15, 16, 0.78);

  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.fn-notif-link,
.fn-notif-link:link,
.fn-notif-link:visited {
  text-decoration: none;
}

.fn-notif-link:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.14);
  color: rgba(15, 15, 16, 0.95);
}

.fn-notifs-empty {
  padding: 24px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  text-align: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.fn-notifs-empty-title {
  font-weight: 950;
  font-size: 16px;
  margin: 0 0 6px;
  color: rgba(15, 15, 16, 0.90);
}

.fn-notifs-empty-sub {
  margin: 0;
  font-weight: 650;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(15, 15, 16, 0.58);
}

@media (max-width: 560px) {
  .fn-notifs-page {
    padding: 22px 0 40px;
  }

  .fn-notif-card {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 12px 12px;
  }

  .fn-notif-avatar {
    width: 44px;
    height: 44px;
  }

  .fn-notif-link {
    padding: 7px 10px;
  }
}

/*===============
 Privacy
================*/

.legal-page {
  padding: 48px 16px;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.legal-card h1 {
  margin-bottom: 16px;
}

.legal-card h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.legal-card h3 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.legal-card p,
.legal-card li {
  line-height: 1.7;
}

.legal-card ul {
  padding-left: 20px;
}


/*===============
 Profile
================*/

.profile-header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-top: 1.5rem;
}

.profile-name-block .profile-display-name {
  margin: 0;
}

.profile-name-block .profile-username {
  margin-top: 0.15rem;
  color: #777;
  font-size: 1.25rem;
}

.profile-header-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-follow-block {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.profile-follow-number {
  text-align: center;
  font-size: 0.85rem;
}

.profile-follow-count {
  display: block;
  font-weight: 600;
  font-size: 1rem;
}

.profile-page .follow-button {
  background: var(--profile-accent, #f7c4d9) !important;
  border-color: transparent;
  color: #fff;
}

.profile-page .follow-button.is-following {
  opacity: 0.92;
}


/*===============
 Reset Password
================*/

/*===============
 Search HTML
================*/

.search-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0 20px;
}

.search-hero-inner {
  width: 100%;
}

.search-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.search-title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.search-bar-wrap {
  position: relative;
  margin: 0 auto;
  max-width: 820px;
}

.search-bar {
  display: flex;
  gap: 10px;
  align-items: center;

  padding: 12px 12px 12px 16px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.10),
    0 2px 10px rgba(0, 0, 0, 0.05);

  backdrop-filter: blur(8px);
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;

  font-size: 16px;
  font-weight: 650;
  padding: 12px 8px;
  min-width: 0;
}

.search-bar input::placeholder {
  opacity: 0.55;
}

.search-submit {
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;

  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  cursor: pointer;

  background: rgba(0, 0, 0, 0.92);
  color: #fff;

  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
  filter: brightness(1.02);
}

.search-submit:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.search-suggestions {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);

  border-radius: 18px;
  padding: 8px;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(8px);

  z-index: 50;
}

.search-suggestions .fd-suggestion-item {
  width: 100%;
  text-align: left;

  border: 0;
  background: transparent;

  padding: 10px 12px;
  border-radius: 14px;

  cursor: pointer;
  font-weight: 800;
  opacity: 0.9;

  transition: background 120ms ease, transform 120ms ease, opacity 120ms ease;
}

.search-suggestions .fd-suggestion-item:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
  opacity: 1;
}

.search-tabs {
  margin: 18px auto 0;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.search-tab {
  text-decoration: none;
  border-radius: 999px;

  padding: 9px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  color: rgba(0, 0, 0, 0.65);
  transition: transform 120ms ease, background 120ms ease, color 120ms ease, box-shadow 120ms ease;
}

.search-tab:hover {
  transform: translateY(-1px);
  color: rgba(0, 0, 0, 0.9);
  background: rgba(255, 255, 255, 0.55);
}

.search-tab.is-active {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(0, 0, 0, 0.92);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.search-filters {
  margin-top: 14px;
}

.search-filter-bar {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.search-filter-pill {
  position: relative;
}

.search-filter-pill>summary {
  list-style: none;
  cursor: pointer;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.08);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.search-filter-pill>summary::-webkit-details-marker {
  display: none;
}

.search-filter-pill[open]>summary {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.search-filter-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  min-width: 240px;
  max-height: 320px;
  overflow: auto;

  padding: 10px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.10);

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);

  z-index: 40;
}

.search-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 10px;
  border-radius: 14px;

  cursor: pointer;
  font-weight: 800;
  font-size: 13px;

  transition: background 120ms ease, transform 120ms ease;
}

.search-filter-option:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.search-filter-option input {
  accent-color: rgba(0, 0, 0, 0.9);
}

.search-swatch {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
}

.search-filter-clear {
  text-decoration: none;

  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.10);

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  color: rgba(0, 0, 0, 0.78);
  transition: transform 120ms ease, background 120ms ease;
}

.search-filter-clear:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.08);
}

.search-results {
  max-width: 1100px;
  margin: 18px auto 50px;
  padding: 0 20px;
}

.search-results-title {
  margin: 16px 0 10px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.search-results-hint {
  margin-top: 8px;
  opacity: 0.75;
  font-weight: 650;
}

.search-loader {
  text-align: center;
  padding: 16px 0;
  opacity: 0.75;
  font-weight: 800;
}

@media (max-width: 640px) {
  .search-hero {
    padding-top: 26px;
  }

  .search-title {
    margin-bottom: 14px;
  }

  .search-bar {
    border-radius: 22px;
    padding: 10px 10px 10px 12px;
  }

  .search-submit {
    padding: 11px 14px;
  }

  .search-tabs {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .search-filter-bar {
    justify-content: flex-start;
  }

  .search-filter-dropdown {
    min-width: 220px;
  }
}

.btn-black {
  background: #111;
  color: white;
  border: none;
}

.btn-black:hover {
  background: #000;
}

.search-brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.search-bar {
  width: 100%;
  max-width: 750px;
  /* makes it much wider */
  margin: 0 auto;
}

.search-bar {
  width: 100%;
  max-width: 820px;
  /* controls how long it can get */
  margin: 0 auto;
}

.search-bar-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.search-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.search-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.14);
}

.search-card-image-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fafafa, #f3f3f3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.search-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-card-body {
  padding: 14px 14px 16px;
}

.search-card-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.48);
  margin-bottom: 6px;
}

.search-card-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  color: #111;
  margin-bottom: 6px;
}

.search-card-price {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.62);

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.user-search-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 18px auto 0;
}

.user-search-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.user-search-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.14);
}

.user-search-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 62px;
  background: #f3f3f3;
  border: 1px solid rgba(0, 0, 0, 0.06);

  display: flex;
  align-items: center;
  justify-content: center;
}

.user-search-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.user-search-initial {
  font-size: 22px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
}

.user-search-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.user-search-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.user-search-username {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.55);
}

.user-search-bio {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(0, 0, 0, 0.68);
  margin-top: 2px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/*===============
 Signup
================*/

/*===============
 Slideshow Page
================*/

/*===============
 Terms
================*/

.legal-page {
  padding: 48px 16px 72px;
}

.legal-card {
  max-width: 860px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ece7f2;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 12px 35px rgba(28, 20, 41, 0.05);
}

.legal-card h1 {
  margin: 0 0 14px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.legal-card h2 {
  margin: 30px 0 10px;
  font-size: 1.15rem;
  line-height: 1.3;
}

.legal-card h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.legal-card p {
  margin: 0 0 14px;
  line-height: 1.75;
  color: #3f3a46;
}

.legal-card ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-card li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #3f3a46;
}

.legal-card strong {
  color: #1f1728;
}

.legal-card a {
  color: #7c4dff;
  text-decoration: none;
  font-weight: 600;
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-card>p:first-of-type {
  color: #6d6677;
  font-size: 0.95rem;
}

/*===============
 Varify Notice
================*/

/*===============
  Email Verification Notice
================*/

.verify-notice {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 34px 16px 56px;
}

.verify-card {
  width: 100%;
  max-width: 720px;
  padding: 26px 26px 22px;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);

  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.10),
    0 2px 10px rgba(0, 0, 0, 0.05);

  backdrop-filter: blur(10px);
}

.verify-title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f0f10;
}

.verify-text {
  margin: 0;
  line-height: 1.6;
  color: rgba(15, 15, 16, 0.78);
  font-weight: 600;
}

.verify-text b {
  color: rgba(15, 15, 16, 0.92);
}

.verify-list {
  margin: 16px 0 18px;
  padding-left: 18px;
  color: rgba(15, 15, 16, 0.75);
  font-weight: 650;
}

.verify-list li+li {
  margin-top: 6px;
}

.verify-actions {
  margin-top: 12px;
}

.verify-btn {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  padding: 14px 18px;

  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;

  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.verify-btn-primary {
  background: #111;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.verify-btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.20);
}

.verify-btn-secondary {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(15, 15, 16, 0.86);
}

.verify-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.18);
}

@media (max-width: 640px) {
  .verify-card {
    padding: 18px;
    border-radius: 18px;
  }
}




.home-hero-kicker {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(0, 0, 0, .03);
}

.home-hero-subtitle {
  margin: 10px auto 18px;
  max-width: 60ch;
  font-size: 1.05rem;
  opacity: .85;
}

.home-hero-title-accent {
  position: relative;
  z-index: 0;
}

.home-hero-title-accent::after {
  content: "";
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  bottom: 0.08em;
  height: 0.38em;
  background: rgba(0, 0, 0, .08);
  z-index: -1;
  border-radius: 10px;
}

.home-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 14px;
}

.home-hero-chip {
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: rgba(0, 0, 0, .03);
  cursor: pointer;
}

.home-hero-chip:hover {
  transform: translateY(-1px);
}

/* =========================
   Badges (profile) — FINAL OVERRIDES
   Paste at very bottom of styles.css
========================= */

/* Row: @username + badges inline */
.profile-username-row {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

/* Badge row (discord-like cluster) */
.profile-username-row .profile-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.2 !important;
  /* beats earlier rules */
  line-height: 1;
}

/* Each badge wrapper */
.profile-username-row .profile-badges .profile-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* tighter than before */
  margin-left: -4px;
  /* adjust: -6 to -10 */
}

.profile-username-row .profile-badges .profile-badge:first-child {
  margin-left: 0;
}

/* Bigger badge image */
.profile-username-row .profile-badges .profile-badge img {
  width: 42px;
  /* bigger */
  height: 42px;
  object-fit: contain;
  transition: transform .18s ease, filter .18s ease;
  animation: idleSparkle 3.8s infinite ease-in-out;
  /* more sparkly */
}

/* Tooltip BELOW (no glow on text) */
.profile-username-row .profile-badges .profile-badge::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-2px);

  background: rgba(0, 0, 0, .86);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  filter: none;
  text-shadow: none;
  box-shadow: none;

  transition: opacity .12s ease, transform .12s ease;
}

.profile-username-row .profile-badges .profile-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(0, 0, 0, .86);

  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease;
}

.profile-username-row .profile-badges .profile-badge:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.profile-username-row .profile-badges .profile-badge:hover::before {
  opacity: 1;
}

/* =========================
   Badges (profile) — FINAL OVERRIDES
   Paste at very bottom of styles.css
========================= */

/* Row: @username + badges inline */
.profile-username-row {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

/* Badge row (discord-like cluster) */
.profile-username-row .profile-badges {
  display: inline-flex;
  align-items: center;
  gap: 0.2 !important;
  /* beats earlier rules */
  line-height: 1;
}

/* Each badge wrapper */
.profile-username-row .profile-badges .profile-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* tighter than before */
  margin-left: -4px;
  /* adjust: -6 to -10 */
}

.profile-username-row .profile-badges .profile-badge:first-child {
  margin-left: 0;
}

/* Bigger badge image */
.profile-username-row .profile-badges .profile-badge img {
  width: 42px;
  /* bigger */
  height: 42px;
  object-fit: contain;
  transition: transform .18s ease, filter .18s ease;
  animation: idleSparkle 3.8s infinite ease-in-out;
  /* more sparkly */
}

/* Tooltip BELOW (no glow on text) */
.profile-username-row .profile-badges .profile-badge::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(-2px);

  background: rgba(0, 0, 0, .86);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;

  filter: none;
  text-shadow: none;
  box-shadow: none;

  transition: opacity .12s ease, transform .12s ease;
}

.profile-username-row .profile-badges .profile-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(0, 0, 0, .86);

  opacity: 0;
  pointer-events: none;
  transition: opacity .12s ease;
}

.profile-username-row .profile-badges .profile-badge:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.profile-username-row .profile-badges .profile-badge:hover::before {
  opacity: 1;
}

/* ✅ Old-style glow (no square): drop-shadow */
.profile-username-row .profile-badges .profile-badge:hover img {
  transform: scale(1.08);
  animation: badgeGlow .85s infinite alternate;
}

@keyframes badgeGlow {
  0% {
    filter:
      drop-shadow(0 0 2px rgba(255, 215, 0, .55)) drop-shadow(0 0 6px rgba(255, 215, 0, .25));
  }

  100% {
    filter:
      drop-shadow(0 0 10px rgba(255, 215, 0, .85)) drop-shadow(0 0 18px rgba(255, 215, 0, .35));
  }
}

/* More sparkly idle shimmer (still subtle) */
@keyframes idleSparkle {

  0%,
  100% {
    filter:
      drop-shadow(0 0 0 rgba(255, 215, 0, 0));
  }

  50% {
    filter:
      drop-shadow(0 0 6px rgba(255, 215, 0, .45)) drop-shadow(0 0 12px rgba(255, 215, 0, .22));
  }
}

.profile-badges {
  margin-left: 6px;
}

.profile-badges {
  margin-left: 6px;
}