:root{
  /* BASE */
  --fj-font: 'Ubuntu', sans-serif;
  --fj-bg-cont: rgba(239, 239, 239, 1);
  --fj-card: #ffffff;
  --fj-card-text: #0f1115;
  --fj-form: #ffffff;
  --fj-form-text: #0f1115;
  --fj-text: #f1f5f9;
  --fj-text-dark: #111111;
  --fj-muted: #94a3b8;
  --fj-muted-dark: #6b7280;

  /* SURFACES / BORDERS */
  --fj-card-muted: #555555;
  --fj-card-soft: #f5f5f5;
  --fj-border: rgba(0, 0, 0, 0.2);
  --fj-border-soft: #ececec;

  /* BRAND */
  --fj-accent: #e11d2e;
  --fj-accent-dark: #b3121f;
  --fj-accent-soft: rgba(225,29,46,.08);

  /* STATES */
  --fj-success: #3a8e19;
  --fj-error: #dc3545;
  --fj-warning: #f59e0b;
  --fj-info: #444444;

  /* IMAGE / NAV */
  --fj-bg-overlay: rgba(0,0,0,0.55);
  --fj-navbar-bg: rgba(10,10,10,.76);

  /* GENERIC */
  --fj-white: #ffffff;
  --fj-black: #111111;

  /* RADIUS */
  --fj-radius: 5px;
  --fj-radius-md: 10px;
  --fj-radius-lg: 18px;
  --fj-radius-o: 999px;

  /* TOAST */
  --toast-offset-right: 90px;
}

html {
  scroll-behavior: smooth;
}

body{
  font-family: var(--fj-font);
  color: var(--fj-text);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

h1,h2,h3,h4,h5,h6,
.fw-bold{
  font-weight: 600 !important;
}

body.home,
body.home main {
  background-color: var(--fj-bg) !important;
}

body.home section {
  background-color: transparent;
}

body.inner-page {
  background-color: var(--fj-bg) !important;
  background-image: var(--fj-bg-final);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

main {
  background: transparent;
}

.inner-page .site-main{
  margin-top: 95px;
}

.fj-logo{
  height:48px;
  width:auto;
}

.cont{
  background: var(--fj-bg-cont);
  border: 1px solid var(--fj-border);
  color: var(--fj-card-text);
  border-radius: var(--fj-radius);
  padding: 30px;
}

a{
  color: var(--fj-card-text);
}

a:hover{
  color:var(--fj-accent);
}

.form-control:hover,
.form-select:hover {
  border-color: var(--fj-accent);
  cursor: pointer;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--fj-accent);
  box-shadow: 0 0 0 2px rgba(225, 29, 46, 0.2);
}

.fj-chat-widget {
  position: relative;
  z-index: 1200;
}

.fj-chat-launch {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: var(--fj-radius-o);
  background: #555555;
  color: var(--fj-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 1201;
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease, background .2s ease;
}

.fj-chat-launch:hover {
  transform: scale(1.05);
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
  background-color: #e11d2e;
}

.fj-chat-launch.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.fj-chat-launch #fjChatBadge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 11px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fj-radius-o);
}

.fj-chat-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  z-index: 85;
}

.fj-chat-backdrop.is-open{
  opacity: 1;
  visibility: visible;
}

.fj-chat-panel {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: 360px;
  height: 560px;
  max-height: calc(100dvh - 120px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(.98);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.fj-chat-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.fj-chat-panel-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: var(--fj-radius-lg);
  overflow: hidden;
  background: var(--fj-white);
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
  border: 1px solid rgba(255,255,255,.08);
}

.fj-chat-header {
  min-height: 88px;
  background: linear-gradient(135deg, #161616 0%, #232323 100%);
  color: var(--fj-white);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 14px;
  flex-shrink: 0;
}

.fj-chat-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.fj-chat-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
}

.fj-chat-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fj-chat-icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: var(--fj-radius-md);
  background: rgba(255,255,255,.08);
  color: var(--fj-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}

.fj-chat-icon-btn:hover {
  background: rgba(255,255,255,.14);
  transform: translateY(-1px);
}

.fj-chat-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: var(--fj-card-soft);
}

.fj-chat-info {
  padding: 12px 16px;
  border-bottom: 1px solid #ececec;
  color: #6b7280;
  font-size: 13px;
  background: var(--fj-white);
  flex-shrink: 0;
}

.fj-chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--fj-card-soft);
  -webkit-overflow-scrolling: touch;
}

.fj-chat-msg-wrap {
  display: flex;
}

.fj-chat-msg-wrap.user {
  justify-content: flex-end;
}

.fj-chat-msg-wrap.admin {
  justify-content: flex-start;
}

.fj-chat-msg-block {
  display: flex;
  flex-direction: column;
  max-width: 78%;
}

.fj-chat-msg-block.is-grouped {
  margin-top: -6px;
}

.fj-chat-msg-block.is-grouped .fj-chat-msg-name {
  display: none;
}

.fj-chat-msg-wrap.user .fj-chat-msg-block {
  align-items: flex-end;
}

.fj-chat-msg-wrap.admin .fj-chat-msg-block {
  align-items: flex-start;
}

.fj-chat-msg-name {
  font-size: 12px;
  line-height: 1.2;
  opacity: .72;
  color: #000;
  font-weight: 700;
  margin-bottom: 4px;
  padding: 0 4px;
}

.fj-chat-msg {
  border-radius: var(--fj-radius-lg);
  padding: 10px 12px 8px;
  word-break: break-word;
  white-space: normal;
  line-height: 1.4;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.fj-chat-msg.user {
  background: #666;
  color: var(--fj-white);
  border-top-right-radius: var(--fj-radius);
}

.fj-chat-msg.admin {
  background: var(--fj-white);
  color: #111827;
  border: 1px solid #e5e7eb;
  border-top-left-radius: var(--fj-radius);
}

.fj-chat-msg-text {
  font-size: 14px;
  line-height: 1.45;
  white-space: pre-wrap;
  word-break: break-word;
}

.fj-chat-msg-meta {
  font-size: 11px;
  line-height: 1.2;
  opacity: .65;
  align-self: flex-end;
  margin-top: 2px;
}

.fj-chat-date-separator-wrap {
  display: flex;
  justify-content: center;
  margin: 6px 0 2px;
}

.fj-chat-date-separator {
  font-size: 11px;
  color: #6b7280;
  background: #eceef1;
  padding: 5px 10px;
  border-radius: var(--fj-radius-o);
  line-height: 1;
}

.fj-chat-new-separator-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0;
}

.fj-chat-new-separator {
  font-size: 11px;
  color: #ffffff;
  background: var(--fj-accent);
  padding: 5px 12px;
  border-radius: var(--fj-radius-o);
  font-weight: 600;
  letter-spacing: .2px;
}

.fj-chat-form-wrap {
  border-top: 1px solid #e8e8e8;
  background: var(--fj-white);
  padding: 14px;
  flex-shrink: 0;
}

.fj-chat-input-wrap {
  position: relative;
}

.fj-chat-textarea {
  resize: none;
  border-radius: var(--fj-radius-lg);
  padding: 10px 56px 10px 14px;
  height: 46px;
  min-height: 46px;
  max-height: 140px;
  overflow-y: auto;
  line-height: 26px;
  box-sizing: border-box;
  scrollbar-width: none;
}

.fj-chat-textarea::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.fj-chat-send-btn {
  position: absolute;
  right: 8px;
  bottom: 4px;
  width: 38px;
  height: 38px;
  border-radius: var(--fj-radius-o);
  border: none;
  background: var(--fj-accent);
  color: var(--fj-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, background .2s ease;
}

.fj-chat-send-btn:hover {
  transform: scale(1.08);
  background: #b3121f;
}

.fj-chat-empty-state {
  flex: 1;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 18px;
}

.fj-chat-empty-card {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.fj-chat-empty-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: var(--fj-radius-o);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
  color: var(--fj-white);
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

.fj-chat-empty-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.fj-chat-empty-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 18px;
}

.fj-chat-login-btn {
  min-height: 46px;
  padding: 10px 18px;
  border-radius: var(--fj-radius-o);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.fj-chat-login-btn i {
  font-size: 15px;
}

html.fj-chat-open,
body.fj-chat-open {
  overscroll-behavior: none;
}

body.fj-chat-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .fj-chat-launch {
    right: 0;
    top: 80%;
    bottom: auto;
    width: 35px !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0;
    border-radius: 10px 0 0 10px;
    transform: translateY(-50%);
    flex-direction: row;
    gap: 0;
    background: #555;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
  }

  .fj-chat-launch:hover {
    transform: translateY(-50%);
    background: #000;
    box-shadow: 0 10px 22px rgba(0,0,0,.20);
  }

  .fj-chat-launch.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(10px);
  }

  .fj-chat-launch i {
    font-size: 18px;
    line-height: 1;
  }

  .fj-chat-launch::after {
    content: none;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .04em;
    color: var(--fj-white);
  }

  .fj-chat-launch #fjChatBadge {
    top: 6px;
    right: 6px;
  }

  .fj-chat-panel {
    position: fixed;
    top: var(--fj-app-offset-top, 0px);
    left: 0;
    right: 0;
    bottom: auto;
    width: 100vw;
    height: var(--fj-app-height, 100dvh);
    max-height: var(--fj-app-height, 100dvh);
    overflow: hidden;
    transform: translateY(16px);
  }

  .fj-chat-panel.is-open {
    transform: translateY(0);
  }

  .fj-chat-panel-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    overflow: hidden;
  }

  .fj-chat-header {
    min-height: auto;
    padding:
      calc(14px + env(safe-area-inset-top))
      16px
      14px
      16px;
  }

  .fj-chat-title {
    font-size: 1.35rem;
  }

  .fj-chat-subtitle {
    font-size: 0.95rem;
  }

  .fj-chat-body {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .fj-chat-messages {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .fj-chat-msg-block {
    max-width: 86%;
  }

  .fj-chat-form-wrap {
    flex-shrink: 0;
    padding:
      12px
      14px
      calc(12px + env(safe-area-inset-bottom));
  }

  .fj-chat-textarea {
    font-size: 16px;
  }

  .fj-chat-empty-state {
    padding: 30px 20px;
  }

  .fj-chat-empty-card {
    max-width: 420px;
  }

  .fj-chat-empty-icon {
    width: 82px;
    height: 82px;
    font-size: 30px;
    margin-bottom: 20px;
  }

  .fj-chat-empty-title {
    font-size: 1.3rem;
  }

  .fj-chat-empty-text {
    font-size: 1rem;
  }

  .fj-chat-login-btn {
    min-height: 50px;
    width: 100%;
  }

  body.fj-chat-open {
    overflow: hidden;
    overscroll-behavior: none;
  }
}

@media (max-width: 576px) {
  .fj-chat-launch {
    min-height: 108px;
    width: 42px;
    padding: 11px 7px;
  }

  .fj-chat-launch::after {
    font-size: 0.72rem;
  }
}

#adminReplyMessage {
  resize: none;
  min-height: 44px;
  max-height: 140px;
  overflow-y: hidden;
}

#adminSupportMessages .fj-chat-msg.user {
  background: var(--fj-white);
  color: #111827;
  border: 1px solid #e5e7eb;
  border-top-right-radius: var(--fj-radius-lg);
  border-top-left-radius: var(--fj-radius);
}

#adminSupportMessages .fj-chat-msg.admin {
  background: var(--fj-accent);
  color: #ffffff;
  border-top-left-radius: var(--fj-radius-lg);
  border-top-right-radius: var(--fj-radius);
}

#adminSupportMessages .fj-chat-msg-wrap.user {
  justify-content: flex-start;
}

#adminSupportMessages .fj-chat-msg-wrap.admin {
  justify-content: flex-end;
}

#adminSupportMessages .fj-chat-msg-wrap.user .fj-chat-msg-block {
  align-items: flex-start;
}

#adminSupportMessages .fj-chat-msg-wrap.admin .fj-chat-msg-block {
  align-items: flex-end;
}

.support-row-link {
  cursor: pointer;
  transition: background-color .15s ease;
}

.support-row-link:hover > td {
  background-color: rgba(0, 0, 0, 0.04) !important;
}

.support-side-list {
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}

.support-side-list::-webkit-scrollbar {
  width: 6px;
}

.support-side-list::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--fj-radius-o);
}

.support-side-tabs {
  gap: 8px;
}

.support-side-tabs .nav-link {
  border-radius: var(--fj-radius-o);
  padding: 0.45rem 0.9rem;
  color: #111827;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  font-weight: 600;
}

.support-side-tabs .nav-link.active {
  background: #111827;
  color: var(--fj-white);
  border-color: #111827;
}

.support-card-item {
  border: 1px solid #e5e7eb;
  border-radius: var(--fj-radius-lg);
  padding: 12px;
  background: var(--fj-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.support-right-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.support-right-content {
  flex: 1;
  overflow-y: auto;
}

#adminSupportAlertArea:empty {
  display: none;
}

/* Autofill fix (Chrome / Edge / Brave) */
/* AUTOFILL APENAS NO MODAL */
.fj-auth-modal input:-webkit-autofill,
.fj-auth-modal input:-webkit-autofill:hover,
.fj-auth-modal input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px rgba(36,36,36,0.9) inset !important;
  box-shadow: 0 0 0px 1000px rgba(36,36,36,0.9) inset !important;
  -webkit-text-fill-color: #fff !important;
}
/* AUTOFILL PARA INPUTS NORMAIS */
.form-control:-webkit-autofill,
.form-control:-webkit-autofill:hover,
.form-control:-webkit-autofill:focus {

  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;

  -webkit-text-fill-color: #000 !important;
}

#passwordHelp {
  cursor: pointer;
}

.alert-warning a{
  color: var(--fj-card-text);
}

.alert-warning a:hover{
  color: var(--fj-accent);
}

.popover {
  max-width: 420px;
}

.popover .popover-body {
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* =========================
   NAVBAR
========================= */

.fj-header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navbar.fj-nav{
  background: transparent !important;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* links da navbar */
.navbar.fj-nav .nav-link,
.navbar.fj-nav .navbar-brand,
.navbar.fj-nav .dropdown-toggle{
  color:#fff !important;
}

/* hover */
.navbar.fj-nav .nav-link:hover{
  color:#e11d2e !important;
}

/* esconder logo na home quando está no topo */
.home .fj-nav:not(.is-scrolled) .navbar-brand{
  opacity:0;
  visibility:hidden;
}

/* mostrar logo quando faz scroll */
.home .fj-nav.is-scrolled .navbar-brand{
  opacity:1;
  visibility:visible;
}

/* animação suave */
.fj-nav .navbar-brand{
  transition:opacity .25s ease;
}

/* navbar scroll */
.navbar.fj-nav.is-scrolled,
.navbar.fj-nav.menu-open{
  position: fixed;
  top:0;
  left:0;
  width:100%;
  background: var(--fj-navbar-bg) !important;
  backdrop-filter: blur(10px);
  box-shadow:0 12px 30px rgba(0,0,0,.18);
}

@media (max-width: 991.98px) {
  .navbar.fj-nav .navbar-collapse {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }

  .navbar.fj-nav.menu-open .navbar-collapse {
    padding-top: 1rem;
  }

  .navbar.fj-nav.menu-open .nav-link {
    color: #fff !important;
  }
}

/*btn toogle mobile*/
.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active {
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.fj-toggler-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: inline-block;
}

.fj-toggler-icon span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: white;
  left: 0;
  transition: all 0.3s ease;
}

.fj-toggler-icon span:nth-child(1) { top: 0; }
.fj-toggler-icon span:nth-child(2) { top: 7px; }
.fj-toggler-icon span:nth-child(3) { top: 14px; }

/* estado aberto */
.navbar-toggler[aria-expanded="true"] .fj-toggler-icon span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler[aria-expanded="true"] .fj-toggler-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .fj-toggler-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 7px;
}

/* SEARCH - NAVBAR  */
.fj-search-wrap{
  position: relative;
  display: flex;
  align-items: center;
}
.fj-search-form{
  position: relative;
  display: flex;
  align-items: center;
}
.fj-search-toggle{
  color: var(--fj-white);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: var(--fj-radius-o);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -26px; 
  font-size: 22px;
  transition:opacity .2s ease;
}
.fj-search-input{
  width: 0;
  opacity: 0;
  border: none;
  outline: none;
  background: transparent;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--fj-white);
  height: 42px;
  border-radius: var(--fj-radius-o);
  padding: 0 15px;
  transition: width .25s ease, opacity .2s ease, padding .25s ease;
  pointer-events: none;
}
.fj-search-input, 
.fj-search-submit{ 
  margin-right: 30px; 
  box-sizing: border-box;
}
.fj-search-submit{
  display: none;
  color: var(--fj-white);
  position: absolute;
  top: 3px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}
.fj-search-form.is-open .fj-search-toggle{
  display:none;
  opacity:0;
}
.fj-search-form.is-open .fj-search-input{
  margin-left:0;
  width: 250px;
  opacity: 1;
  pointer-events: auto;
  padding-right: 36px;
  border: 1px solid rgba(85, 85, 85, 0.6);
}
.fj-search-form.is-open .fj-search-submit{
  display: block;
  
}
.fj-search-toggle:hover,
.fj-search-submit:hover{
  color: #e11d2e;
}

/* =========================
   HERO
========================= */
.hero{
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center 0%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.50) 36%,
      rgba(0,0,0,.20) 68%,
      rgba(0,0,0,.08) 100%
    );
}

.hero-wrap{
  position: relative;
  z-index: 20;
  width: 100%;
}

.hero-content{
  color: var(--fj-white);
  max-width: 560px;
  padding-top: 70px;
}

.hero-logo{
  max-width: 200px;
  margin-bottom: 1rem;
}

.hero-kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  opacity: .78;
  margin-bottom: .9rem;
}

.hero-title{
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .98;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-subtitle{
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: .9;
  max-width: 500px;
  margin-bottom: 1.8rem;
}

.hero-actions .btn{
  min-width: 165px;
}

.hero-btn-primary{
  font-weight: 700;
}

/* =========================
   SECTIONS
========================= */
.fj-usp-bar{
  background: #202020 !important;
  color: var(--fj-white);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}

.fj-usp-item{
  font-size: .95rem;
  opacity: .88;
  letter-spacing: .02em;
}

.section-kicker{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  opacity: .72;
}

.section-title{
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
}

.section-text{
  font-size: 1rem;
  line-height: 1.8;
  opacity: .85;
  max-width: 560px;
}

/* =========================
   Homepage panel
========================= */

.fj-home-panel{
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.fj-home-panel--dark{
  background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
  color: #fff;
}

.fj-home-panel--light{
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%)  !important;
  color: #111;
}

.fj-home-panel-badge{
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(225, 29, 46, 0.14);
  color: #e11d2e;
}

.fj-home-panel-title{
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 16px;
}

.fj-home-panel-text{
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 0;
  opacity: .95;
}

.fj-home-panel-image-wrap{
  position: relative;
}

.fj-home-panel-image{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.fj-home-panel--light .fj-home-panel-secondary-btn{
  border-color: #212529;
  color: #212529;
}

.fj-home-panel--light .fj-home-panel-secondary-btn:hover{
  background: #212529;
  color: #fff;
}

/* =========================
   CATEGORY CARDS
========================= */
.fj-category-card{
  display:block;
  background:#151519;
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--fj-radius-lg);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  color:var(--fj-white);
  height:100%;
}

.fj-category-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.25);
  border-color:rgba(255,255,255,.12);
}

.fj-category-image-wrap{
  position:relative;
  aspect-ratio:4 / 4.5;
  overflow:hidden;
  background:#151519;
  margin-bottom:-1px;
  isolation:isolate;
}

.fj-category-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.fj-category-body{
  position:relative;
  z-index:2;
  background:#151519;
  padding:1.2rem 1.2rem 1.4rem;
  border-top:0 !important;
}

.fj-category-body h3{
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.fj-category-body span{
  color: rgba(255,255,255,.7);
  font-size: .95rem;
}

.fj-category-slider {
  position: relative;
  overflow: hidden;
}

.fj-category-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .6s ease;
}

.fj-category-slide.active{
  opacity:1;
}

.fj-category-image-wrap {
  position: relative;
}

.fj-category-image-wrap::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:2px;
  background:#151519;
  z-index:2;
  pointer-events:none;
}

.fj-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--fj-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .35rem .65rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.fj-category-product-name{
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  z-index:5;

  min-height:44px;
  display:flex;
  align-items:center;

  background:rgba(0,0,0,.25);
  backdrop-filter:blur(2px);

  opacity:0;
  transform:translateY(6px);

  transition:opacity .45s ease, transform .45s ease;
}

.fj-category-product-name span{
  padding:0 14px;

  color:#fff;
  text-shadow:0 1px 3px rgba(0,0,0,.35);
  font-size:.82rem;
  font-weight:600;

  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;

  width:100%;
}

.fj-category-product-name.active{
  opacity:1;
  transform:translateY(0);
}

/* =========================
   ABOUT BLOCK
========================= */
.fj-brand-block{
  padding-right: 1rem;
}

.fj-about-home{
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.fj-about-home img{
  transition: transform .4s ease, box-shadow .4s ease;
}

.fj-about-home img:hover{
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991.98px){
  .hero{
    min-height: 88vh;
    background-position: center;
  }

  .hero-content{
    max-width: 100%;
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-actions{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem !important;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .hero-actions .btn{
    width: 85%;
  }
}

@media (min-width: 1200px) {
  .col-xl-custom-5 {
    width: 20%;
  }
}

@media (max-width: 576px) {
  .product-card .card-body {
    padding: 6px 2px 2px !important;
  }

  .card-name {
    font-size: 0.82rem;
    line-height: 1.1;
    margin-bottom: 2px;
  }

  .card-desc {
    display: none;
  }

  .card-price {
    font-size: 0.88rem;
    line-height: 1.1;
  }

  .wishlist-btn {
    width: 28px;
    height: 28px;
  }

  .badge-new {
    font-size: 9px;
    padding: 4px 6px;
  }

  .fj-pimg {
    aspect-ratio: 1 / 1.15;
    border-radius: var(--fj-radius);
  }
}

.form-control,
.form-select{
  background:var(--fj-form);
  color:var(--fj-form-text);
  border: 1px solid var(--fj-border);
}

.form-control::placeholder{
  color:var(--fj-muted);
}

/* =========================
  Account
========================= */
.account-menu{
  position: sticky;
  top:100px;
  align-self: flex-start;
  transition: top .2s ease;
}

.account-menu .card {
  border-radius: var(--fj-radius);
}

.account-menu .btn.active{
  background: var(--fj-accent) !important;
  color: var(--fj-white) !important;
}

@media (max-width: 991.98px) {
  .account-menu {
    position: static;
    top: auto;
    align-self: auto;
    margin-bottom: 1rem;
  }

  .account-menu .card {
    border-radius: var(--fj-radius-md);
    padding: 1rem !important;
  }

  .account-menu .d-grid {
    gap: 0.75rem !important;
  }

  .account-menu .btn {
    padding: 0.9rem 1rem;
    font-size: 0.98rem;
    border-radius: var(--fj-radius-md);
  }
}

@media (max-width: 576px) {
  .account-menu .card {
    padding: 0.95rem !important;
  }

  .account-menu .fw-bold {
    margin-bottom: 0.85rem !important;
    font-size: 1rem;
  }

  .account-menu .btn {
    font-size: 0.95rem;
    padding: 0.85rem 0.95rem;
  }
}

/* Modal - login - Password */
.fj-password-meter{
  height: 8px;
  background: #e5e7eb;
  border-radius: var(--fj-radius-o);
  overflow: hidden;
}
.fj-password-meter-bar{
  height: 100%;
  width: 0;
  transition: width .2s ease;
  border-radius: var(--fj-radius-o);
}
.fj-password-meter-bar.strength-weak{
  width: 33%;
  background: #ef4444;
}
.fj-password-meter-bar.strength-medium{
  width: 66%;
  background: #f59e0b;
}
.fj-password-meter-bar.strength-strong{
  width: 100%;
  background: #22c55e;
}

/* =========================================================
   FJ - ORDERS (GLOBAL)
========================================================= */
/* ACCOUNT - ORDERS*/
.orders-card {
  border: 1px solid #eee;
  border-radius: var(--fj-radius-md);
  background: var(--fj-white);
  color: #000;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.orders-card:hover {
  border-color: var(--fj-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.orders-filter-box {
  background: #f8f9fa;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 1rem;
  padding: 1rem;
}

.orders-filter-box .form-control,
.orders-filter-box .form-select {
  border-radius: 999px;
}

.orders-filter-actions .btn {
  border-radius: 999px;
}

@media (max-width: 767.98px) {
  .orders-filter-actions {
    justify-content: stretch !important;
  }

  .orders-filter-actions .btn {
    width: 100%;
  }
}

/* WRAPPER */
.fj-order-card,
.fj-order-item-card {
  border-radius: var(--fj-radius-lg);
}

.fj-order-head-card{
  border-radius: var(--fj-radius);
}

/* GENERIC CARD STYLE */
.fj-order-card,
.fj-order-head-card,
.fj-order-item-card {
  border: 1px solid var(--fj-border-soft);
  background: var(--fj-white);
  transition: all .18s ease;
}

.card-hover:hover {
  border-color: #dcdcdc;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* TEXT */
.fj-order-number {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fj-black);
}

.fj-order-meta {
  font-size: .9rem;
  color: #6c757d;
}

.fj-order-meta-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #6c757d;
  margin-bottom: 4px;
}

.fj-order-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fj-black);
}

.fj-order-summary-total {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--fj-black);
}

/* =========================================================
   BADGES (GLOBAL - BOOTSTRAP OVERRIDE)
========================================================= */

.badge {
  border-radius: var(--fj-radius);
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: var(--fj-accent-dark);
}

/* =========================================================
   ACTIONS / BUTTONS
========================================================= */

.fj-order-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
}

.fj-order-statuses,
.fj-order-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fj-order-statuses {
  justify-content: flex-end;
}

.fj-order-badges {
  justify-content: flex-end;
}

.fj-order-view-btn {
  min-width: 145px;
}

/* =========================================================
   ORDER ITEMS
========================================================= */

.fj-order-item-thumb {
  width: 76px;
  height: 96px;
  border-radius: var(--fj-radius-md);
  overflow: hidden;
  background: #f7f7f7;
  flex: 0 0 auto;
}

.fj-order-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fj-order-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fj-black);
  text-decoration: none;
}

.fj-order-item-name:hover {
  color: #e11d2e;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767.98px) {
  .fj-order-actions {
    align-items: flex-start;
    min-width: 100%;
    margin-top: 10px;
  }

  .fj-order-statuses,
  .fj-order-badges {
    justify-content: flex-start;
  }

  .fj-order-view-btn {
    width: 100%;
  }

  .fj-order-item-thumb {
    width: 64px;
    height: 82px;
  }
}

.card, .btn{
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.card{
  background: var(--fj-card) !important;
  border: 1px solid var(--fj-border);
  color: var(--fj-card-text);
  border-radius: var(--fj-radius);
}

.fj-order-status{
  display:inline-block;
  padding:6px 10px;
  border-radius: var(--fj-radius-o);
  font-size:12px;
  font-weight:600;
  border:1px solid rgba(15,23,42,.08);
  background:#f8fafc;
}

.fj-thumbs{
  display:flex;
  gap:10px;
  overflow:auto;
  padding:20px;
}
.fj-thumb{
  width:72px;
  height:72px;
  border-radius: var(--fj-radius-md);
  object-fit:cover;
  cursor:pointer;
  border:1px solid rgba(15,23,42,.14);
  opacity:.85;
  transition: transform .15s ease, opacity .15s ease, border-color .15s ease;
  flex: 0 0 auto;
}
.fj-thumb:hover{
  opacity:1;
  transform: translateY(-1px);
  border-color: rgba(225,29,46,.45); /* vermelho */
}
.fj-thumb.is-active{
  opacity:1;
  border-color: rgba(225,29,46,.9);
}

.fj-pimg{
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.fj-pimg img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition: opacity .22s ease, transform .35s ease;
}
.fj-pimg img.second{
  opacity:0;
  transform: scale(1.02);
}
.product-card:hover .fj-pimg img.second{
  opacity:1;
}
.product-card:hover .fj-pimg img.first{
  opacity:0;
}
@media (hover: none){
  .fj-pimg img.second{ display:none; }
  .fj-pimg img.first{ opacity:1 !important; }
}
.product-card .fj-pimg img.first,
.product-card .fj-pimg img.second{
  transform: scale(1.0);
}
.product-card:hover .fj-pimg img.second{
  transform: scale(1.04);
}
.fj-quickadd{
  position:absolute;
  left:12px; right:12px; bottom:12px;
  opacity:0;
  transform: translateY(8px);
  transition: .18s ease;
}
.product-card{ position:relative; overflow:hidden; }
.product-card:hover .fj-quickadd{
  opacity:1;
  transform:none;
}

.product-card .card-body {
  padding: 0 .85rem .35rem .85rem !important;
}

.product-card .h6 {
  font-size: .95rem;
  line-height: 1.2;
}

.product-card .text-muted.small {
  font-size: .82rem;
  line-height: 1.35;
}

.fj-product-tabs {
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 15px;
  gap: 6px;
}

.fj-product-tabs .nav-link {
  border: 0;
  border-radius: var(--fj-radius-o);
  color: #555;
  font-weight: 600;
  padding: 7px 12px;
  background: transparent;
  font-size: .92rem;
  transition: all .18s ease;
}

.fj-product-tabs .nav-link:hover {
  color: var(--fj-black);
  background: #f3f3f3;
}

.fj-product-tabs .nav-link.active {
  color: var(--fj-white);
  background: #111;
}

.fj-product-tab-content {
  min-height: 72px;
}

.fj-tab-text {
  line-height: 1.65;
  white-space: normal;
  word-break: break-word;
}

@media (max-width: 576px) {
  .fj-product-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .fj-product-tabs::-webkit-scrollbar {
    display: none;
  }

  .fj-product-tabs .nav-link {
    flex: 0 0 auto;
    font-size: .88rem;
    padding: 7px 11px;
  }

  .fj-product-tab-content {
    min-height: 60px;
  }
}

.fj-size-guide-btn{
  color: var(--fj-accent) !important;
  font-size: 14px;
}

.fj-size-guide-btn:hover,
.fj-size-guide-btn:active{
  color: var(--fj-accent-dark) !important;
  background: none !important;
}

.fj-card-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--fj-card-soft);
  border-radius: inherit;
  padding: 20px;
}

.fj-card-placeholder-logo{
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
  color: rgba(0,0,0,.18);
}

.fj-card-placeholder-text{
  margin-top: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(0,0,0,.35);
}

.fj-prod-media-wrap{
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.fj-prod-media{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fj-prod-placeholder{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.fj-prod-placeholder-logo{
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(0, 0, 0, 0.18);
}

.fj-prod-placeholder-text{
  margin-top: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(0, 0, 0, 0.35);
}

.fj-thumb-placeholder{
  width: 72px;
  height: 72px;
  border-radius: var(--fj-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 700;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 991px){
  .fj-prod-media-wrap{
    height: 360px;
  }
}

/* =========================
   AUTH MODAL - FJ LAB
========================= */
.fj-auth-modal{
  background-color: rgba(0,0,0,0.3) !important;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.fj-auth-modal .modal-dialog{
  max-width: 600px;
}

.fj-auth-modal .modal-content{
  background: rgba(52, 52, 52, 0.8) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  border-radius: var(--fj-radius-lg);
  color: var(--fj-white);
}

.fj-auth-title{
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fj-white);
}

.fj-auth-subtitle{
  color: rgba(255,255,255,.62);
  font-size: .98rem;
  line-height: 1.5;
}

.fj-auth-close{
  filter: invert(1);
  opacity: .72;
}

.fj-auth-close:hover{
  opacity: 1;
}

.fj-auth-switch{
  display: inline-flex;
  gap: 10px;
}

/*========================
  BOTÕES
========================*/

/* Global click/tap effect for all buttons except .fj-toggle-password */
button:not(.fj-toggle-password),
.btn:not(.fj-toggle-password),
a.btn:not(.fj-toggle-password),
a.nav-link:not(.fj-toggle-password) {
  transition:
    background-color .15s ease,
    border-color .15s ease,
    color .15s ease,
    transform .08s ease,
    box-shadow .12s ease !important;

  -webkit-tap-highlight-color: transparent;
}

button:not(.fj-toggle-password):active,
button:not(.fj-toggle-password).active,
.btn:not(.fj-toggle-password):active,
.btn:not(.fj-toggle-password).active,
a.btn:not(.fj-toggle-password):active,
a.btn:not(.fj-toggle-password).active,
a.nav-link:not(.fj-toggle-password):active,
a.nav-link:not(.fj-toggle-password).active {
  transform: scale(0.97) !important;
  box-shadow: none !important;
}

button:not(.fj-toggle-password):focus,
button:not(.fj-toggle-password):focus-visible,
.btn:not(.fj-toggle-password):focus,
.btn:not(.fj-toggle-password):focus-visible,
a.btn:not(.fj-toggle-password):focus,
a.btn:not(.fj-toggle-password):focus-visible,
a.nav-link:not(.fj-toggle-password):focus,
a.nav-link:not(.fj-toggle-password):focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.btn-log{
  padding: 14px 24px;
  background: rgba(255,255,255,.92);
  color: #111827;
  border: 1px solid #999999;
  border-radius: var(--fj-radius-lg);
  font-weight: 600;
  transition: all .18s ease;
  margin-right: 0;
}

.btn-log:hover{
  background: #ffffff;
  color: #111827;
  border-color: rgba(255,255,255,.24);
}

.btn-log.active{
  background: var(--fj-accent);
  border-color: var(--fj-accent);
  color: #fff;
}

.cont .btn{
  background: transparent;
  color: var(--fj-black);
}

.cont .btn:hover {
  background: var(--fj-black);
  color: var(--fj-white);
  transform: translateY(-1px);
  transition: 120ms ease;
}

.btn-fj{
  background: var(--fj-accent) !important;
  border-color: var(--fj-accent) !important;
  color: #fff !important;
}

.btn-fj:hover,
.btn-fj:active{
  background: var(--fj-accent-dark) !important;
  border-color: rgba(15,23,42,.25) !important;
  color: #fff !important;
}

.btn-outline{
  border-color: rgba(15,23,42,.25) !important;
  color: #111 !important;
  background: transparent !important;
}

.btn-outline:hover,
.btn-outline:active {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}

.btn-success{
  color: var(--fj-success) !important;
}

.btn-success:hover,
.btn-success:active{
  color: #fff !important;
  background-color: var(--fj-success) !important;
}

.btn-danger{
  color: var(--fj-accent) !important;
}

.btn-danger:hover,
.btn-danger:active{
  color: #fff !important;
  background: var(--fj-accent-dark) !important;
}

.fj-legal-check {
  max-width: 320px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fj-legal-check .form-check-input {
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;

  border-radius: 6px;
  cursor: pointer;
}

.fj-legal-check .form-check-input:checked {
  background-color: var(--fj-accent);
  border-color: var(--fj-accent);
}

.fj-legal-check .form-check-label {
  font-size: 0.87rem;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
  cursor: pointer;
  margin: 0;
}

.fj-legal-check .form-check-label a {
  font-weight: 600;
}

.fj-auth-modal .form-label{
  color: rgba(255,255,255,.88);
  font-weight: 500;
  margin-bottom: .55rem;
}

.fj-auth-modal .form-control{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--fj-white);
  min-height: 52px;
  border-radius: var(--fj-radius-lg) !important;
  box-shadow: none;
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px rgba(255,255,255,.04) inset !important;
  transition: background-color 9999s ease-in-out 0s;
}

.fj-auth-modal .form-control::placeholder{
  color: rgba(255,255,255,.35);
}

.fj-auth-modal .form-control:focus{
  background: rgba(255,255,255,.06);
  border-color: rgba(225,29,46,.75);
  box-shadow: 0 0 0 4px rgba(225,29,46,.12);
  color: var(--fj-white);
}

.fj-auth-modal .form-control.is-invalid{
  border-color: rgba(255, 99, 99, .8);
  box-shadow: none;
}

.fj-auth-submit{
  min-height: 54px;
  border-radius: var(--fj-radius-lg) !important;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 8px;
}

.fj-auth-submit:disabled{
  opacity: .55;
  box-shadow: none;
}

.fj-auth-link{
  color: rgba(255,255,255,.7);
  text-decoration: none;
}

.fj-auth-link:hover{
  color: var(--fj-white);
}

.fj-auth-footer{
  color: rgba(255,255,255,.46);
  font-size: .9rem;
}

.fj-auth-modal .alert{
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--fj-radius-lg) !important;
}

.fj-password-wrapper{
position:relative;
}

.password-rules-box{
  background:#f8f9fa;
  border:1px solid #e9ecef;
  border-radius: var(--fj-radius-md);
  padding:18px;
}

.fj-password-wrapper input{
padding-right:45px;
}

.fj-toggle-password{
position:absolute;
right:10px;
top:50%;
transform:translateY(-50%);
border:none;
background:none;
cursor:pointer;
color:#999999;
font-size:18px;
opacity:0.7;
}
.fj-toggle-password:hover{
color:#efefef;
opacity:1;
}

.password-rule-ok {
  color: var(--fj-success);
}

.password-rule-missing {
  color: var(--fj-error);
}

/* password meter dentro do modal */
.fj-auth-modal .fj-password-meter{
  background: rgba(255,255,255,.08);
}

/* mobile */
@media (max-width: 576px){
  .fj-auth-modal .modal-dialog{
    margin: 1rem;
  }

  .fj-auth-title{
    font-size: 1.45rem;
  }

  .btn-log{
    width: 100%;
    padding: 12px 18px;
  }

  .fj-auth-switch{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
}

/* Buy box sticky (fica fixo ao scroll no desktop) */
.fj-buybox{
  position: sticky;
  top: 96px;              /* ajusta se a navbar for maior/menor */
}

.fj-buy-name h1{
  color: var(--fj-accent-dark);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.fj-size input{ display:none; }
.fj-size.is-disabled{
  opacity:.45;
  cursor:not-allowed;
  text-decoration: line-through;
}

.fj-sizegrid,
.fj-colorgrid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(20px, max-content));
  gap:10px;
  justify-content:start;
}

.fj-choice{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--fj-radius-o);
  background: var(--fj-white);
  cursor: pointer;
  transition: all .18s ease;
  user-select: none;
  font-weight: 300;
}

.fj-choice-color {
  border: 1px solid transparent;
  width: 32px !important;
  height: 32px !important;
}

.fj-choice-size {
  border: 1px solid #d9d9d9;
}

.fj-choice-size:hover{
  border-color: #a3a3a3;
}

.fj-choice:hover{
  transform: translateY(-1px);
}

.fj-choice input{
  display:none;
}

.fj-choice.is-disabled{
  opacity:.45;
  cursor:not-allowed;
  text-decoration: line-through;
}

.fj-choice.is-active{
  border-color: var(--fj-accent);
  font-weight: 500;
  box-shadow: 0 0 0 1px rgba(220,53,69,.15);
}

.fj-color-dot{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: var(--fj-radius-o);
  border: 1px solid rgba(15,23,42,.18);
  display: block;
}

/* =========================================================
   WISHLIST
========================================================= */
.wishlist-card {
  border: 1px solid #eee;
  border-radius: var(--fj-radius-md);
  background: var(--fj-white);
  color: #000;
  transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.wishlist-card:hover {
  border-color: var(--fj-accent) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.wishlist-name{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wishlist-desc{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wishlist-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--fj-white);
  border-radius: var(--fj-radius) var(--fj-radius) 0 0 !important;
}

.wishlist-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .25s ease;
}

.wishlist-card:hover .wishlist-img img {
  transform: scale(1.03);
}

.wishlist-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fj-card-soft);
  color: rgba(0,0,0,.3);
  font-size: 20px;
  border-radius: var(--fj-radius) var(--fj-radius) 0 0 !important;
}

.fj-hoverdrop {
  color: var(--fj-white);
}

@media (max-width: 767.98px) {
  .wishlist-placeholder {
    min-height: 180px;
  }
}

/* =========================
   TOAST
========================= */
:root {
  --toast-offset-right: 90px;
}

.fj-toast-container {
  position: fixed;
  bottom: 24px;
  right: var(--toast-offset-right);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  width: auto;
  max-width: min(420px, calc(100vw - 24px));
  pointer-events: none;
}

.toast {
  display: block !important;
  position: relative;
  border-radius: var(--fj-radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(43, 43, 43, 0.35);
  padding: 12px 16px;
  pointer-events: auto;
  width: auto !important;
  max-width: min(420px, calc(100vw - 24px)) !important;
  overflow: hidden;
  opacity: 0;
  transform: translateX(110px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.toast.fj-toast-show {
  opacity: 1;
  transform: translateX(0);
}

.toast.fj-toast-hide {
  opacity: 0;
  transform: translateX(110px);
}

.toast-body {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: normal !important;
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.35;
  padding: 0;
}

.toast-body > * {
  min-width: 0;
}

.toast-body .btn-close {
  flex: 0 0 auto;
}

.toast-body span,
.toast-body div {
  min-width: 0;
}

.toast .btn-close {
  opacity: 0.9;
}

.toast .btn-close:hover {
  opacity: 1;
}

.toast-success {
  background: var(--fj-success);
  color: var(--fj-white);
}

.toast-error {
  background: var(--fj-error);
  color: var(--fj-white);
}

.toast-info {
  background: var(--fj-info);
  color: var(--fj-white);
}

/* Barra de progresso */
.fj-toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(1);
  opacity: 0.9;
  transition: transform linear;
}

.toast-success .fj-toast-progress,
.toast-error .fj-toast-progress,
.toast-info .fj-toast-progress {
  background: rgba(0, 0, 0, 0.6);
}

/* Cart toast */
.fj-cart-toast-container {
  position: fixed;
  right: var(--toast-offset-right);
  bottom: 24px;
  z-index: 9999;
  pointer-events: none;
  max-width: min(420px, calc(100vw - 24px));
}

.fj-cart-toast-container .toast {
  max-width: min(420px, calc(100vw - 24px)) !important;
}

.fj-cart-toast-container .fj-toast-progress {
  background: #dc2626;;
}

/* Mobile */
@media (max-width: 576px) {
  :root {
    --toast-offset-right: 16px;
  }

  .fj-toast-container {
    left: 16px;
    right: 16px;
    align-items: stretch;
    max-width: none;
  }

  .fj-toast-container .toast,
  .fj-cart-toast-container .toast {
    width: 100% !important;
    max-width: 100% !important;
  }

  .fj-cart-toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .toast-body {
    white-space: normal;
  }
}

/* =========================================================
   SHOP - BASE
========================================================= */

.shop-filter-card {
  border-radius: var(--fj-radius-md);
}

.shop-filter-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.shop-filter-section + .shop-filter-section {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(187, 187, 187, 0.5);
}

/* =========================================================
   SHOP - FILTERS
========================================================= */
.fj-reset-btn {
  width: 100%;
  border: 1px solid rgba(15,23,42,.25);
  background: transparent;
  color: #111;
  border-radius: var(--fj-radius-md);
  padding: 8px 14px;
  font-weight: 500;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  -webkit-appearance: none;
}

@media (hover: hover) and (pointer: fine) {
  .fj-reset-btn:hover {
    background: #111;
    border-color: #111;
    color: #fff;
  }
}

.fj-reset-btn.is-tapping {
  background: #111 !important;
  border-color: #111 !important;
  color: #fff !important;
}

.fj-reset-btn:focus,
.fj-reset-btn:focus-visible,
.fj-reset-btn:active {
  outline: none !important;
  box-shadow: none !important;
}

.shop-filter-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-pill-check {
  position: relative;
  display: inline-flex;
  margin: 0;
}

.shop-pill-check input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

/* PRICE*/
.shop-price{
  border-radius: var(--fj-radius-o);
}

/* Category, Gender, Design Language e Sizes */
.shop-category-grid,
.shop-gender-grid,
.shop-design-language-grid,
.shop-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.shop-category-pill,
.shop-gender-pill,
.shop-design-language-pill,
.shop-size-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 11px;
  border: 1px solid #d9d9d9;
  border-radius: var(--fj-radius-o);
  background: var(--fj-white);
  color: var(--fj-black);
  font-size: .92rem;
  line-height: 1;
  cursor: pointer;
  transition: all .18s ease;
  user-select: none;
  text-align: center;
  white-space: nowrap;
}

.shop-category-pill:hover,
.shop-gender-pill:hover,
.shop-design-language-pill:hover,
.shop-size-pill:hover {
  border-color: #a3a3a3;
  transform: translateY(-1px);
}

/* COLORS */
.shop-color-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-color-only-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--fj-radius-o);
  background: transparent;
  cursor: pointer;
  transition: all .18s ease;
}

.shop-color-only-pill:hover {
  transform: translateY(-1px);
}

.shop-color-ball {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: var(--fj-radius-o);
  border: 1px solid rgba(15,23,42,.18);
  display: block;
}

/* Category + Colors + Sizes + Design Languages #active/Checked */
.shop-category-pill.active,
.shop-size-check input:checked + .shop-size-pill,
.shop-color-check input:checked + .shop-color-only-pill,
.shop-design-language-check input:checked + .shop-design-language-pill,
.shop-gender-check input:checked + .shop-gender-pill {
  font-weight: 500;
  border-color: var(--fj-accent);
  box-shadow: 0 0 0 1px rgba(220,53,69,.15);
}

@media (min-width: 992px) {
  .account-menu.shop-sticky-filters {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    transition: top .2s ease;
  }

  .account-menu.shop-sticky-filters .shop-filter-card {
    border-radius: var(--fj-radius);
    overflow: visible;
    max-height: none;
  }

  .account-menu.shop-sticky-filters .shop-filter-card form {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    max-height: calc(100dvh - 120px);
  }

  .account-menu.shop-sticky-filters .shop-filter-scroll {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .account-menu.shop-sticky-filters .shop-filter-footer {
    background: var(--fj-white);
    border-top: 1px solid rgba(187, 187, 187, 0.35);
    border-radius: 0 0 var(--fj-radius) var(--fj-radius) ;
  }

  .account-menu.shop-sticky-filters .shop-filter-scroll::-webkit-scrollbar {
    width: 6px;
  }

  .account-menu.shop-sticky-filters .shop-filter-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 999px;
  }

  .account-menu.shop-sticky-filters .shop-filter-scroll::-webkit-scrollbar-track {
    background: transparent;
  }
}

/* =========================================================
   SHOP - TOP BAR
========================================================= */

.shop-results-count {
  font-size: 0.95rem;
  color: #666;
}

.shop-sort-form,
.shop-per-page-form {
  margin: 0;
}

.shop-sort-select,
.shop-per-page-select {
  min-width: 110px;
}

.shop-top-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.shop-top-control-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.shop-top-control-group label {
  margin: 0;
  font-weight: 600;
  white-space: nowrap;
}


/* =========================================================
   SHOP - ACTIVE FILTER CHIPS
========================================================= */

.shop-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: var(--fj-radius-o);
  background: #f3f3f3;
  color: var(--fj-black);
  text-decoration: none;
  font-size: 0.9rem;
  border: 0;
}

.shop-clear-link {
  text-decoration: none;
  font-size: 0.92rem;
  border: 0;
  background: transparent;
  color: var(--fj-black);
  padding: 0;
}

/* =========================================================
   SHOP - TAGS
========================================================= */
.shop-vibe-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.shop-vibe-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.shop-vibe-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 11px;
  border-radius: var(--fj-radius-o);
  text-decoration: none;
  color: #222;
  background: #f5f5f5;
  border: 1px solid transparent;
  font-size: .92rem;
  font-weight: 500;
  transition:
    background .15s ease,
    color .15s ease,
    border-color .15s ease,
    transform .15s ease;
}

.shop-vibe-chip:hover {
  background: #ececec;
  color: #111;
}

.shop-vibe-chip.active {
  background: #111;
  color: #fff;
}

.shop-vibe-chip.active:hover {
  background: #000;
}

/* Mobile vibe accordion */
.shop-vibe-toggle {
  display: none;
}

@media (max-width: 767.98px) {
  .shop-vibe-bar {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(0,0,0,.08);
    overflow: hidden;
  }

  .shop-vibe-toggle {
    display: flex;
    width: 100%;
    border: 0;
    background: #fff;
    padding: 14px 16px;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
  }

  .shop-vibe-toggle i {
    transition: transform .15s ease;
  }

  .shop-vibe-bar.is-open .shop-vibe-toggle i {
    transform: rotate(180deg);
  }

  .shop-vibe-list {
    display: none;
    padding: 0 16px 14px;
    gap: .5rem;
  }

  .shop-vibe-bar.is-open .shop-vibe-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 576px) {
  .shop-vibe-chip {
    border-radius: var(--fj-radius-md);
  }  
}

/* =========================================================
   SHOP - PRODUCT GRID
========================================================= */
.product-recommendations-wrap .product-card {
  max-width: 130px;
}

.product-recommendations-wrap .fj-pimg {
  height: 150px;
}

.product-recommendations-wrap .card-body {
  padding: .55rem !important;
}

.product-recommendations-wrap .card-price,
.product-recommendations-wrap .card-name {
  font-size: .82rem;
  line-height: 1.2;
}

.product-recommendations-wrap .fj-card-placeholder {
  min-height: 150px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #ffffff;
  border-radius: var(--fj-radius);
  background: var(--fj-white);
}

.product-card:hover {
  border-color: var(--fj-accent-dark);
}

.product-card .card-body {
  padding: .85rem;
}

.card-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  word-break: break-word;
  max-width: 14em;
  font-weight: bold;
  font-size: medium;
}

.card-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  word-break: break-word;
  min-height: 2.6em;
  font-size: small;
}

.card-price {
  color: var(--fj-card-muted);
  font-size: medium;
  font-weight: bold;
}

.fj-pimg {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}

.fj-pimg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .22s ease, transform .35s ease;
}

.fj-pimg img.second {
  opacity: 0;
  transform: scale(1.02);
}

.product-card:hover .fj-pimg img.second {
  opacity: 1;
}

.product-card:hover .fj-pimg img.first {
  opacity: 0;
}

.fj-prod-media-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.fj-product-image-modal .modal-content {
  background:#050505;
  border:0;
}

.fj-product-image-close {
  position:absolute;
  top:20px;
  right:24px;
  z-index:20;
  filter:invert(1);
  opacity:.85;
}

.fj-product-image-modal-inner {
  width:100%;
  height:100%;
  min-height:100vh;

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

  padding:12px;
}

.fj-product-image-modal-img {
  width:auto;
  height:auto;

  max-width:98vw;
  max-height:98vh;

  object-fit:contain;
}

@media (hover: none) {
  .fj-pimg img.second {
    display: none;
  }

  .fj-pimg img.first {
    opacity: 1 !important;
  }
}

.product-card .fj-pimg img.first,
.product-card .fj-pimg img.second {
  transform: scale(1);
}

.product-card:hover .fj-pimg img.second {
  transform: scale(1.04);
}

/* Reviews */
.fj-review-card{
  background:#f8f9fa;
  border:1px solid #e9ecef;
  border-radius:1rem;
  padding:1rem;
}
.fj-review-box{
  background:#fff;
  border:1px solid #dee2e6;
  border-radius:.9rem;
  padding:.9rem 1rem;
}
.fj-review-text{
  min-height:110px;
  white-space:pre-line;
  line-height:1.6;
}
.fj-review-stars{
  color:#f4b400;
  font-size:1.1rem;
  line-height:1;
}
.fj-review-meta .small{
  line-height:1.2;
}
.fj-review-actions-row{
  display:flex;
  flex-wrap:wrap;
  gap:.5rem;
  align-items:center;
}
.fj-review-actions-row .form-select,
.fj-review-actions-row .form-control{
  background:#fff;
}
@media (max-width: 991.98px){
  .fj-review-text{
    min-height:auto;
  }
}

.fj-badge-own-review{
  background: var(--fj-accent);
  color: var(--fj-white);
}

/* =========================================================
   SHOP - PRODUCT BADGES / WISHLIST
========================================================= */

.badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 30;
  background: var(--fj-error);
  color: var(--fj-white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  border-radius: var(--fj-radius-o);
  letter-spacing: .5px;
}

.wishlist-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  transition: transform .18s ease, box-shadow .18s ease, color .18s ease, background-color .18s ease;
  background-color: rgba(255, 255, 255, 0.8) !important;
}

.wishlist-btn:hover {
  color: var(--fj-accent) !important;
  border-color: #212529;
  background-color: rgba(244, 244, 244, 0.8) !important;
  transform: scale(1.06);
}

.wishlist-btn i {
  display: block;
  position: relative;
  top: 1px;
  line-height: 1;
  font-size: 1rem;
  transform: translateY(1px) scale(1); /* posição base */
  transition: transform .18s ease, color .18s ease;
}

.wishlist-btn:hover i {
  transform: translateY(1px) scale(1.3); /* mantém alinhamento */
  color: var(--fj-accent);
}

/* Estado quando está na wishlist */
.wishlist-btn.is-wishlisted,
.wishlist-btn.active {
  color: var(--fj-accent) !important;
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.12);
}

/* Animação no clique */
.wishlist-btn.wishlist-pop {
  animation: wishlist-pop .38s ease;
}

.wishlist-btn.wishlist-pop i {
  animation: wishlist-heart-pop .38s ease;
  color: var(--fj-accent);
}

@keyframes wishlist-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.18); }
  75%  { transform: scale(.94); }
  100% { transform: scale(1); }
}

@keyframes wishlist-heart-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.35); }
  75%  { transform: scale(.9); }
  100% { transform: scale(1); }
}

/* =========================================================
  PAGINATION
========================================================= */

.page-link {
  color: #000;
}

.page-link:hover {
  color:#e11d2e;
}

.page-item.active .page-link {
  background-color: #e11d2e;
  border-color: #e11d2e;
  color: var(--fj-white);
}

.page-link:focus,
.page-link:active {
  outline: none !important;
  box-shadow: none !important;
}


/* =========================================================
   SHOP - DESKTOP / TABLET
========================================================= */

.shop-sticky-filters {
  position: static;
}

#shopFiltersWrap {
  overflow: visible !important;
}


/* =========================================================
   SHOP - MOBILE
========================================================= */

@media (max-width: 991.98px) {
  #shopFiltersWrap {
    display: none;
  }

  .shop-sort-form .form-select {
    width: 120px;
  }

  .shop-per-page-form .form-select {
    width: 80px;
  }
}

@media (max-width: 576px) {

  /* main shop container */
  .cont {
    padding: 18px 10px !important;
  }

  .inner-page .site-main{
    margin-top: 75px;
  }

  /* top spacing / controls */
  .shop-top-controls {
    gap: 10px;
  }

  .shop-top-control-group {
    gap: 6px;
  }

  .shop-top-control-group label {
    font-size: 0.88rem;
  }

  .shop-per-page-select {
    min-width: auto ;
    font-size: 0.9rem;
  }

  .shop-sort-select{
    min-width: 160px;
    font-size: 0.9rem;
  }

  .shop-sort-form .form-select {
    width: 110px;
  }

  .shop-per-page-form .form-select {
    width: 72px;
  }

  /* active chips */
  .shop-chip {
    font-size: 0.8rem;
    padding: 5px 9px;
  }

  .shop-clear-link {
    font-size: 0.82rem;
  }

  /* product grid spacing */
  .row.g-3 {
    --bs-gutter-x: 8px;
    --bs-gutter-y: 10px;
  }

  /* remove heavy card feeling on mobile */
  .product-card {
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .product-card:hover {
    border: 0 !important;
    box-shadow: none !important;
    transform: none !important;
  }

  .product-card .card-body {
    padding: 8px 2px 4px !important;
  }

  /* image more compact */
  .fj-pimg {
    aspect-ratio: 1 / 1.2;
    border-radius: var(--fj-radius-md);
    overflow: hidden;
  }

  /* text compact */
  .card-name {
    font-size: 0.92rem;
    line-height: 1.15;
    max-width: 100%;
    margin-bottom: 3px;
  }

  .card-desc {
    -webkit-line-clamp: 1;
    line-clamp: 1;
    min-height: 1.2em;
    font-size: 0.78rem;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .card-price {
    font-size: 0.95rem;
    line-height: 1.1;
  }

  /* wishlist smaller */
  .wishlist-btn {
    width: 32px;
    height: 32px;
  }

  .wishlist-btn i {
    transform: translateY(0.5px); /* micro ajuste fino */
  }

  /* badge smaller */
  .badge-new {
    top: 6px;
    left: 6px;
    font-size: 10px;
    padding: 5px 8px;
  }

  /* results heading */
  .shop-results-count {
    font-size: 0.85rem;
  }
}

/* =========================================================
   CART
========================================================= */

.cart-desktop-image {
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: var(--fj-radius-md);
  overflow: hidden;
  background: var(--fj-card-soft);
}

.cart-desktop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-name {
  transition: color .25s ease;
}

.cart-item-row:has(.cart-desktop-image:hover) .cart-item-name {
  color: var(--fj-accent);
}

.cart-item-meta {
  line-height: 1.45;
}

.cart-remove-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-mobile-list {
  display: none;
}

.cart-summary-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ececec;
}

.cart-summary-total {
  font-size: 1.15rem;
}

/* =========================================================
   CHECKOUT
========================================================= */
.fj-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #000;
}

.fj-check .fj-check-input {
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;

  border-radius: 6px;
  cursor: pointer;
}

.fj-check .fj-check-input:checked {
  background-color: var(--fj-accent);
  border-color: var(--fj-accent);
}

.fj-check .fj-check-label{
  font-size: 0.87rem;
  line-height: 1.45;
  cursor: pointer;
  margin: 0;
}

.fj-check .fj-check-label a {
  font-weight: 600;
  text-decoration: none;
  color: #000;
}

.fj-check .fj-check-label a:hover {
  color: var(--fj-accent);
}

/* =========================================================
   QUANTITY
========================================================= */
.fj-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: var(--fj-radius-o);
  overflow: hidden;
  background: var(--fj-white);
}

.fj-qty-btn {
  width: 34px;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: var(--fj-black);
  cursor: pointer;
  transition: background .18s ease;
}

.fj-qty-btn:hover {
  background: var(--fj-card-soft);
}

.fj-qty-input {
  width: 44px;
  height: 100%;
  border: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fj-black);
  background: var(--fj-white);
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
  padding: 0;
}

.fj-qty-input::-webkit-outer-spin-button,
.fj-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .cart-desktop-table {
    display: none;
  }

  .cart-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .cart-mobile-item {
    background: var(--fj-white);
    border: 1px solid #e9e9e9;
    border-radius: var(--fj-radius-lg);
    padding: 14px;
  }

  .cart-mobile-top {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    align-items: start;
  }

  .cart-mobile-image {
    width: 72px;
    height: 72px;
    border-radius: var(--fj-radius-md);
    overflow: hidden;
    background: var(--fj-card-soft);
    display: block;
    flex-shrink: 0;
  }

  .cart-mobile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .cart-mobile-name {
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
    margin-bottom: 4px;
    color: var(--fj-black);
    display: inline-block;
  }

  .cart-mobile-meta {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.4;
  }

  .cart-mobile-remove-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--fj-radius-md);
  }

  .cart-mobile-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: end;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #eee;
  }

  .cart-mobile-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 76px;
  }

  .cart-mobile-col-center {
    align-items: center;
    text-align: center;
  }

  .cart-mobile-col-end {
    align-items: flex-end;
    text-align: right;
  }

  .cart-mobile-value {
    font-size: 1rem;
    line-height: 1.2;
    padding: 10px 0;
    display: flex;
    align-items: flex-end;
  }

  .cart-mobile-col .small,
  .cart-mobile-col-center .small,
  .cart-mobile-col-end .small {
    margin-bottom: 8px;
  }

  .cart-mobile-col-center .fj-qty {
    height: 38px;
  }

  .cart-mobile-col-center .fj-qty-btn {
    width: 32px;
    font-size: 17px;
  }

  .cart-mobile-col-center .fj-qty-input {
    width: 40px;
    font-size: 0.95rem;
  }

  .cart-summary-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-summary-total {
    font-size: 1.35rem;
  }

  .cart-summary-wrap .btn {
    width: 100%;
  }
}

/* =========================================================
   ABOUT
========================================================= */
.about-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--fj-radius-lg);
  background:
    linear-gradient(135deg, rgba(0,0,0,.88), rgba(20,20,20,.92)),
    url('/assets/images/background.png') center/cover no-repeat;
  color: var(--fj-white);
  padding: 70px 28px;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(225,29,46,.14), transparent 45%);
  pointer-events: none;
}

.about-hero > * {
  position: relative;
  z-index: 1;
}

.about-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
}

.about-title {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .95;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}

.about-subtitle {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,.86);
  max-width: 700px;
  margin-bottom: 0;
}

.about-section {
  padding: 26px 0;
}

.about-card {
  border: 0;
  border-radius: var(--fj-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  background: var(--fj-white);
  height: 100%;
}

.about-card-body {
  padding: 28px;
}

.about-kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #e11d2e;
  margin-bottom: 10px;
}

.about-heading {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--fj-black);
}

.about-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: .98rem;
}

.about-text + .about-text {
  margin-top: 14px;
}

.about-quote {
  border-radius: var(--fj-radius-lg);
  background: #111;
  color: var(--fj-white);
  padding: 30px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
}

.about-quote-text {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.25;
  font-weight: 800;
  margin: 0;
}

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

.about-pillar {
  border: 1px solid var(--fj-border-soft);
  border-radius: var(--fj-radius-lg);
  padding: 22px 18px;
  background: var(--fj-white);
  height: 100%;
}

.about-pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--fj-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,29,46,.08);
  color: #e11d2e;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.about-pillar-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--fj-black);
  margin-bottom: 8px;
}

.about-pillar-text {
  font-size: .93rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.about-cta {
  border-radius: var(--fj-radius-lg);
  background: linear-gradient(135deg, #111, #1c1c1c);
  color: var(--fj-white);
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.about-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.about-cta p {
  color: rgba(255,255,255,.82);
  margin-bottom: 0;
  line-height: 1.75;
}

.about-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.about-btn{
  border-color: var(--fj-white);
  border-radius: var(--fj-radius-o);
  color: var(--fj-white) !important;
  padding: 10px 20px;
  font-weight: 600;
  color: var(--fj-white) !important;
}

.about-btn.btn:hover{
  background: var(--fj-white) !important;
  color: var(--fj-black) !important;
}

@media (max-width: 991.98px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 52px 22px;
    border-radius: var(--fj-radius-lg);
  }

  .about-card-body,
  .about-quote,
  .about-cta {
    padding: 24px 20px;
  }
}

/* =========================================================
   FAQ
========================================================= */

.faq-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--fj-radius-lg);
  background:
    linear-gradient(135deg, rgba(0,0,0,.88), rgba(20,20,20,.92)),
    url('/assets/images/background.png') center/cover no-repeat;
  color: var(--fj-white);
  padding: 64px 28px;
}

.faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(225,29,46,.14), transparent 45%);
  pointer-events: none;
}

.faq-hero > * {
  position: relative;
  z-index: 1;
}

.faq-eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
}

.faq-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}

.faq-subtitle {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255,255,255,.86);
  max-width: 760px;
  margin-bottom: 0;
}

.faq-section {
  padding: 8px 0 30px;
}

.faq-card,
.faq-side {
  border-radius: var(--fj-radius-lg);
}

.faq-block + .faq-block {
  margin-top: 34px;
}

.faq-kicker {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #e11d2e;
  margin-bottom: 12px;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--fj-border-soft);
  border-radius: var(--fj-radius-lg) !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  font-size: .98rem;
  padding: 18px 20px;
  box-shadow: none !important;
  background: var(--fj-white);
  color: var(--fj-black);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--fj-white);
  color: var(--fj-black);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none !important;
}

.faq-accordion .accordion-body {
  padding: 0 20px 18px;
  color: #5a5a5a;
  line-height: 1.8;
  font-size: .95rem;
}

.faq-side-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--fj-black);
  margin-bottom: 12px;
}

.faq-side-text {
  color: #666;
  line-height: 1.8;
  font-size: .96rem;
  margin-bottom: 22px;
}

.faq-contact-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--fj-border-soft);
  border-radius: var(--fj-radius-md);
  background: var(--fj-white);
}

.faq-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--fj-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(225,29,46,.08);
  color: #e11d2e;
  font-size: 1rem;
  flex: 0 0 auto;
}

.faq-contact-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #999;
  margin-bottom: 4px;
}

.faq-contact-link {
  color: var(--fj-black);
  font-weight: 600;
  text-decoration: none;
}

.faq-contact-link:hover {
  color: #e11d2e;
}

.faq-contact-text {
  color: #555;
  line-height: 1.7;
  font-size: .94rem;
}

.faq-note {
  font-size: .9rem;
  color: #666;
  line-height: 1.7;
}

.faq-side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

@media (max-width: 991.98px) {
  .faq-hero {
    padding: 50px 22px;
    border-radius: var(--fj-radius-lg);
  }

  .faq-accordion .accordion-button {
    padding: 16px 16px;
    font-size: .95rem;
  }

  .faq-accordion .accordion-body {
    padding: 0 16px 16px;
  }
}

/* =========================================================
   FOOTER
========================================================= */
footer a{
  color: var(--fj-white);
  text-decoration: none;
}

footer .dropdown-menu {
  z-index: 10050;
}

/* =========================================================
   BACK TO TOP BUTTON
========================================================= */

.back-to-top-btn {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%) translateY(10px);
  z-index: 110;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--fj-radius-o);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: var(--fj-white);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
  will-change: transform;
}

.back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.back-to-top-btn:hover {
  opacity: .92;
}

.back-to-top-btn:active,
.back-to-top-btn.active {
  transform: translateX(-50%) translateY(0) !important;
}

/* =========================================================
   POPUP/ANNOUNCEMENTS
========================================================= */
.fj-announcement-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.fj-announcement-popup-backdrop.is-visible {
  display: flex;
}

.fj-announcement-popup-wrap {
  position: relative;
  max-width: min(720px, 100%);
  width: 100%;
}

.fj-announcement-popup-close {
  position: relative;
  top: -14px;
  right: -14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

.fj-announcement-popup-close:hover {
  background: var(--fj-accent);
}

/* =========================================================
   COOKIES
========================================================= */
.fj-cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9997;
  opacity: 0;
  display: none;
  pointer-events: none;
  transform: translateY(12px);
  transition: .2s ease;
}

.fj-cookie-notice.is-visible {
  opacity: 1;
  display: block;
  pointer-events: none;
  transform: translateY(0);
}

.fj-cookie-notice-inner {
  pointer-events: auto;
  max-width: 580px;
  margin: 0 auto;
  background: #111;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 0 20px rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.fj-cookie-text {
  font-size: .875rem;
  line-height: 1.5;
}

.fj-cookie-text strong,
.fj-cookie-text span,
.fj-cookie-text a {
  display: inline-block;
}

.fj-cookie-text a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .fj-cookie-notice-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .fj-cookie-notice-inner .btn {
    width: 100%;
  }
}

/* =========================================================
   ADMIN
========================================================= */
.active-label{
  padding:10px 18px;
  border-radius: var(--fj-radius-o);
  font-weight:600;
  cursor:pointer;
  user-select:none;
  background: var(--fj-accent-dark);
  color:#fff;
  transition:.2s;
}

/* quando está checked */
.product-options-box .btn-check:checked + .btn-outline {
  background: #111;
  border-color: var(--fj-black) !important;
  color: var(--fj-white);
}

.product-options-box .btn-check:hover + .btn-outline {
  border-color: var(--fj-black) !important;
}

.product-options-box .btn-outline {
  cursor: pointer;
  user-select: none;
}

#is_active:checked + .active-label{
  background:#198754;
}

.product-options-box{
  padding:10px;
  border:1px solid #eee;
  border-radius: var(--fj-radius-md);
  background:#fafafa;
}

#is_active:checked + .active-label::after{
  content: "Active";
}

#is_active:not(:checked) + .active-label::after{
  content: "Inactive";
}

.product-options-box {
  border: 1px solid #e9ecef;
  border-radius: var(--fj-radius-lg);
  padding: 12px;
  background: var(--fj-white);
  min-height: 54px;
}

.product-options-box .btn{
  font-weight:500;
  padding:6px 14px;
}

.product-options-box .btn-select {
  border: 1px solid #ddd;
  background: var(--fj-white);
  transition: all .15s ease;
}

.product-options-box .btn-check:hover + .btn-select {
  border-color: var(--fj-black);
}

.product-options-box .btn-check:checked + .btn-select {
  background: #111;
  border-color: var(--fj-black);
  color: var(--fj-white);
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: var(--fj-radius-o);
  border: 1px solid rgba(0,0,0,0.2);
  background: var(--color);
  display: inline-block;
  flex: 0 0 14px;
}

.color-picker-wrapper:hover .color-circle {
  box-shadow: 0 0 0 2px rgba(0,0,0,0.2);
}

.is-editing .view {
  display: none;
}

.is-editing .edit {
  display: table-cell !important;
}

.js-translation-editor .form-select {
  flex: 0 0 85px;
}

.js-translation-editor .form-control {
  min-width: 0;
}

.fj-stock-inline-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.table tbody tr:hover > td {
  background: rgba(0,0,0,0.03);
  transition: background .15s ease;
}

.variant-mobile-card {
  border: 1px solid #e5e7eb;
  border-radius: var(--fj-radius-lg);
  padding: 14px;
  background: var(--fj-white);
}

.variant-mobile-head {
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ececec;
}

@media (max-width: 991.98px) {
  .variant-mobile-card .form-control {
    min-height: 44px;
    border-radius: var(--fj-radius-md);
  }
}

.fj-admin-menu .btn {
  border-radius: var(--fj-radius-o);
  padding: 8px 14px;
  font-weight: 500;
}

.fj-admin-menu .btn:hover {
  background: var(--fj-black);
  color: var(--fj-white);
}

@media (max-width: 576px) {
  .fj-admin-menu {
    gap: 8px !important;
  }

  .fj-admin-menu .btn {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }
}

/* translations */
.tr-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tr-cards {
  display: grid;
  gap: 16px;
}

.tr-card {
  border: 1px solid #a8a8a8;
  border-radius: var(--fj-radius-lg);
  background: var(--fj-white);
  overflow: hidden;
}

.tr-card-head {
  display: grid;
  grid-template-columns: minmax(220px, 2fr) minmax(150px, 1fr) 90px auto;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid #ececec;
  background: #fafafa;
  align-items: end;
}

.tr-card-body {
  padding: 16px;
}

.tr-translations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tr-field-label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #6c757d;
  margin-bottom: 6px;
}

.tr-card textarea {
  min-height: 120px;
  resize: vertical;
}

.tr-new-card {
  border-style: dashed;
}

@media (max-width: 1199.98px) {
  .tr-translations-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991.98px) {
  .tr-card-head {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .tr-delete-wrap {
    display: flex;
    justify-content: flex-end;
  }
}

/* users */
.user-row {
  cursor: pointer;
  transition: background-color .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.user-row:hover td {
  box-shadow: inset 0 0 0 9999px rgba(0,0,0,.03);
}

.user-row td {
  vertical-align: middle;
  background-clip: padding-box;
}

.user-row-admin td {
  color: var(--fj-accent)!important;
  font-weight: bold;
}

.user-row-inactive td {
  color: rgb(255, 155, 0) !important;
}

.user-row-complete td {
  color: rgb(0, 0, 0)!important;
}

.user-row-partial {
  color: rgb(144, 144, 144) !important;
}

.users-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.users-legend .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  user-select: none;
  transition: all .16s ease;
}

.users-legend .legend-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,0,0,.06);
}

.users-legend .legend-item.is-active {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
  color: #111;
  font-weight: 600;
}

.users-legend .legend-swatch {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: inline-block;
  border: 1px solid rgba(0,0,0,.08);
  flex: 0 0 16px;
}

.legend-admin   { background: var(--fj-accent); }
.legend-active  { background: rgb(0, 0, 0); }
.legend-partial { background: rgb(144, 144, 144); }
.legend-inactive{ background: rgb(255, 155, 0); }

.user-name {
  font-weight: 600;
}

.user-email {
  color: #666;
  font-size: 13px;
}

.user-location {
  white-space: nowrap;
}

.users-table td,
.users-table th {
  white-space: nowrap;
}

.users-table td.email-cell,
.users-table th.email-cell {
  min-width: 260px;
  white-space: normal;
}

.users-table td.name-cell,
.users-table th.name-cell {
  min-width: 170px;
}

.users-table td.location-cell,
.users-table th.location-cell {
  min-width: 160px;
}

.user-row.is-hidden {
  display: none;
}