/* Inxtantly brand — Instant Yellow #FFC72C, Jet Black #111111, Velocity Red #E03940, Eggshell #FCFAF3 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Poppins:ital,wght@0,700;1,700&display=swap");

:root {
  --color-instant-yellow: #ffc72c;
  --color-jet-black: #111111;
  --color-velocity-red: #e03940;
  --color-eggshell: #fcfaf3;
  --color-white: #ffffff;
  --color-surface: #111111;
  --color-border: rgba(17, 17, 17, 0.12);
  --color-border-card: rgba(17, 17, 17, 0.08);
  --color-muted-on-dark: rgba(252, 250, 243, 0.65);
  --color-muted: rgba(17, 17, 17, 0.58);
  --color-muted-dark: #5c5c5c;
  --font-heading: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 4px 24px rgba(17, 17, 17, 0.12);

  /* Bootstrap — light shell: white page, jet text, yellow accents */
  --bs-body-font-family: var(--font-body);
  --bs-body-color: var(--color-jet-black);
  --bs-body-bg: var(--color-white);
  --bs-secondary-color: var(--color-muted-dark);
  --bs-tertiary-color: rgba(17, 17, 17, 0.45);
  --bs-emphasis-color: var(--color-jet-black);
  --bs-primary: var(--color-instant-yellow);
  --bs-primary-rgb: 255, 199, 44;
  --bs-danger: var(--color-velocity-red);
  --bs-danger-rgb: 224, 57, 64;
  --bs-dark: var(--color-jet-black);
  --bs-dark-rgb: 17, 17, 17;
  --bs-border-color: var(--color-border);
  --bs-link-color: #b88600;
  --bs-link-hover-color: var(--color-jet-black);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-jet-black);
  background: var(--color-white);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.5em;
  color: var(--color-instant-yellow);
}

.subheading,
h2.subheading,
h3.subheading {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-instant-yellow);
}

.caption,
small.caption {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--color-muted-dark);
}

a {
  color: #b88600;
  text-decoration: none;
}

a:hover {
  color: var(--color-jet-black);
  text-decoration: underline;
}


/* Cart icon + count badge (badge sits on top of the bag, app-style) */
.ix-nav-cart-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-badge{
  position: absolute;
    top: 2px;
    right: 0;
    width: 14px;
    display: flex;
    height: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 50% !important;
}
.ix-nav-cart-wrap .ix-nav-cart-badge {
  position: absolute;
  top: -0.4rem;
  right: -0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 1.1rem;
  padding: 0.15em 0.35em;
  line-height: 1.15;
  z-index: 1;
  box-shadow: 0 0 0 2px var(--color-jet-black);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  font-style: italic;
}

.logo span {
  color: var(--color-instant-yellow);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav-main a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
}

.badge-portal {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  background: var(--color-instant-yellow);
  color: var(--color-jet-black);
  border-radius: 4px;
}

.ix-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.ix-btn:hover {
  text-decoration: none;
}

.ix-btn-primary {
  background: var(--color-instant-yellow);
  color: var(--color-jet-black);
  border-color: var(--color-instant-yellow);
}

.ix-btn-primary:hover {
  filter: brightness(1.05);
}

.ix-btn-outline {
  background: transparent;
  color: var(--color-eggshell);
  border-color: rgba(252, 250, 243, 0.55);
}

.ix-btn-outline:hover {
  background: var(--color-instant-yellow);
  color: var(--color-jet-black);
  border-color: var(--color-instant-yellow);
}

.ix-btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.ix-btn-ghost:hover {
  border-color: var(--color-instant-yellow);
  color: var(--color-instant-yellow);
}

.ix-btn-danger {
  background: transparent;
  color: var(--color-velocity-red);
  border-color: var(--color-velocity-red);
}

.ix-btn-danger:hover {
  background: var(--color-velocity-red);
  color: var(--color-white);
}

.ix-btn-sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.8125rem;
}
main{
  background: var(--color-white) !important;
}
/* 
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
} */

@media (max-width: 991.98px) {
  main {
    padding: 1.5rem 1rem 3rem;
  }
}

.table-body tr td{
  color: var(--color-jet-black) !important;
}

a{
  text-decoration: none !important;
}

.table>:not(caption)>*>*{
  color: var(--color-jet-black) !important;
}
/* Make Bootstrap buttons match brand when used */
.btn.btn-primary {
  background: var(--color-instant-yellow);
  border-color: var(--color-instant-yellow);
  color: var(--color-jet-black);
}

.btn.btn-primary:hover {
  filter: brightness(1.05);
}

.btn.btn-outline-dark {
  border-color:  var(--color-instant-yellow) !important;
  color: var(--color-instant-yellow) !important;
}

.btn.btn-outline-dark:hover {
  background: var(--color-instant-yellow);
  border-color: var(--color-instant-yellow);
  color: var(--color-jet-black) !important;
}

.btn.btn-outline-light {
  border-color: rgba(252, 250, 243, 0.55);
  color: var(--color-eggshell);
}

.btn.btn-outline-light:hover {
  background: var(--color-instant-yellow);
  border-color: var(--color-instant-yellow);
  color: var(--color-jet-black);
}

.btn.btn-danger {
  background: var(--color-velocity-red);
  border-color: var(--color-velocity-red);
  color: var(--color-white);
}

.btn.btn-danger:hover {
  filter: brightness(1.08);
  color: var(--color-white);
}

.btn.btn-success {
  background: #2d6a4f;
  border-color: #2d6a4f;
  color: var(--color-white);
}

/* Bootstrap cards — Eggshell on Jet Black (brand contrast) */
.card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-color: var(--color-border-card);
  background: var(--color-eggshell);
  color: var(--color-jet-black);
}

.card h1,
.card h2,
.card h3,
.card h4,
.card h5,
.card h6,
.card .subheading,
.card .card-title {
  color: var(--color-jet-black);
  font-family: var(--font-heading);
  font-weight: 700;
}

.card .caption,
.card .text-muted {
  color: var(--color-muted-dark) !important;
}

.card a:not(.btn) {
  color: var(--color-jet-black);
  text-decoration: underline;
  text-decoration-color: var(--color-instant-yellow);
}

.card a:not(.btn):hover {
  color: #b88600;
}

.ix-card {
  background: var(--color-eggshell);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-card);
  color: var(--color-jet-black);
}

.ix-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card .price {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-jet-black);
  font-size: 1.125rem;
}

.product-card .seller-name,
.product-card .vendor-name {
  font-size: 0.8125rem;
  color: var(--color-muted-dark);
}

.product-card h2.subheading {
  color: var(--color-jet-black);
  font-family: var(--font-heading);
}

.ix-product-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  background: rgba(17, 17, 17, 0.06);
}

.ix-product-card-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ix-product-card-media--has-video {
  position: relative;
}

.ix-product-card-video-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  font-size: 1.75rem;
  color: var(--color-instant-yellow);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

.ix-product-detail-video {
  max-height: min(70vh, 520px);
  background: #0a0a0a;
  object-fit: contain;
}

main .card .ix-product-video-wrap .subheading {
  color: var(--color-jet-black);
}


.ix-my-orders-filters .nav-link.active
{
  background-color: var(--color-instant-yellow);
  border-color: var(--color-instant-yellow);
  color: var(--color-jet-black);
}

.list-group-item.active{
  background-color: var(--color-instant-yellow);
  border-color: var(--color-instant-yellow);
  color: var(--color-jet-black);
}

.list-group-item.hover{
  background-color: var(--color-instant-yellow);
  border-color: var(--color-instant-yellow);
  color: var(--color-jet-black);
}


.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  max-width: 480px;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(17, 17, 17, 0.15);
  border-radius: 8px;
  background: var(--color-eggshell);
  color: var(--color-jet-black);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

table.data-table th,
table.data-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
}

table.data-table th {
  font-family: var(--font-body);
  font-weight: 700;
  background: var(--color-jet-black);
  color: var(--color-white);
}

table.data-table tr:hover td {
  background: rgba(255, 199, 44, 0.12);
}

table.data-table td {
  color: var(--color-jet-black);
}

.alert {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
}

.alert-error {
  background: rgba(224, 57, 64, 0.12);
  border: 1px solid var(--color-velocity-red);
  color: #8b1e24;
}

.page-title {
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-instant-yellow);
}

.page-intro {
  font-family: var(--font-body);
  color: var(--color-muted-dark);
  margin-bottom: 2rem;
  max-width: 640px;
}

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-muted-dark);
}

.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
}

.footer-site {
  margin-top: auto;
  padding: 0.85rem 1.5rem;
  font-size: 0.8125rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-jet-black);
  background: var(--color-eggshell);
  border-top: 1px solid var(--color-border-card);
}

.footer-site .footer-brand {
  color: var(--color-instant-yellow);
}

.footer-site .caption {
  color: var(--color-muted-dark);
  font-family: var(--font-body);
  font-weight: 400;
}

.footer-site a.caption {
  color: #b88600;
}

.footer-site a.caption:hover {
  color: var(--color-jet-black);
}

.footer-site code {
  color: var(--color-jet-black);
  background: rgba(17, 17, 17, 0.06);
}

/* Rich footer — Jet Black shell, Instant Yellow accent (brand) */
.footer-site.ix-footer-rich {
  margin-top: auto;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(252, 250, 243, 0.75);
  background: var(--color-jet-black);
  border-top: 3px solid var(--color-instant-yellow);
}

.footer-site.ix-footer-rich .ix-footer-newsletter-wrap {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-site.ix-footer-rich .ix-footer-newsletter {
  background: var(--color-eggshell);
  border-radius: var(--radius);
  overflow: hidden;
}

.footer-site.ix-footer-rich .ix-footer-newsletter-label {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-jet-black);
  font-size: 0.9rem;
}

.footer-site.ix-footer-rich .ix-footer-newsletter-input {
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius);
  font-family: var(--font-body);
}

.footer-site.ix-footer-rich .ix-footer-subscribe-btn {
  background: var(--color-instant-yellow);
  border: 2px solid var(--color-jet-black);
  color: var(--color-jet-black);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.footer-site.ix-footer-rich .ix-footer-subscribe-btn:hover {
  background: #e6b328;
  color: var(--color-jet-black);
}

.footer-site.ix-footer-rich .ix-footer-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.footer-site.ix-footer-rich .ix-footer-tagline {
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(252, 250, 243, 0.72);
  max-width: 22rem;
}

.footer-site.ix-footer-rich .ix-footer-col-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(252, 250, 243, 0.55);
  margin-bottom: 0.65rem;
}

.footer-site.ix-footer-rich .ix-footer-links li + li {
  margin-top: 0.35rem;
}

.footer-site.ix-footer-rich .ix-footer-links a {
  color: rgba(252, 250, 243, 0.88);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-site.ix-footer-rich .ix-footer-links a:hover {
  color: var(--color-instant-yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-site.ix-footer-rich .ix-footer-links a.is-active {
  color: var(--color-instant-yellow);
  font-weight: 800;
  text-decoration: none;
}

.footer-site.ix-footer-rich .ix-footer-seller-row {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-site.ix-footer-rich .ix-footer-seller-link {
  color: var(--color-instant-yellow);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
}

.footer-site.ix-footer-rich .ix-footer-seller-link:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-site.ix-footer-rich .ix-footer-seller-dot {
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

.footer-site.ix-footer-rich .ix-footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  color: rgba(252, 250, 243, 0.45);
}

.footer-site.ix-footer-rich .ix-footer-debug {
  font-size: 0.75rem;
  color: rgba(252, 250, 243, 0.55);
}

.footer-site.ix-footer-rich .ix-footer-debug code {
  color: var(--color-instant-yellow);
  background: rgba(255, 255, 255, 0.08);
}

/* Static legal / info pages */
main.ix-static-page {
  background: var(--color-eggshell);
  flex: 1 0 auto;
}

main.ix-static-page .ix-static-card {
  max-width: 44rem;
  background: var(--color-white);
  border: 1px solid var(--color-border-card);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  main.ix-static-page .ix-static-card {
    padding: 2.25rem 2.5rem;
  }
}

main.ix-static-page .ix-static-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.65rem;
  color: var(--color-jet-black);
  letter-spacing: 0.01em;
}

main.ix-static-page .ix-static-lead {
  font-size: 1rem;
  color: var(--color-muted-dark);
  line-height: 1.55;
}

main.ix-static-page .ix-static-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-jet-black);
}

main.ix-static-page .ix-static-body h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-jet-black);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

main.ix-static-page .ix-static-body p {
  margin-bottom: 0.85rem;
}

main.ix-static-page .ix-static-body p:last-child {
  margin-bottom: 0;
}

main.ix-static-page .ix-static-body a {
  color: #b88600;
  font-weight: 600;
}

main.ix-static-page .ix-static-body a:hover {
  color: var(--color-jet-black);
}

.layout-stack {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout-stack > main {
  flex: 1 0 auto;
  width: 100%;
  background: var(--color-white);
  color: var(--color-jet-black);
}

.layout-stack > main.ix-static-page {
  background: var(--color-eggshell);
}

/* Mobile bottom tab bar (shop surface — see includes/shop_mobile_bottom_nav.php) */
.ix-mobile-bottom-nav {
  display: none;
}

@media (max-width: 991.98px) {
  body.ix-has-mobile-bottom-nav .ix-mobile-bottom-nav {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--color-instant-yellow);
    color: var(--color-jet-black);
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.08);
  }

  body.ix-has-mobile-bottom-nav .layout-stack {
    padding-bottom: calc(3.55rem + env(safe-area-inset-bottom, 0px));
  }
}

.ix-mobile-bottom-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  max-width: 720px;
  margin: 0 auto;
  min-height: 3.4rem;
}

.ix-mobile-bottom-nav-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.3rem 0.2rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  text-align: center;
  line-height: 1.15;
}

.ix-mobile-bottom-nav-item.is-active {
  background: rgba(0, 0, 0, 0.07);
  border-radius: 0.45rem 0.45rem 0 0;
}

.ix-mobile-bottom-nav-item:active {
  opacity: 0.88;
}

.ix-mobile-bottom-nav-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.ix-mobile-bottom-nav-badge {
  position: absolute;
  top: -0.38rem;
  right: -0.52rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.28rem;
  font-size: 0.55rem;
  line-height: 1rem;
  font-weight: 700;
  color: #fff;
  background: #dc3545;
  border-radius: 999px;
  text-align: center;
}

.ix-mobile-bottom-nav-label {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  text-transform: capitalize;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-processing {
  background: #cce5ff;
  color: #004085;
}

.status-shipped {
  background: #d4edda;
  color: #155724;
}

.status-readytoship,
.status-confirmorder {
  background: #d4edda;
  color: #155724;
}

.status-cancelled {
  background: rgba(224, 57, 64, 0.2);
  color: #9b1c24;
  border: 1px solid rgba(224, 57, 64, 0.45);
}

.seller-inactive,
.vendor-inactive {
  opacity: 0.55;
}

/* Product detail hero: shrink tall/wide images to fit the card (no overflow) */
/* Variable product: unavailable variant row on product detail */
.ix-variant-oos td {
  color: #9a9a9a;
  background: rgba(0, 0, 0, 0.04);
}

.ix-product-detail-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(60vh, 22rem);
  object-fit: contain;
  object-position: center center;
}

.ix-product-gallery-thumbs .ix-product-thumb.active {
  border-color: var(--bs-dark) !important;
  box-shadow: 0 0 0 0.125rem rgba(0, 0, 0, 0.2);
}

/* Order tracking (customer) */
.ix-order-card {
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}

.ix-track-modal {
  border: none;
  border-radius: 0.65rem;
  box-shadow: 0 0.35rem 1.25rem rgba(0, 0, 0, 0.12);
}

.ix-track-timeline {
  position: relative;
  padding-left: 0.25rem;
}

.ix-track-step {
  position: relative;
  padding: 0.35rem 0 0.85rem 1.75rem;
  min-height: 2.5rem;
}

.ix-track-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 1.15rem;
  bottom: -0.25rem;
  width: 2px;
  background: #e0e0e0;
}

.ix-track-step--done:not(:last-child)::before {
  background: #28a745;
}

.ix-track-dot {
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #ccc;
  box-sizing: border-box;
}

.ix-track-step--done .ix-track-dot {
  border-color: #28a745;
  background: #28a745;
}

.ix-track-step--current .ix-track-dot {
  border-color: var(--color-instant-yellow);
  box-shadow: 0 0 0 3px rgba(255, 199, 44, 0.35);
}

.ix-track-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.ix-track-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.ix-track-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: #e9ecef;
  color: #495057;
}

.ix-track-badge--now {
  background: #cfe2ff;
  color: #084298;
}

.ix-track-step--done .ix-track-badge {
  background: #d4edda;
  color: #155724;
}

/* Seller fulfillment row (colors extended below with brand) */
.ix-fulfillment-bar {
  border-radius: 0.35rem;
  padding: 0.65rem 0.75rem !important;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

/* Admin notifications */
.ix-admin-notif-card {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}

.ix-admin-notif-list .list-group-item {
  border-color: rgba(0, 0, 0, 0.06);
}

/* Google PlaceAutocompleteElement host (checkout / seller map) */
.ix-gmp-ac-host {
  display: block;
  width: 100%;
}
.ix-gmp-ac-host gmp-place-autocomplete {
  width: 100%;
}

#checkout_map_main,
#vendor_location_map {
  border: 1px solid rgba(17, 17, 17, 0.18) !important;
}

/* Checkout order summary line thumbnails */
.ix-checkout-line-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.06);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.ix-checkout-line-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Checkout: delivery vs price in separate cards; summary stays visible while scrolling (desktop) */
.ix-checkout-delivery-card,
.ix-checkout-price-card {
  border-color: rgba(17, 17, 17, 0.12);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.06);
}

@media (min-width: 992px) {
  .ix-checkout-price-card {
    position: sticky;
    top: 5.5rem;
    z-index: 2;
  }
}

/* My orders — rating / review */
.ix-order-review .ix-star-pick label {
  min-width: 2.6rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.ix-order-review .btn-check:checked + .btn-outline-dark {
  background: var(--color-instant-yellow);
  border-color: var(--color-instant-yellow);
  color: var(--color-jet-black);
}

/* ——— Brand: forms, modals, lists (Bootstrap on Jet Black + Eggshell cards) ——— */
main .form-label {
  color: var(--color-eggshell);
  font-family: var(--font-body);
  font-weight: 600;
}

main .card .form-label,
.offcanvas .form-label {
  color: var(--color-jet-black);
}

.form-control,
.form-select {
  font-family: var(--font-body);
  background-color: var(--color-eggshell);
  border-color: rgba(17, 17, 17, 0.22);
  color: var(--color-jet-black);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-instant-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 199, 44, 0.35);
  background-color: var(--color-eggshell);
  color: var(--color-jet-black);
}

/* Modern native selects — flat chevron, radius, hover (all .form-select sites) */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0.75rem;
  padding: 0.62rem 2.75rem 0.62rem 1rem;
  font-weight: 500;
  line-height: 1.45;
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.05);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23232323' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1rem 1rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.form-select:hover:not(:disabled):not([readonly]) {
  border-color: rgba(17, 17, 17, 0.28);
  box-shadow: 0 2px 10px rgba(17, 17, 17, 0.07);
}

.form-select:focus {
  border-color: var(--color-instant-yellow);
  box-shadow:
    0 0 0 0.2rem rgba(255, 199, 44, 0.35),
    0 2px 10px rgba(17, 17, 17, 0.06);
}

.form-select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  box-shadow: none;
}

.form-select-sm {
  padding: 0.42rem 2.35rem 0.42rem 0.85rem;
  border-radius: 0.6rem;
  font-size: 0.875rem;
  background-position: right 0.65rem center;
  background-size: 0.875rem 0.875rem;
}

.form-select-lg {
  padding: 0.78rem 3rem 0.78rem 1.1rem;
  border-radius: 0.85rem;
  font-size: 1.05rem;
  background-position: right 1rem center;
  background-size: 1.125rem 1.125rem;
}

select.form-select[multiple],
select.form-select[size]:not([size="1"]) {
  padding-right: 1rem;
  background-image: none;
  cursor: default;
}

.form-control::placeholder {
  color: rgba(17, 17, 17, 0.45);
}

.input-group-text {
  background: rgba(255, 199, 44, 0.2);
  border-color: rgba(17, 17, 17, 0.15);
  color: var(--color-jet-black);
  font-family: var(--font-body);
}

.modal-content {
  background: var(--color-eggshell);
  color: var(--color-jet-black);
  border: 1px solid var(--color-border-card);
  border-radius: var(--radius);
}

.modal-header,
.modal-footer {
  border-color: var(--color-border-card);
}

.offcanvas,
.offcanvas-header,
.offcanvas-body {
  background: var(--color-eggshell);
  color: var(--color-jet-black);
}

.offcanvas .btn-close {
  filter: none;
}

.list-group-item {
  background: var(--color-eggshell);
  color: var(--color-jet-black);
  border-color: var(--color-border-card);
}

.dropdown-menu {
  background: var(--color-eggshell);
  border-color: var(--color-border-card);
  font-family: var(--font-body);
}

.dropdown-item {
  color: var(--color-jet-black);
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(255, 199, 44, 0.28);
  color: var(--color-jet-black);
}

.table {
  --bs-table-bg: transparent;
  color: var(--color-jet-black);
}

.card .table {
  color: var(--color-jet-black);
}

.table-dark {
  --bs-table-bg: var(--color-jet-black);
  --bs-table-color: var(--color-instant-yellow);
  border-color: rgba(255, 199, 44, 0.2);
}

.alert-danger {
  background: rgba(224, 57, 64, 0.14);
  border-color: var(--color-velocity-red);
  color: #7a1f24;
  font-family: var(--font-body);
}

.alert-warning {
  background: rgba(255, 199, 44, 0.28);
  border-color: rgba(17, 17, 17, 0.12);
  color: var(--color-jet-black);
}

.alert-info {
  background: rgba(252, 250, 243, 0.95);
  border-color: rgba(17, 17, 17, 0.1);
  color: var(--color-jet-black);
}

.alert-success {
  background: rgba(45, 106, 79, 0.12);
  border-color: #2d6a4f;
  color: #1b4332;
}

.badge.text-bg-success {
  background: #2d6a4f !important;
  color: var(--color-white) !important;
}

.badge.text-bg-warning,
.badge.text-bg-warning.text-dark {
  background: var(--color-instant-yellow) !important;
  color: var(--color-jet-black) !important;
  font-family: var(--font-body);
  font-weight: 700;
}

.badge.text-bg-secondary {
  background: rgba(17, 17, 17, 0.12) !important;
  color: var(--color-jet-black) !important;
}

.text-muted {
  color: var(--color-muted) !important;
}

.card .text-muted {
  color: var(--color-muted-dark) !important;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--color-jet-black);
}

.ix-fulfillment-bar {
  background: rgba(255, 199, 44, 0.12);
  border: 1px solid rgba(255, 199, 44, 0.25);
  border-radius: 0.35rem;
}

.btn-link {
  color: var(--color-instant-yellow);
  font-weight: 600;
}

.btn-link:hover {
  color: #ffe066;
}

.offcanvas-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-jet-black);
}

.pagination .page-link {
  color: var(--color-jet-black);
  background: var(--color-eggshell);
  border-color: var(--color-border-card);
}

.pagination .page-link:hover {
  background: rgba(255, 199, 44, 0.35);
  color: var(--color-jet-black);
  border-color: var(--color-instant-yellow);
}

.pagination .page-item.active .page-link {
  background: var(--color-instant-yellow);
  border-color: var(--color-instant-yellow);
  color: var(--color-jet-black);
}

/* Product detail variant chips */
.ix-variant-chip {
  border: 1px solid rgba(17, 17, 17, 0.15);
  background: var(--color-eggshell);
  border-radius: 0.375rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  line-height: 1.2;
  font-family: var(--font-body);
  transition: border-color 0.15s ease, background-color 0.15s ease, opacity 0.15s ease;
}

.ix-variant-chip:hover:not(:disabled):not(.ix-variant-missing) {
  border-color: rgba(17, 17, 17, 0.28);
  background: rgba(255, 199, 44, 0.15);
}

.ix-variant-chip.is-active {
  border-color: var(--color-instant-yellow);
  box-shadow: 0 0 0 0.2rem rgba(255, 199, 44, 0.35);
  font-weight: 600;
  color: var(--color-jet-black);
}

.ix-variant-chip.is-oos:not(.ix-variant-missing) {
  opacity: 0.5;
  text-decoration: line-through;
}

.ix-variant-chip.ix-variant-missing {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: line-through;
}

.alert-secondary {
  background: rgba(17, 17, 17, 0.06);
  border-color: rgba(17, 17, 17, 0.12);
  color: var(--color-jet-black);
}

/* Account: map + Zepto-style “complete address” flow */
.ix-account-addr-map {
  width: 100%;
  min-height: 400px;
  flex: 1 1 320px;
}

.ix-addr-map-modal .modal-body {
  min-height: 50vh;
}

.ix-addr-map-modal .modal-body .ix-account-addr-map {
  min-height: min(400px, 55vh);
}

.ix-zepto-addr-modal .modal-content {
  border-radius: 14px;
}

.ix-addr-type-pills .ix-addr-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 2px solid rgba(17, 17, 17, 0.12);
  background: #fff;
  color: #444;
  font-size: 0.8125rem;
  padding: 0.42rem 0.9rem;
  font-weight: 500;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.ix-addr-type-pills .ix-addr-pill:hover {
  border-color: rgba(17, 17, 17, 0.22);
  background: rgba(17, 17, 17, 0.03);
}

.ix-addr-type-pills .btn-check:checked + .ix-addr-pill {
  border-color: #e85d6d;
  color: #b83244;
  background: #fff5f6;
}

.ix-addr-type-pills .ix-addr-pill i {
  font-size: 1rem;
  opacity: 0.85;
}

.ix-addr-dash {
  border: 0;
  border-top: 1px dashed rgba(17, 17, 17, 0.18);
  opacity: 1;
}

.ix-addr-rounded {
  border-radius: 10px !important;
}

.ix-outline-field {
  position: relative;
  margin-top: 0.25rem;
}

.ix-outline-field-label {
  position: absolute;
  top: 0;
  left: 0.85rem;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 0.35rem;
  font-size: 0.75rem;
  color: #666;
  z-index: 2;
  pointer-events: none;
}

.ix-outline-field .form-control {
  border-radius: 10px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.ix-receiver-panel {
  background: rgba(17, 17, 17, 0.045);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

/* Customer account profile photo (shopping-style placeholder + photo) */
.ix-account-avatar-wrap {
  position: relative;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.ix-account-avatar-wrap--lg {
  width: 7.5rem;
  height: 7.5rem;
}

/* No photo yet — neutral “empty avatar” like major marketplaces */
.ix-account-avatar-wrap--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f3f4f6 0%, #e8eaed 100%);
  border: 2px dashed #c5c9d0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

a.ix-account-avatar-wrap--empty:hover {
  border-color: var(--color-instant-yellow);
  background: linear-gradient(180deg, #fffdf5 0%, #fff8e1 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 4px 14px rgba(17, 17, 17, 0.08);
}

.ix-account-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #9aa0a8;
  font-size: 2.35rem;
  line-height: 1;
}

.ix-account-avatar-placeholder--lg {
  font-size: 3.15rem;
  color: #8b919a;
}

.ix-account-avatar-add-chip {
  position: absolute;
  bottom: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--color-jet-black);
  background: var(--color-instant-yellow);
  padding: 0.12rem 0.45rem 0.14rem;
  border-radius: 999px;
  line-height: 1.2;
  box-shadow: 0 1px 4px rgba(17, 17, 17, 0.12);
  pointer-events: none;
}

/* Photo set — clean ring + photo fill */
.ix-account-avatar-wrap--has-photo {
  border: 2px solid #e2e4e8;
  background: #fff;
  box-shadow: 0 4px 16px rgba(17, 17, 17, 0.1);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

a.ix-account-avatar-wrap--has-photo:hover {
  border-color: var(--color-instant-yellow);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.14);
}

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

/* Profile tab: click target + camera badge */
.ix-account-avatar-click {
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

.ix-account-avatar-click:focus-visible {
  outline: none;
}

.ix-account-avatar-click:focus-visible .ix-account-avatar-wrap {
  outline: 3px solid rgba(255, 199, 44, 0.85);
  outline-offset: 3px;
}

.ix-account-avatar-click:hover .ix-account-avatar-wrap--empty {
  border-color: #a8adb8;
}

.ix-account-avatar-click:hover .ix-account-avatar-wrap--has-photo {
  border-color: #cfd3d9;
}

.ix-account-avatar-click:hover .ix-account-avatar-cam {
  background: var(--color-jet-black);
  color: var(--color-instant-yellow);
}

.ix-account-avatar-cam {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  color: var(--color-jet-black);
  background: var(--color-instant-yellow);
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.2);
  line-height: 1;
  pointer-events: none;
}

.ix-account-avatar-wrap--lg .ix-account-avatar-cam {
  width: 2.05rem;
  height: 2.05rem;
  font-size: 0.92rem;
}

.ix-account-avatar-cta {
  max-width: 9rem;
}

/* Customer My orders filters + profile overview buckets */
.ix-my-orders-filters .nav-link {
  border-radius: 999px;
}

.ix-my-orders-filters .nav-link.active {
   font-weight: 700;
}

.ix-account-order-bucket {
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.ix-account-order-bucket:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.1) !important;
}

/* Unified dashboard skin (account-style) for admin/vendor/user areas only */
body.ix-area-admin,
body.ix-area-vendor,
body.ix-area-user {
  background: #f7f7f8;
}

body.ix-area-admin main,
body.ix-area-vendor main,
body.ix-area-user main {
  background: transparent;
}

body.ix-area-admin main .container,
body.ix-area-vendor main .container,
body.ix-area-user main .container {
  max-width: 1220px;
}

body.ix-area-admin main .page-title,
body.ix-area-vendor main .page-title,
body.ix-area-user main .page-title {
  font-weight: 800;
  letter-spacing: 0.01em;
}

body.ix-area-admin main .page-intro,
body.ix-area-vendor main .page-intro,
body.ix-area-user main .page-intro {
  color: #666;
}

body.ix-area-admin main .card,
body.ix-area-vendor main .card,
body.ix-area-user main .card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.04);
}

body.ix-area-admin main .card .card-header,
body.ix-area-vendor main .card .card-header,
body.ix-area-user main .card .card-header {
  background: #fbfbfc !important;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

body.ix-area-admin main .list-group,
body.ix-area-vendor main .list-group,
body.ix-area-user main .list-group {
  border-radius: 0.95rem;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

body.ix-area-admin main .list-group-item,
body.ix-area-vendor main .list-group-item,
body.ix-area-user main .list-group-item {
  background: #fff;
  border-color: rgba(17, 17, 17, 0.08);
}

body.ix-area-admin main .list-group-item-action:hover,
body.ix-area-vendor main .list-group-item-action:hover,
body.ix-area-user main .list-group-item-action:hover {
  background: #fffdf4;
}

body.ix-area-admin main .table,
body.ix-area-vendor main .table,
body.ix-area-user main .table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: #fafafa;
  --bs-table-hover-bg: #fffdf4;
  color: #1f1f1f;
}

body.ix-area-admin main .table > :not(caption) > * > *,
body.ix-area-vendor main .table > :not(caption) > * > *,
body.ix-area-user main .table > :not(caption) > * > * {
  border-color: rgba(17, 17, 17, 0.08);
  vertical-align: middle;
}

body.ix-area-admin main .table thead th,
body.ix-area-vendor main .table thead th,
body.ix-area-user main .table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6a6a6a;
  font-weight: 700;
}

body.ix-area-admin main .btn-primary,
body.ix-area-vendor main .btn-primary,
body.ix-area-user main .btn-primary {
  background: #111;
  border-color: #111;
  color: #fff;
  font-weight: 700;
}

body.ix-area-admin main .btn-primary:hover,
body.ix-area-vendor main .btn-primary:hover,
body.ix-area-user main .btn-primary:hover {
  background: #000;
  border-color: #000;
}

body.ix-area-admin main .btn-outline-dark,
body.ix-area-vendor main .btn-outline-dark,
body.ix-area-user main .btn-outline-dark {
  border-color: rgba(17, 17, 17, 0.22);
}

body.ix-area-admin main .btn-outline-dark:hover,
body.ix-area-vendor main .btn-outline-dark:hover,
body.ix-area-user main .btn-outline-dark:hover {
  background: #111;
  border-color: #111;
}

body.ix-area-admin main .badge,
body.ix-area-vendor main .badge,
body.ix-area-user main .badge {
  border-radius: 999px;
}

body.ix-area-admin main .nav-tabs,
body.ix-area-vendor main .nav-tabs,
body.ix-area-user main .nav-tabs {
  border-bottom-color: rgba(17, 17, 17, 0.12);
}

body.ix-area-admin main .nav-tabs .nav-link,
body.ix-area-vendor main .nav-tabs .nav-link,
body.ix-area-user main .nav-tabs .nav-link {
  color: #303030;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

body.ix-area-admin main .nav-tabs .nav-link.active,
body.ix-area-vendor main .nav-tabs .nav-link.active,
body.ix-area-user main .nav-tabs .nav-link.active {
  color: #111;
  font-weight: 700;
  background: transparent;
  border-bottom-color: #111;
}

/* ——— Pixel pass: admin orders, user orders, vendor product edit ——— */

body.ix-area-admin.ix-page-orders main > .container > .d-flex.align-items-end.justify-content-between,
body.ix-area-user.ix-page-orders main > .container > .d-flex.align-items-end.justify-content-between,
body.ix-area-vendor.ix-page-product-edit main > .container > .d-flex.align-items-end.justify-content-between {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf4 100%);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.25rem !important;
}

body.ix-area-admin.ix-page-orders main h2.subheading {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111;
}

body.ix-area-admin.ix-page-orders main .row.g-3.mb-4 .card .h3 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
}

body.ix-area-admin.ix-page-orders main .row.g-3.mb-4 .caption {
  color: #6a6a6a;
}

body.ix-area-admin.ix-page-orders .ix-admin-notif-card {
  overflow: hidden;
  border-radius: 1rem;
}

body.ix-area-admin.ix-page-orders .ix-admin-notif-card > .card-header.bg-dark {
  background: #111 !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1.1rem;
}

body.ix-area-admin.ix-page-orders .ix-admin-notif-list .list-group-item {
  padding: 0.85rem 1.1rem;
}

body.ix-area-admin.ix-page-orders main .alert {
  border-radius: 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

/* Customer — My orders */
body.ix-area-user.ix-page-orders main h1.page-title {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.ix-area-user.ix-page-orders .ix-my-orders-filters {
  padding: 0.55rem;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(17, 17, 17, 0.04);
  margin-bottom: 1.25rem !important;
}

body.ix-area-user.ix-page-orders .ix-my-orders-filters .nav-link {
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #f7f7f8;
  color: #222;
  font-weight: 600;
  margin: 0.15rem 0;
}

body.ix-area-user.ix-page-orders .ix-my-orders-filters .nav-link:hover {
  background: #fff;
  border-color: rgba(17, 17, 17, 0.18);
  color: #111;
}

body.ix-area-user.ix-page-orders .ix-my-orders-filters .nav-link.active {
  background: #fff6d7;
  border-color: rgba(17, 17, 17, 0.14);
  color: #111;
}

body.ix-area-user.ix-page-orders .ix-my-orders-filters .nav-link .badge {
  font-weight: 700;
}

body.ix-area-user.ix-page-orders .ix-order-card .card-body {
  padding: 1.15rem 1.25rem;
}

body.ix-area-user.ix-page-orders .ix-order-card .subheading.border-top {
  border-color: rgba(17, 17, 17, 0.08) !important;
  font-size: 1rem !important;
  font-weight: 700;
  padding-top: 1rem !important;
  margin-top: 1rem !important;
}

body.ix-area-user.ix-page-orders .ix-order-card code {
  font-size: 0.95rem;
  font-weight: 700;
}

body.ix-area-user.ix-page-orders main .alert {
  border-radius: 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

/* Vendor — product add/edit */
body.ix-area-vendor.ix-page-product-edit main .row.justify-content-center > .col-lg-8 {
  flex: 0 0 auto;
  width: 100%;
  max-width: 52rem;
}

body.ix-area-vendor.ix-page-product-edit main .card > .card-body {
  padding: 1.35rem 1.5rem;
}

body.ix-area-vendor.ix-page-product-edit main .variant-row {
  background: #fbfbfc !important;
  border: 1px solid rgba(17, 17, 17, 0.08) !important;
  border-radius: 0.9rem !important;
  box-shadow: 0 2px 12px rgba(17, 17, 17, 0.04);
}

body.ix-area-vendor.ix-page-product-edit main .variant-row .form-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a5a5a;
  font-weight: 700;
}

body.ix-area-vendor.ix-page-product-edit main .img-thumbnail {
  border-radius: 0.65rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

body.ix-area-vendor.ix-page-product-edit main .ix-vendor-video-preview {
  border-radius: 0.75rem !important;
  border: 1px solid rgba(17, 17, 17, 0.1) !important;
}

body.ix-area-vendor.ix-page-product-edit main .alert {
  border-radius: 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
}
