/**
 * Fabnos storefront — premium medical / dental theme
 * Palette: #E53935, #111111, whites & light grays
 */
:root {
  --fabnos-red: #e53935;
  --fabnos-red-dark: #c62828;
  --fabnos-black: #111111;
  --fabnos-gray-100: #f8f9fa;
  --fabnos-gray-200: #eceff1;
  --fabnos-gray-600: #6c757d;
  --fabnos-font: "Poppins", system-ui, sans-serif;
  --fabnos-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
  --fabnos-radius: 14px;
}

html {
  scroll-behavior: smooth;
}

body.fabnos-site {
  font-family: var(--fabnos-font);
  color: var(--fabnos-black);
  background: #fff;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body.fabnos-site {
    overflow-x: hidden;
  }
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.page-loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-inner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--fabnos-gray-200);
  border-top-color: var(--fabnos-red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Top announcement bar — brand red, white text */
.top-bar--accent {
  background: linear-gradient(105deg, var(--fabnos-red-dark) 0%, var(--fabnos-red) 42%, #ef5350 100%);
  color: #fff;
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(198, 40, 40, 0.25);
}

.top-bar-inner {
  row-gap: 0.35rem;
}

.top-bar-icon {
  display: inline-flex;
  font-size: 1rem;
  opacity: 0.95;
}

.top-bar-welcome {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.98);
}

@media (max-width: 575.98px) {
  .top-bar-welcome {
    font-size: 0.75rem;
    line-height: 1.35;
  }
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.95) !important;
  font-weight: 500;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.top-bar-link:hover {
  color: #fff !important;
  opacity: 1;
}

.brand-logo {
  max-height: 56px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--fabnos-black);
  font-size: 1.75rem;
  position: relative;
}
.brand-text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #fff;
  mix-blend-mode: difference;
  opacity: 0.9;
  pointer-events: none;
}

/* Main navbar — cleaner, bolder links */
.fabnos-nav {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 8px 32px rgba(17, 17, 17, 0.07);
  backdrop-filter: saturate(1.2);
}

.fabnos-nav .navbar-brand {
  margin-right: 1.25rem;
}

.fabnos-nav .nav-link {
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.02em;
  color: var(--fabnos-black) !important;
  padding: 0.65rem 1.05rem !important;
  border-radius: 10px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.fabnos-nav .nav-link:hover {
  color: var(--fabnos-red) !important;
  background: rgba(229, 57, 53, 0.06);
}

.fabnos-nav .nav-item:not(.megamenu-wrap) .nav-link:not(.dropdown-toggle)::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 2px;
  border-radius: 2px;
  background: var(--fabnos-red);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.fabnos-nav .nav-item:not(.megamenu-wrap) .nav-link:not(.dropdown-toggle):hover::after {
  transform: scaleX(1);
}

.fabnos-nav .search-wrap .form-control {
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: var(--fabnos-gray-100);
  min-width: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

@media (min-width: 992px) {
  .fabnos-nav .search-wrap .form-control {
    min-width: 210px;
  }
}

.fabnos-nav .search-wrap .form-control:focus {
  border-color: rgba(229, 57, 53, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12);
}

.fabnos-nav .search-wrap .btn-link.text-secondary {
  color: var(--fabnos-gray-600) !important;
}

.fabnos-nav .search-wrap .btn-link:hover {
  color: var(--fabnos-red) !important;
}

.fabnos-nav .navbar-toggler {
  border-color: rgba(17, 17, 17, 0.12);
  padding: 0.45rem 0.6rem;
}

.fabnos-nav .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.2);
}

.megamenu {
  min-width: 100%;
  left: 0 !important;
  border-radius: var(--fabnos-radius);
}
.megamenu-categories-scroll {
  max-height: min(60vh, 380px);
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 17, 17, 0.25) transparent;
}
.megamenu-categories-scroll::-webkit-scrollbar {
  width: 7px;
}
.megamenu-categories-scroll::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.22);
  border-radius: 999px;
}
.megamenu-categories-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.megamenu-category-link {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 0.4rem;
  color: var(--fabnos-text, #111);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: normal;
}
.megamenu-category-link:hover,
.megamenu-category-link:focus {
  background: rgba(229, 57, 53, 0.08);
  color: var(--fabnos-red, #e53935);
}
@media (min-width: 992px) {
  .megamenu-wrap .megamenu {
    width: min(92vw, 420px);
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
}

.btn-fabnos {
  --bs-btn-bg: var(--fabnos-red);
  --bs-btn-border-color: var(--fabnos-red);
  --bs-btn-hover-bg: var(--fabnos-red-dark);
  --bs-btn-hover-border-color: var(--fabnos-red-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
}

.btn-outline-fabnos {
  color: var(--fabnos-red);
  border-color: var(--fabnos-red);
  border-radius: 999px;
  font-weight: 600;
}
.btn-outline-fabnos:hover {
  background: var(--fabnos-red);
  border-color: var(--fabnos-red);
  color: #fff;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--fabnos-red);
  color: #fff;
  font-size: 0.65rem;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 var(--fabnos-radius) var(--fabnos-radius);
}
.hero-section .carousel-item {
  position: relative;
  min-height: 72vh;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.carousel-item.active .hero-slide-bg {
  transform: scale(1.06);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(17, 17, 17, 0.85) 0%, rgba(17, 17, 17, 0.35) 55%, rgba(229, 57, 53, 0.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.hero-title {
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #fff;
}
.hero-sub {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
}

/* Home — dual posters (side by side, contained cards) */
.home-posters-duo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-posters-duo-card:hover {
  transform: translateY(-8px);
}
.home-posters-duo-card:focus-visible {
  outline: none;
}
.home-posters-duo-card:focus-visible .home-posters-duo-frame {
  outline: 3px solid var(--fabnos-red);
  outline-offset: 4px;
}
.home-posters-duo-frame {
  box-shadow: var(--fabnos-shadow);
  border: 1px solid rgba(17, 17, 17, 0.06);
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  background: var(--fabnos-gray-100);
  overflow: hidden;
  line-height: 0;
}
/* Full poster visible — no crop (avoid object-fit:cover in a fixed ratio box) */
.home-posters-duo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
.home-posters-duo-card:hover .home-posters-duo-frame {
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.14);
  border-color: rgba(229, 57, 53, 0.2);
}
.home-posters-duo-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fabnos-red);
  transition: gap 0.25s ease;
}
.home-posters-duo-card:hover .home-posters-duo-cta {
  gap: 0.25rem;
}

/* Feature cards */
.feature-card {
  border: none;
  border-radius: var(--fabnos-radius);
  box-shadow: var(--fabnos-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.12), rgba(229, 57, 53, 0.04));
  color: var(--fabnos-red);
  font-size: 1.5rem;
}

/* Category tiles */
.cat-tile {
  border-radius: var(--fabnos-radius);
  overflow: hidden;
  position: relative;
  display: block;
  min-height: 78px;
  box-shadow: 0 10px 24px rgba(229, 57, 53, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--fabnos-red);
}
.cat-tile-bg {
  display: none;
}
.cat-tile-overlay {
  display: none;
}
.cat-tile-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
  padding: 0.75rem 0.9rem;
  text-align: left;
}
.cat-tile-icon {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 0.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.cat-tile-title {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.25;
}
.cat-tile:hover .cat-tile-icon {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Product cards */
.product-card {
  border: none;
  border-radius: var(--fabnos-radius);
  overflow: hidden;
  box-shadow: var(--fabnos-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 55px rgba(17, 17, 17, 0.12);
}
.product-img-wrap {
  position: relative;
  background: var(--fabnos-gray-100);
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-img-wrap .product-img-link {
  display: block;
  height: 100%;
  position: relative;
  z-index: 1;
}
.product-img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}
.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--fabnos-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}
.card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.card-actions .btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.product-card.position-relative .discount-badge {
  z-index: 2;
}
.product-card.position-relative .js-add-cart,
.product-card.position-relative .js-wishlist,
.product-card.position-relative .js-quickview {
  position: relative;
  z-index: 2;
}
.price-current {
  font-weight: 700;
  color: var(--fabnos-red);
}
.price-compare {
  text-decoration: line-through;
  color: var(--fabnos-gray-600);
  font-size: 0.9rem;
}

/* Product row carousel (related / recently viewed) */
.product-carousel-section {
  --product-carousel-gap: 1rem;
}
.product-carousel-viewport {
  overflow: hidden;
}
.product-carousel-track {
  display: flex;
  gap: var(--product-carousel-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.product-carousel-track::-webkit-scrollbar {
  display: none;
}
.product-carousel-slide {
  flex: 0 0 calc(50% - var(--product-carousel-gap) / 2);
  scroll-snap-align: start;
  min-width: 0;
}
@media (min-width: 768px) {
  .product-carousel-slide {
    flex: 0 0 calc(33.333% - var(--product-carousel-gap) * 2 / 3);
  }
}
@media (min-width: 992px) {
  .product-carousel-slide {
    flex: 0 0 calc(25% - var(--product-carousel-gap) * 3 / 4);
  }
}
.product-carousel-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--fabnos-gray-200, #e8e8e8);
  border-radius: 999px;
  background: #fff;
  color: var(--fabnos-dark, #111);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.product-carousel-btn:hover:not(:disabled) {
  border-color: var(--fabnos-red);
  color: var(--fabnos-red);
}
.product-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Section titles */
.section-head .title {
  font-weight: 700;
  letter-spacing: -0.02em;
}
.section-head .subtitle {
  color: var(--fabnos-gray-600);
  max-width: 560px;
  margin: 0 auto;
}

/* Testimonials — home showcase grid */
.testimonial-showcase {
  background: linear-gradient(180deg, #f0f4fa 0%, #fafbfc 55%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.testimonial-showcase::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(229, 57, 53, 0.07) 0%, transparent 68%);
  pointer-events: none;
}
.testimonial-showcase .container {
  position: relative;
  z-index: 1;
}
.testimonial-showcase-kicker {
  color: var(--fabnos-red);
  letter-spacing: 0.14em;
}
.testimonial-modern-card {
  border-radius: calc(var(--fabnos-radius) + 4px);
  padding: 2px;
  background: linear-gradient(145deg, rgba(229, 57, 53, 0.35), rgba(17, 17, 17, 0.06));
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.testimonial-modern-inner {
  height: 100%;
  border-radius: var(--fabnos-radius);
  background: #fff;
  padding: 1.65rem 1.5rem 1.5rem;
  box-shadow: 0 4px 24px rgba(17, 17, 17, 0.06);
  display: flex;
  flex-direction: column;
}
.testimonial-modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(17, 17, 17, 0.12);
}
.testimonial-modern-stars {
  color: #ffb300;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.testimonial-modern-quote {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--fabnos-black);
  margin: 0 0 1.35rem;
  font-weight: 500;
}
.testimonial-modern-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--fabnos-gray-200);
}
.testimonial-modern-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--fabnos-red), #ff7961);
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.35);
}
.testimonial-modern-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fabnos-black);
}
.testimonial-modern-role {
  font-size: 0.8rem;
  color: var(--fabnos-gray-600);
  margin-top: 0.1rem;
}

/* Brands */
.brand-pill {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fabnos-radius);
  background: #fff;
  box-shadow: var(--fabnos-shadow);
  font-weight: 600;
  color: var(--fabnos-gray-600);
}

/* Homepage brands ticker — smooth horizontal scroll (loop uses duplicated items in HTML) */
.brands-marquee-wrap {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.brands-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  width: max-content;
  animation: brands-marquee-scroll 42s linear infinite;
}
.brands-marquee-track:hover {
  animation-play-state: paused;
}
.brands-marquee-set {
  gap: 1.25rem;
}
@keyframes brands-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.brands-marquee-item {
  flex: 0 0 auto;
}
.brands-marquee-link.brand-pill {
  height: auto;
  min-height: 72px;
  min-width: 132px;
  max-width: 200px;
}
.brands-marquee-img {
  display: block;
  max-height: 44px;
  width: auto;
  max-width: 140px;
  height: auto;
  object-fit: contain;
}
.brands-marquee-name {
  color: var(--fabnos-gray-600);
  line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
  .brands-marquee-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
  }
  .brands-marquee-set--clone {
    display: none !important;
  }
  .brands-marquee-wrap {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }
}

/* Brands directory page */
.brands-directory-section {
  background: var(--fabnos-soft, #f8f9fb);
}
.brand-directory-card {
  background: #fff;
  border-radius: var(--fabnos-radius-lg, 1rem);
  box-shadow: var(--fabnos-shadow);
  padding: 1.5rem 1.25rem 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
  color: inherit;
}
.brand-directory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  color: inherit;
}
.brand-directory-card__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  margin-bottom: 0.75rem;
}
.brand-directory-card__logo {
  max-height: 64px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.brand-directory-card__initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--fabnos-primary, #0d6efd);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
.brand-directory-card__name {
  color: var(--fabnos-dark, #1a1a2e);
}
.brand-directory-card__cta {
  display: block;
  text-align: center;
  margin-top: auto;
  padding-top: 0.75rem;
  color: var(--fabnos-primary, #0d6efd);
}

/* Wishlist */
.js-wishlist.is-wishlisted {
  background: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.25);
}
[data-wishlist-card].wishlist-card--removing {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Inner pages — About / Contact hero banner */
.page-banner {
  position: relative;
  min-height: 200px;
  padding: 2.75rem 0 2.25rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-banner {
    min-height: 280px;
    padding: 3.5rem 0 3rem;
  }
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Full-bleed image banner — shows entire graphic (no cover crop) */
.page-banner--full {
  padding: 0;
  min-height: 0;
  overflow: hidden;
}
.page-banner__media {
  position: relative;
  display: block;
}
.page-banner--full .page-banner__img {
  width: 100%;
  height: auto;
  display: block;
}
.page-banner--full .page-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-banner--full .page-banner__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  pointer-events: none;
}
.page-banner--full .page-banner__inner a,
.page-banner--full .page-banner__inner button {
  pointer-events: auto;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(17, 17, 17, 0.88) 0%,
    rgba(17, 17, 17, 0.5) 50%,
    rgba(229, 57, 53, 0.22) 100%
  );
}
.page-banner .container {
  position: relative;
  z-index: 1;
}
.page-banner--full .container.page-banner__inner {
  z-index: 2;
}
.page-banner__title {
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-banner__lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
}

/* Contact page — modern layout */
.page-banner--contact .page-banner__overlay {
  background: linear-gradient(
    125deg,
    rgba(17, 17, 17, 0.72) 0%,
    rgba(17, 17, 17, 0.38) 48%,
    rgba(229, 57, 53, 0.2) 100%
  );
}
.contact-hero-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.contact-page-section {
  background: linear-gradient(180deg, #f5f6f8 0%, #ffffff 42%, #ffffff 100%);
}
.contact-page-section--padded {
  padding-top: 2.75rem;
  padding-bottom: 3rem;
}
@media (min-width: 992px) {
  .contact-page-section--padded {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

.contact-card {
  background: #fff;
  border-radius: calc(var(--fabnos-radius) + 6px);
  box-shadow:
    0 4px 6px rgba(17, 17, 17, 0.03),
    0 22px 48px rgba(17, 17, 17, 0.07);
  border: 1px solid rgba(17, 17, 17, 0.06);
  padding: 1.5rem 1.5rem 1.75rem;
}
@media (min-width: 992px) {
  .contact-card {
    padding: 2rem 2rem 2.25rem;
  }
}
.contact-card__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--fabnos-gray-200);
}
.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(229, 57, 53, 0.14), rgba(229, 57, 53, 0.05));
  color: var(--fabnos-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-card--form .form-control {
  border-radius: 12px;
  border-color: #dee2e6;
  padding: 0.65rem 1rem;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.contact-card--form .form-control:focus {
  border-color: var(--fabnos-red);
  box-shadow: 0 0 0 0.2rem rgba(229, 57, 53, 0.12);
}
.contact-card--form .btn-fabnos.rounded-3 {
  border-radius: 12px !important;
}

/* Clickable contact tiles */
a.contact-channel {
  text-decoration: none;
  color: inherit;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border-radius: calc(var(--fabnos-radius) + 2px);
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
a.contact-channel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.1);
  border-color: rgba(229, 57, 53, 0.22);
  color: inherit;
}
.contact-channel--static {
  cursor: default;
}
.contact-channel__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8f9fa, #eceff1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fabnos-red);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-channel__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-channel__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fabnos-gray-600);
}
.contact-channel__value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fabnos-black);
  word-break: break-word;
}
.contact-channel__arrow {
  color: var(--fabnos-gray-600);
  font-size: 0.95rem;
  flex-shrink: 0;
  opacity: 0.75;
}
a.contact-channel:hover .contact-channel__arrow {
  color: var(--fabnos-red);
  opacity: 1;
}

.contact-map-card {
  border-radius: calc(var(--fabnos-radius) + 2px);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
  background: #fff;
}
.contact-map-card__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-bottom: 1px solid var(--fabnos-gray-200);
  background: #fafbfc;
}
.contact-map-card .ratio iframe {
  border: 0;
}

/* Homepage — tools block image */
.home-tools-showcase-img {
  border-radius: var(--fabnos-radius);
  box-shadow: var(--fabnos-shadow);
}

/* Newsletter strip */
.newsletter-strip {
  border-radius: var(--fabnos-radius);
  background: linear-gradient(120deg, var(--fabnos-black), #2a2a2a);
  color: #fff;
  padding: 2.5rem;
}

/* Footer */
.fabnos-footer {
  background: var(--fabnos-black);
  color: #fff;
  position: relative;
}
/* Logo chip on dark footer — dark/coloured logo readable; stays part of footer */
.footer-brand-surface {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  padding: 0.55rem 1rem 0.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.footer-brand:hover .footer-brand-surface {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}
.footer-brand-logo {
  max-height: 46px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.footer-wave {
  height: 6px;
  background: linear-gradient(90deg, var(--fabnos-red), #ff7961);
  opacity: 0.9;
}
.footer-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}
.footer-link:hover {
  color: #fff;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.social-btn:hover {
  background: var(--fabnos-red);
  color: #fff;
  transform: translateY(-2px);
}
.footer-design-credit {
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 1040;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.06);
  color: #fff !important;
}

/* Shop filters sidebar */
.filters-card {
  border-radius: var(--fabnos-radius);
  border: none;
  box-shadow: var(--fabnos-shadow);
}

/* Product detail gallery — fixed frame, any image size fits inside */
.product-gallery .pdetail-main {
  position: relative;
  width: 100%;
  height: clamp(300px, 42vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.06);
}
.product-gallery .pdetail-main-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  cursor: zoom-in;
  transition: transform 0.35s ease;
}
.product-gallery .pdetail-main:hover .pdetail-main-img {
  transform: scale(1.03);
}
.product-gallery .pdetail-thumbs {
  margin-top: 0.25rem;
  min-height: 72px;
}
.pdetail-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.pdetail-thumb.active {
  border-color: var(--fabnos-primary, #0d6efd) !important;
  box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}
.pdetail-thumb-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.pdetail-short-desc {
  font-size: 1rem;
  line-height: 1.6;
}
.pdetail-short-desc > :last-child {
  margin-bottom: 0;
}

/* Product detail tabs (Description / Brand / Reviews) */
.pdetail-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  margin-bottom: 0;
}
.pdetail-tab {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.72);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.pdetail-tab:hover {
  color: var(--fabnos-black, #111);
}
.pdetail-tab.is-active {
  color: var(--fabnos-black, #111);
  font-weight: 600;
  border-bottom-color: var(--fabnos-red, #e53935);
}
.pdetail-tab-panels {
  padding-top: 1.5rem;
}
.pdetail-tab-panel {
  display: none;
}
.pdetail-tab-panel.is-active {
  display: block;
}
.pdetail-brand-panel-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #fff;
  padding: 8px;
}
.pdetail-reviews-list {
  margin-bottom: 0;
}
.pdetail-review-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.pdetail-review-item:first-child {
  padding-top: 0;
}
.pdetail-review-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pdetail-review-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.35rem;
}
.pdetail-review-name {
  font-weight: 600;
  color: var(--fabnos-black, #111);
}
.pdetail-review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.pdetail-review-text {
  color: rgba(17, 17, 17, 0.65);
  line-height: 1.6;
}
.pdetail-review-form {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}
.pdetail-review-form-inner .form-control,
.pdetail-review-form-inner .form-select {
  border-radius: 8px;
}

.pdetail-meta-item {
  padding-right: 1rem;
  border-right: 1px solid rgba(17, 17, 17, 0.1);
}
.pdetail-meta-item:last-child {
  border-right: none;
  padding-right: 0;
}
.pdetail-brand-logo {
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  padding: 4px;
}

.product-html {
  line-height: 1.65;
  color: var(--fabnos-text, #111);
}
.product-html > :last-child {
  margin-bottom: 0;
}
.product-html h2,
.product-html h3,
.product-html h4 {
  font-weight: 700;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.product-html h2 { font-size: 1.25rem; }
.product-html h3 { font-size: 1.1rem; }
.product-html h4 { font-size: 1rem; }
.product-html ul,
.product-html ol {
  padding-left: 1.35rem;
  margin-bottom: 1rem;
}
.product-html p {
  margin-bottom: 0.85rem;
}
.product-html a {
  color: var(--fabnos-primary, #0d6efd);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.product-html a:hover {
  opacity: 0.85;
}
.product-html li {
  margin-bottom: 0.35rem;
}
.product-html table {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
}
.product-html table th,
.product-html table td {
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: 0.5rem 0.65rem;
}

.pdetail-pdf-link {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  color: var(--fabnos-red-dark, #c62828);
  font-size: inherit;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}
.pdetail-pdf-link:hover,
.pdetail-pdf-link:focus {
  color: var(--fabnos-red, #e53935);
  text-decoration: underline;
}
.pdetail-pdf-link .bi {
  font-size: 1.05em;
  vertical-align: -0.1em;
}

.pdetail-poster-item {
  height: 100%;
}
.pdetail-poster-item h3 {
  color: var(--fabnos-text, #111);
}
.pdetail-poster-img {
  display: block;
  max-height: 720px;
  object-fit: contain;
  margin: 0 auto;
}

/* Animations on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Live search */
.search-wrap .search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 280px;
  overflow-y: auto;
  margin-top: 4px;
  border-radius: 12px;
}
.search-suggestions .list-group-item {
  cursor: pointer;
}
.search-suggestion-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: var(--fabnos-primary, #0d6efd);
  color: #fff;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* Admin-ish utility for storefront */
.bg-soft {
  background: var(--fabnos-gray-100);
}

/* ---------- Home page — modern layered backgrounds & motion ---------- */
.fabnos-home {
  position: relative;
}

.fabnos-home__hero.hero-section {
  border-radius: 0 0 clamp(12px, 2vw, 20px) clamp(12px, 2vw, 20px);
  box-shadow: 0 24px 60px rgba(17, 17, 17, 0.12);
}

/* Only first two content strips after hero: themed backgrounds */
.fabnos-home .home-section--mist {
  background: linear-gradient(165deg, #eef3f9 0%, #e6edf6 45%, #eef4fb 100%);
}

.fabnos-home .home-section--rose {
  background: linear-gradient(145deg, #fff8f8 0%, #fdeaea 38%, #fff5f5 100%);
}

.fabnos-home .home-section--mist .section-head .title,
.fabnos-home .home-section--rose .section-head .title {
  background: linear-gradient(105deg, var(--fabnos-black), #3d4349);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fabnos-home .home-section--mist .feature-card {
  background: linear-gradient(155deg, #ffffff 0%, #fafcfe 100%);
  border: 1px solid rgba(229, 57, 53, 0.1);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.fabnos-home .home-section--mist .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.1);
  border-color: rgba(229, 57, 53, 0.22);
}

.fabnos-home .home-section--mist .feature-card:hover .feature-icon {
  transform: scale(1.08);
}

.fabnos-home .home-section--mist .feature-icon {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.fabnos-home .product-card {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.fabnos-home .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(17, 17, 17, 0.14);
}

.fabnos-home .cat-tile {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.fabnos-home .cat-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(229, 57, 53, 0.32);
  border-color: rgba(255, 255, 255, 0.36);
}

.fabnos-home .brand-pill {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.fabnos-home .brand-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.1);
  color: var(--fabnos-red);
  border-color: rgba(229, 57, 53, 0.2);
}

.fabnos-home .testimonial-modern-card:hover {
  transform: translateY(-10px);
}

.fabnos-home .newsletter-strip {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.fabnos-home .newsletter-strip:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.3);
}

.fabnos-home .home-about-visual {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.fabnos-home .home-about-visual:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 56px rgba(17, 17, 17, 0.15);
}

.fabnos-home .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fabnos-home .reveal.visible {
  opacity: 1;
  transform: none;
}

.fabnos-home .row.g-4 > [class*="col-"].reveal:nth-child(1) {
  transition-delay: 0.02s;
}
.fabnos-home .row.g-4 > [class*="col-"].reveal:nth-child(2) {
  transition-delay: 0.07s;
}
.fabnos-home .row.g-4 > [class*="col-"].reveal:nth-child(3) {
  transition-delay: 0.12s;
}
.fabnos-home .row.g-4 > [class*="col-"].reveal:nth-child(4) {
  transition-delay: 0.17s;
}
.fabnos-home .row.g-4 > [class*="col-"].reveal:nth-child(5) {
  transition-delay: 0.22s;
}
.fabnos-home .row.g-4 > [class*="col-"].reveal:nth-child(6) {
  transition-delay: 0.27s;
}
.fabnos-home .row.g-4 > [class*="col-"].reveal:nth-child(7) {
  transition-delay: 0.32s;
}
.fabnos-home .row.g-4 > [class*="col-"].reveal:nth-child(8) {
  transition-delay: 0.37s;
}

.fabnos-home .btn-outline-fabnos {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fabnos-home .btn-outline-fabnos:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(229, 57, 53, 0.25);
}

.fabnos-home .btn-fabnos:not(:disabled) {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fabnos-home .btn-fabnos:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(229, 57, 53, 0.35);
}

/* ---------- Auth: login / register / forgot (split layout) ---------- */
.auth-split-section {
  padding-bottom: 2.75rem;
}

@media (min-width: 992px) {
  .min-vh-auth {
    min-height: calc(100vh - 200px);
  }
}

.auth-split-brand {
  background: linear-gradient(155deg, #0a0a0a 0%, #151515 42%, #251010 100%);
  position: relative;
  overflow: hidden;
}

.auth-split-brand::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--fabnos-red), #ff7961, var(--fabnos-red));
  opacity: 0.85;
}

.auth-split-brand::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -25%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(229, 57, 53, 0.22) 0%, transparent 65%);
  pointer-events: none;
}

.auth-split-brand--register::before {
  background: radial-gradient(circle at 30% 40%, rgba(229, 57, 53, 0.28) 0%, transparent 60%);
}

.auth-split-brand--forgot::before {
  opacity: 0.9;
}

.auth-split-logo {
  max-height: 56px;
  width: auto;
}

.auth-split-wordmark {
  font-size: 2rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.03em;
}

.auth-split-title {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.auth-split-lead {
  font-size: 0.95rem;
  line-height: 1.65;
}

.auth-split-point-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: rgba(229, 57, 53, 0.22);
  color: #ffb4b0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.auth-split-form-wrap {
  background: linear-gradient(180deg, #eef0f3 0%, #f9fafb 55%, #ffffff 100%);
}

.auth-form-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 24px 55px rgba(17, 17, 17, 0.07), 0 0 0 1px rgba(0, 0, 0, 0.04);
  padding: 2rem 1.85rem;
}

@media (min-width: 576px) {
  .auth-form-card {
    padding: 2.35rem 2.25rem;
  }
}

.auth-form-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fabnos-red);
  font-weight: 600;
}

.auth-form-heading {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fabnos-black);
}

.auth-input {
  border-radius: 12px !important;
  padding: 0.62rem 1rem !important;
  border: 1px solid #e3e6ea !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-input:focus {
  border-color: rgba(229, 57, 53, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.14) !important;
}

.auth-link-muted {
  color: #6c757d;
  text-decoration: none;
}

.auth-link-muted:hover {
  color: var(--fabnos-red);
}

@media (max-width: 991px) {
  .auth-split-section {
    padding-bottom: 2rem;
  }
  .min-vh-auth {
    min-height: 0;
  }
  .auth-split-brand {
    min-height: auto;
    padding-bottom: 2rem !important;
    padding-top: 2.25rem !important;
  }
  .auth-split-brand__inner {
    padding-bottom: 0 !important;
  }
  .auth-split-title {
    font-size: 1.5rem;
  }
}

/* Toasts (storefront + admin) */
.fabnos-toast-card {
  min-width: 280px;
  max-width: 420px;
  background: #fff;
  border-left: 4px solid var(--fabnos-gray-200);
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.35s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.fabnos-toast-card--enter {
  opacity: 1;
  transform: translateX(0);
}
.fabnos-toast-card--leave {
  opacity: 0;
  transform: translateX(80%);
}
.fabnos-toast-card--success {
  border-left-color: #2e7d32;
}
.fabnos-toast-card--success .fabnos-toast-card__icon {
  color: #2e7d32;
}
.fabnos-toast-card--error {
  border-left-color: var(--fabnos-red);
}
.fabnos-toast-card--error .fabnos-toast-card__icon {
  color: var(--fabnos-red);
}
.fabnos-toast-card--warning {
  border-left-color: #f57c00;
}
.fabnos-toast-card--warning .fabnos-toast-card__icon {
  color: #f57c00;
}
.fabnos-toast-card--info {
  border-left-color: #1565c0;
}
.fabnos-toast-card--info .fabnos-toast-card__icon {
  color: #1565c0;
}
.fabnos-toast-card--info .fabnos-toast-card__msg {
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}
.fabnos-toast-card__icon {
  font-size: 1.35rem;
  line-height: 1;
}
.fabnos-toast-card__msg {
  color: var(--fabnos-black);
}
