/**
 * Omni Nest - Homepage Styles
 * Custom styles complementing Bootstrap 5
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
  --omni-primary: #111111;
  --omni-primary-dark: #000000;
  --omni-accent: #b58a3c;
  --omni-accent-dark: #8f6b2c;
  --omni-shop: #5a31f4;
  --omni-shop-dark: #4a26d6;
  --omni-blue: #0d6efd;
  --omni-blue-dark: #0b5ed7;
  --omni-text: #111;
  --omni-text-muted: #6c757d;
  --omni-border: #e9ecef;
  --omni-bg-light: #f8f9fa;
  --omni-white: #fff;
  --omni-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --omni-shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  --omni-radius: 0.375rem;
  --omni-transition: 0.2s ease;
}

/* ==========================================================================
   Base & Typography
   ========================================================================== */
body {
  color: var(--omni-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
  background: #ffffff;
}

body.is-loading {
  overflow: hidden;
}

body.is-modal-open {
  overflow: hidden;
}

/* ==========================================================================
   Search modal (navbar search)
   ========================================================================== */
.omni-search {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
}

.omni-search.is-open {
  display: block;
}

.omni-search__backdrop {
  position: absolute;
  inset: 0;
  /* White sheet through topbar+navbar, rest stays visible */
  background: linear-gradient(
    to bottom,
    transparent 0,
    transparent var(--omni-topbar-h, 34px),
    rgba(255, 255, 255, 0.96) var(--omni-topbar-h, 34px),
    rgba(255, 255, 255, 0.96) var(--omni-search-cutoff, 150px),
    transparent var(--omni-search-cutoff, 150px),
    transparent 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
}

.omni-search.is-open .omni-search__backdrop {
  opacity: 1;
}

.omni-search__panel {
  position: absolute;
  left: 50%;
  top: 64px;
  transform: translate(-50%, -10px);
  width: min(680px, calc(100vw - 2rem));
  background: transparent;
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms ease;
}

.omni-search.is-open .omni-search__panel {
  opacity: 1;
  transform: translate(-50%, 0);
}

.omni-search.is-closing .omni-search__panel {
  opacity: 0;
  transform: translate(-50%, -10px);
}

.omni-search__form {
  position: relative;
}

.omni-search__input {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  padding: 0 44px 0 14px;
  font-weight: 600;
  background: #fff;
  outline: none;
}

.omni-search__submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.7);
}

.omni-search__close {
  position: absolute;
  right: -44px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(17, 17, 17, 0.75);
  font-size: 28px;
  line-height: 1;
}

.omni-search__close:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 575.98px) {
  .omni-search__panel {
    top: 56px;
  }
  .omni-search__close {
    right: -6px;
    top: -46px;
    transform: none;
    background: rgba(255, 255, 255, 0.85);
  }
}

/* ==========================================================================
   Page Loader
   ========================================================================== */
.omni-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  display: grid;
  place-items: center;
  z-index: 3000;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.omni-loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.omni-loader__inner {
  display: grid;
  gap: 0.85rem;
  place-items: center;
}

.omni-loader__mark {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background: #f2c23d;
  position: relative;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  animation: omni-pop 900ms ease-in-out infinite;
}

.omni-loader__mark::before,
.omni-loader__mark::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  height: 2px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
}

.omni-loader__mark::before { top: 26px; transform: rotate(-8deg); }
.omni-loader__mark::after { top: 36px; transform: rotate(8deg); }

.omni-loader__mark--logo {
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.omni-loader__mark--logo::before,
.omni-loader__mark--logo::after {
  content: none;
}

.omni-loader__mark--logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 8px;
}

.omni-loader__bar {
  width: 220px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.omni-loader__bar > span {
  display: block;
  height: 100%;
  width: 45%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(181, 138, 60, 0.25), rgba(181, 138, 60, 0.95));
  animation: omni-bar 900ms ease-in-out infinite;
}

@keyframes omni-pop {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.02); }
}

@keyframes omni-bar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}

/* ==========================================================================
   Section reveal animations (layout unchanged)
   ========================================================================== */
.omni-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--omni-delay, 0ms);
}

.omni-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

p, li, a, button, input, label {
  font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--omni-transition);
}

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

/* ==========================================================================
   Top Marquee Bar
   ========================================================================== */
.omni-topbar {
  background: #0c0c0c;
  color: #ffffff;
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.is-scrolled .omni-topbar {
  display: none;
}

.omni-marquee {
  width: 100%;
  overflow: hidden;
}

.omni-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 1.25rem;
  padding-left: 100%;
  animation: omni-marquee 14s linear infinite;
  white-space: nowrap;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.omni-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
}

.omni-marquee__ico {
  opacity: 0.95;
}

.omni-marquee__sep {
  opacity: 0.65;
}

@keyframes omni-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.omni-header {
  background: #ffffff;
}

.omni-navbar {
  background-color: var(--omni-white) !important;
  box-shadow: var(--omni-shadow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.omni-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--omni-primary) !important;
}

.omni-brand--stack {
  flex-direction: column;
  gap: 0.35rem;
  letter-spacing: 0.2em;
}

.omni-brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: #f2c23d;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  position: relative;
  overflow: hidden;
}

.omni-brand__mark::before,
.omni-brand__mark::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 2px;
}

.omni-brand__mark::before {
  top: 20px;
  transform: rotate(-8deg);
}

.omni-brand__mark::after {
  top: 28px;
  transform: rotate(8deg);
}

.omni-brand__mark--logo {
  background: transparent;
  box-shadow: none;
  width: 74px;
  height: 74px;
}

.omni-brand__mark--logo::before,
.omni-brand__mark--logo::after {
  content: none;
}

.omni-brand__mark--logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.omni-brand__text {
  font-size: 0.95rem;
}

.omni-navbar .nav-link {
  font-weight: 500;
  color: var(--omni-text) !important;
  padding: 0.5rem 0.75rem !important;
}

.omni-navbar .nav-link:hover,
.omni-navbar .nav-link:focus {
  color: var(--omni-accent) !important;
}

.omni-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--omni-shadow-md);
  border-radius: var(--omni-radius);
  padding: 0.5rem 0;
  min-width: 220px;
}

.omni-navbar .dropdown-item {
  padding: 0.5rem 1rem;
}

.omni-navbar .dropdown-item:hover {
  background-color: var(--omni-bg-light);
}

.omni-navbar .dropdown-submenu {
  position: relative;
}

.omni-navbar .dropdown-submenu > .dropdown-menu {
  left: 100%;
  top: 0;
  margin-left: 0.125rem;
  display: none;
}

.omni-navbar .dropdown-submenu > .dropdown-menu.show {
  display: block;
}

.omni-icon-link {
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  outline: none;
  box-shadow: none;
  transition: background var(--omni-transition), color var(--omni-transition), transform var(--omni-transition);
}

.omni-icon-link:hover {
  background: rgba(181, 138, 60, 0.12);
  color: var(--omni-accent);
  transform: translateY(-1px);
}

.omni-nav-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 0 0.35rem;
}

.omni-nav-top__left {
  justify-self: start;
}

.omni-nav-top__center {
  justify-self: center;
}

.omni-nav-top__right {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.omni-nav-toggle {
  border: 0;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(17, 17, 17, 0.72);
  background: transparent;
  transition: background var(--omni-transition), color var(--omni-transition), transform var(--omni-transition);
}

.omni-nav-toggle:hover {
  background: rgba(181, 138, 60, 0.12);
  color: var(--omni-accent);
  transform: translateY(-1px);
}

.omni-nav-toggle:focus-visible {
  outline: 3px solid rgba(181, 138, 60, 0.25);
  outline-offset: 2px;
}

.omni-nav-bottom {
  padding: 0.25rem 0 0.7rem;
}

.omni-nav-links .nav-link {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.72) !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.omni-nav-links .dropdown-toggle::after {
  display: none;
}

.omni-nav-caret {
  opacity: 0.65;
  transition: transform 180ms ease, opacity 180ms ease;
}

.show > .nav-link .omni-nav-caret,
.nav-link[aria-expanded="true"] .omni-nav-caret {
  transform: rotate(180deg);
  opacity: 0.9;
}

.omni-nav-links .nav-link:hover,
.omni-nav-links .nav-link:focus {
  color: #111 !important;
}

.omni-nav-links .nav-link::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.15rem;
  height: 2px;
  background: transparent;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 180ms ease, background 180ms ease;
}

.omni-nav-links .nav-link:hover::after {
  background: rgba(0, 0, 0, 0.35);
  transform: scaleX(1);
}

@keyframes omni-mobileMenuIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 991.98px) {
  .omni-nav-bottom .navbar-collapse.show {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
    padding: 0.6rem 0.6rem;
    margin-top: 0.55rem;
    animation: omni-mobileMenuIn 200ms ease both;
  }

  .omni-nav-links {
    width: 100%;
    align-items: stretch;
    gap: 0.15rem;
  }

  .omni-nav-links .nav-link {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    justify-content: space-between;
  }

  .omni-nav-links .nav-link::after {
    display: none;
  }

  .omni-nav-links .nav-link:hover,
  .omni-nav-links .nav-link:focus {
    background: rgba(181, 138, 60, 0.10);
  }

  .omni-nav-bottom .dropdown-menu {
    position: static;
    float: none;
  }

  /* Keep mega menus usable inside the mobile menu */
  .omni-mega .dropdown-menu {
    box-shadow: none;
  }

  .omni-mega__menu {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
  }
}

/* ==========================================================================
   Inks/Toners mega menu (matches screenshot grid)
   ========================================================================== */
.omni-mega .dropdown-menu {
  border: 0;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.omni-mega__menu {
  padding: 2rem 2rem 1.5rem;
  width: min(1100px, calc(100vw - 2rem));
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  margin-top: 0.75rem;
  border-radius: 10px;
}

.omni-mega__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.75rem 2.25rem;
  padding: 0.25rem 0.25rem 1.25rem;
}

.omni-mega__brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.omni-mega__logo {
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: 1.1rem;
  min-height: 22px;
}

.omni-mega__name {
  font-weight: 700;
  font-size: 0.95rem;
}

.omni-mega__link {
  font-size: 0.82rem;
  color: rgba(17, 17, 17, 0.58);
}

.omni-mega__link:hover {
  color: rgba(17, 17, 17, 0.85);
  text-decoration: underline;
}

.omni-mega__printheads {
  display: grid;
  place-items: center;
  padding: 0.5rem 0 0.25rem;
  color: rgba(17, 17, 17, 0.75);
  text-decoration: none;
}

.omni-mega__printheads-text {
  margin-top: 0.4rem;
  font-weight: 700;
}

/* Logo color accents (approximate screenshot) */
.omni-mega__logo--brother { color: #0b63ce; text-transform: lowercase; }
.omni-mega__logo--canon { color: #d11b2d; font-style: italic; }
.omni-mega__logo--dell { color: #0076ce; border: 2px solid #0076ce; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 0.15rem 0.55rem; font-weight: 800; font-size: 0.9rem; }
.omni-mega__logo--epson { color: #3b2d86; letter-spacing: 0.08em; }
.omni-mega__logo--hp { color: #0b63ce; border: 2px solid #0b63ce; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; width: fit-content; padding: 0.12rem 0.5rem; font-weight: 900; text-transform: lowercase; }
.omni-mega__logo--km { color: #0b63ce; font-size: 0.75rem; letter-spacing: 0.06em; }
.omni-mega__logo--kyocera { color: #d11b2d; font-size: 0.9rem; }
.omni-mega__logo--lexmark { color: #111; font-size: 0.9rem; }
.omni-mega__logo--oki { color: #d11b2d; font-size: 1.25rem; letter-spacing: 0.08em; }
.omni-mega__logo--ricoh { color: #c71f2c; font-size: 1.15rem; letter-spacing: 0.08em; }
.omni-mega__logo--samsung { color: #1e3d8f; font-size: 0.9rem; letter-spacing: 0.08em; }
.omni-mega__logo--xerox { color: #d11b2d; text-transform: lowercase; }

@media (min-width: 992px) {
  .omni-mega:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .omni-mega__menu {
    width: auto;
    left: auto;
    transform: none;
    margin-top: 0.25rem;
    padding: 1rem;
  }

  .omni-mega__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.omni-hero {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.25)),
    url("https://omni-nest.com/cdn/shop/files/Loading_26_2048x.png?v=1767466835");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--omni-white);
  padding: 3.75rem 0 4.25rem;
  text-align: center;
}

.omni-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.omni-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.omni-hero__tagline {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 1.5rem;
}

.omni-btn {
  background-color: var(--omni-accent);
  border: 1px solid var(--omni-accent);
  color: #fff;
  padding: 0.55rem 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 6px;
  text-transform: uppercase;
  transition: transform var(--omni-transition), box-shadow var(--omni-transition), background var(--omni-transition), border-color var(--omni-transition);
}

.omni-btn:hover {
  background: var(--omni-accent-dark);
  border-color: var(--omni-accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--omni-shadow-md);
  color: #fff;
}

.omni-btn--outline {
  background: transparent;
  color: var(--omni-accent);
  border-color: rgba(181, 138, 60, 0.6);
}

.omni-btn--outline:hover {
  background: rgba(181, 138, 60, 0.1);
  border-color: rgba(181, 138, 60, 0.9);
  color: var(--omni-accent);
}

.omni-btn--light {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: #111;
}

.omni-btn--light:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.omni-section {
  padding: 3rem 0;
}

.omni-section--alt {
  background-color: var(--omni-bg-light);
}

.omni-section__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--omni-primary);
  margin-bottom: 1rem;
}

.omni-section__subtitle {
  color: var(--omni-text-muted);
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Tabs (Office / Paper) with animated transition
   ========================================================================== */
.omni-tabs {
  padding-top: 2.5rem;
}

.omni-tabs .container {
  text-align: center;
}

.omni-tabs__header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0;
  margin: 0 auto 1.25rem;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.omni-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.25rem 0;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(17, 17, 17, 0.55);
  border-bottom: 2px solid transparent;
  transition: color var(--omni-transition), border-color var(--omni-transition);
}

.omni-tab:hover {
  color: rgba(17, 17, 17, 0.85);
}

.omni-tab.is-active {
  color: rgba(17, 17, 17, 0.85);
  border-bottom-color: rgba(0, 0, 0, 0.75);
}

.omni-tabs__content {
  position: relative;
  text-align: left;
}

.omni-tab-pane {
  display: none;
}

.omni-tab-pane.is-active {
  display: block;
  animation: omni-pane-in 280ms ease both;
}

@keyframes omni-pane-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Product Cards
   ========================================================================== */
.omni-card {
  border: 1px solid var(--omni-border);
  border-radius: var(--omni-radius);
  overflow: hidden;
  transition: box-shadow var(--omni-transition), transform var(--omni-transition);
  height: 100%;
}

.omni-card:hover {
  box-shadow: var(--omni-shadow-md);
  transform: translateY(-4px);
}

.omni-card__img-wrap {
  aspect-ratio: 1;
  background-color: var(--omni-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.omni-card__watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 4.75rem;
  letter-spacing: 0.1em;
  color: rgba(45, 95, 185, 0.12);
  user-select: none;
  pointer-events: none;
}

.omni-card__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.omni-card__body {
  padding: 1rem;
}

.omni-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.omni-card__price {
  font-weight: 700;
  color: var(--omni-primary);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.omni-about {
  background-color: var(--omni-white);
}

.omni-slab {
  background: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.omni-slab--about {
  min-height: 360px;
}

.omni-slab--inks {
  min-height: 320px;
}

.omni-slab__media {
  position: relative;
  overflow: hidden;
}

.omni-slab__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 450ms ease;
  will-change: transform;
}

.omni-slab__media:hover .omni-slab__img {
  transform: scale(1.04);
}

.omni-slab__content {
  padding: 2.25rem 2.25rem;
}

.omni-slab__content--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2.25rem 3rem;
}

.omni-slab__title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #111;
}

.omni-slab__title span {
  color: var(--omni-accent);
}

.omni-slab__text {
  color: rgba(17, 17, 17, 0.65);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 48rem;
}

/* Triptych (Pen Category) */
.omni-triptych {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 1rem;
  align-items: stretch;
}

.omni-triptych__img,
.omni-triptych__panel {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.omni-triptych__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 450ms ease;
  will-change: transform;
}

.omni-triptych__img:hover img {
  transform: scale(1.04);
}

.omni-triptych__panel {
  background: #ffffff;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.omni-triptych__title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.omni-triptych__text {
  color: rgba(17, 17, 17, 0.65);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.omni-media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.omni-media__img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform 450ms ease;
  will-change: transform;
}

.omni-media:hover .omni-media__img {
  transform: scale(1.04);
}

@media (hover: none) {
  .omni-slab__img,
  .omni-triptych__img img,
  .omni-media__img {
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .omni-loader,
  .omni-loader__mark,
  .omni-loader__bar > span,
  .omni-reveal,
  .omni-slab__img,
  .omni-triptych__img img,
  .omni-media__img {
    animation: none !important;
    transition: none !important;
  }
}

/* Slightly tighter type scale on very small screens */
@media (max-width: 575.98px) {
  body { font-size: 16px; }
  .omni-signup__title { font-size: 1.75rem; }
}

.omni-card-panel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.omni-card-panel__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.omni-card-panel__text {
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

/* ==========================================================================
   Full-width banners (Office Supplies background)
   ========================================================================== */
.omni-banner {
  position: relative;
  padding: 4.2rem 0;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.omni-banner--office {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08)),
    url("https://omni-nest.com/cdn/shop/files/Loading_23.png?v=1767354945&width=3840");
}

.omni-banner__content {
  max-width: 420px;
}

.omni-banner__title {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}

.omni-banner__subtitle {
  margin-bottom: 1.1rem;
  opacity: 0.95;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   Pen category dual image section
   ========================================================================== */
.omni-dual-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  min-height: 280px;
}

.omni-dual-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.omni-dual-banner__panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.omni-dual-banner__title {
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.omni-testimonials__card {
  border: 1px solid var(--omni-border);
  border-radius: var(--omni-radius);
  padding: 1.5rem;
  height: 100%;
  background: var(--omni-white);
}

.omni-testimonials__stars {
  color: #f1c40f;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.omni-testimonials__quote {
  font-style: italic;
  color: var(--omni-text);
  margin-bottom: 0.75rem;
}

.omni-testimonials__author {
  font-weight: 600;
  color: var(--omni-primary);
}

/* ==========================================================================
   Feature Badges
   ========================================================================== */
.omni-features {
  padding: 2rem 0;
  border-top: 1px solid var(--omni-border);
  border-bottom: 1px solid var(--omni-border);
  background: #ffffff;
}

.omni-feature {
  text-align: center;
  padding: 1.25rem 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  background: #fff;
  height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.omni-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
}

.omni-feature__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: rgba(181, 138, 60, 0.12);
  color: var(--omni-accent-dark);
  font-size: 1.35rem;
}

.omni-feature__title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.omni-feature__text {
  font-size: 0.875rem;
  color: var(--omni-text-muted);
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.omni-newsletter {
  background: linear-gradient(135deg, #171717 0%, #000000 100%);
  color: var(--omni-white);
  padding: 3rem 0;
}

.omni-newsletter__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.omni-newsletter__subtitle {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.omni-newsletter .form-control {
  max-width: 400px;
  margin: 0 auto 0.75rem;
  border-radius: var(--omni-radius);
}

.omni-newsletter .btn-light {
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.omni-footer {
  background-color: #000;
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.omni-footer__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--omni-white);
  margin-bottom: 1rem;
}

.omni-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.omni-footer__list li {
  margin-bottom: 0.5rem;
}

.omni-footer__list a {
  color: rgba(255, 255, 255, 0.8);
}

.omni-footer__list a:hover {
  color: var(--omni-white);
}

.omni-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.omni-footer__social {
  margin-bottom: 1rem;
}

.omni-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--omni-white);
  margin-right: 0.5rem;
  transition: background var(--omni-transition);
}

.omni-footer__social a:hover {
  background: var(--omni-accent);
  color: var(--omni-white);
}

/* ==========================================================================
   Utilities & Overrides
   ========================================================================== */
.btn-outline-light:hover {
  color: var(--omni-primary);
}

/* Placeholder for product images when no image is set */
.omni-card__img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f3f3f3 40%, #ececec 100%);
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .omni-hero {
    padding: 3rem 0;
  }

  .omni-dual-banner {
    grid-template-columns: 1fr;
  }

  .omni-dual-banner__panel {
    width: min(92%, 420px);
  }

  .omni-slab {
    grid-template-columns: 1fr;
  }

  .omni-slab__content--center {
    padding: 1.75rem 1.5rem;
  }

  .omni-triptych {
    grid-template-columns: 1fr;
  }

  .omni-navbar .dropdown-submenu .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
    border-left: 2px solid var(--omni-border);
  }
}

/* ==========================================================================
   Stationery mega menu cards (matches screenshot)
   ========================================================================== */
.omni-mega__menu--stationery {
  width: min(980px, calc(100vw - 2rem));
  padding: 1.75rem 2rem 1.5rem;
}

.omni-stationery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.omni-cat {
  text-decoration: none;
  color: rgba(17, 17, 17, 0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.omni-cat__img {
  width: 100%;
  max-width: 170px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.omni-cat__watermark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 4.25rem;
  letter-spacing: 0.08em;
  color: rgba(45, 95, 185, 0.12);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.omni-cat__thumb {
  width: 74%;
  height: 74%;
  object-fit: contain;
  display: block;
  z-index: 1;
  position: relative;
}

.omni-cat:hover {
  color: rgba(17, 17, 17, 0.9);
  text-decoration: none;
}

.omni-cat:hover .omni-mega__name {
  text-decoration: underline;
}

.omni-cat__img {
  transition: box-shadow 200ms ease;
}

@media (max-width: 991.98px) {
  .omni-stationery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .omni-cat__img {
    max-width: none;
  }
}

/* ==========================================================================
   Footer + Newsletter (matches screenshot)
   ========================================================================== */
.omni-footer-shell {
  background: #000;
}

.omni-signup {
  background: #9c7430;
  color: #fff;
  position: relative;
  padding: 2.25rem 0 3.25rem;
}

.omni-signup::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background-repeat: repeat-x;
  background-size: 760px 56px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='760' height='56' viewBox='0 0 760 56'%3E%3Cpath d='M0 24 C 60 6, 120 6, 190 24 S 320 42, 380 24 S 510 6, 570 24 S 700 42, 760 24 V56 H0 Z' fill='%23000000'/%3E%3C/svg%3E");
}

.omni-signup__grid {
  display: grid;
  grid-template-columns: 220px 1fr 360px;
  gap: 1.75rem;
  align-items: start;
}

.omni-signup__title {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.05;
  margin: 0;
}

.omni-signup__text {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  align-self: center;
}

.omni-signup__form {
  justify-self: end;
  width: 100%;
  max-width: 380px;
}

.omni-signup__field {
  display: grid;
  grid-template-columns: 1fr 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.omni-signup__field input {
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
  padding: 0.75rem 0.9rem;
  font-weight: 700;
}

.omni-signup__field input::placeholder {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 700;
}

.omni-signup__field button {
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.omni-signup__field button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.omni-signup__fineprint {
  margin-top: 0.6rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-align: center;
}

.omni-footer2 {
  background: #000;
  color: rgba(255, 255, 255, 0.9);
  padding: 7rem 0 3.5rem;
}

.omni-footer2__top {
  display: grid;
  grid-template-columns: 120px repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
  padding-top: 1.25rem;
}

.omni-footer2__mark {
  width: 70px;
  height: 70px;
  display: inline-block;
  background: #f2c23d;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.omni-footer2__mark::before,
.omni-footer2__mark::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 2px;
}

.omni-footer2__mark::before { top: 32px; transform: rotate(-8deg); }
.omni-footer2__mark::after { top: 42px; transform: rotate(8deg); }

.omni-footer2__mark--logo {
  background: transparent;
}

.omni-footer2__mark--logo::before,
.omni-footer2__mark--logo::after {
  content: none;
}

.omni-footer2__mark--logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.omni-footer2__title {
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.85rem;
}

.omni-footer2__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.omni-footer2__list a {
  color: rgba(255, 255, 255, 0.82);
}

.omni-footer2__list a:hover {
  color: #fff;
  text-decoration: underline;
}

.omni-footer2__mid {
  padding: 6rem 0 2.5rem;
}

.omni-footer2__headline {
  color: #fff;
  font-weight: 900;
  margin: 0 0 0.4rem;
}

.omni-footer2__sub {
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  font-size: 0.9rem;
}

.omni-footer2__social a {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  margin-right: 0.35rem;
  font-size: 0.85rem;
}

.omni-footer2__social a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.omni-footer2__payments {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.25rem 0 0.75rem;
}

.omni-pay {
  background: #fff;
  color: #111;
  border-radius: 4px;
  padding: 0.25rem 0.45rem;
  font-weight: 800;
  font-size: 0.7rem;
}

.omni-footer2__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.9rem;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.omni-footer2__links a {
  color: rgba(255, 255, 255, 0.7);
}

.omni-footer2__links a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .omni-signup__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .omni-signup__form {
    justify-self: start;
    max-width: 520px;
  }
  .omni-signup__fineprint {
    text-align: left;
  }
  .omni-footer2__top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ==========================================================================
   Collection / Store page (Office Supplies)
   ========================================================================== */
.omni-collection-head {
  padding: 1.25rem 0 0.25rem;
}

.omni-breadcrumb {
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.55);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.omni-breadcrumb a {
  color: rgba(17, 17, 17, 0.55);
}

.omni-breadcrumb a:hover {
  color: rgba(17, 17, 17, 0.85);
  text-decoration: underline;
}

.omni-collection-title {
  margin: 0.75rem 0 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.omni-collection {
  padding: 1rem 0 2.25rem;
}

.omni-prod {
  text-align: center;
}

.omni-prod__img {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.6rem;
}

.omni-prod__wm {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: clamp(4.5rem, 9vw, 6.25rem);
  letter-spacing: 0.08em;
  color: rgba(45, 95, 185, 0.12);
  user-select: none;
  pointer-events: none;
}

.omni-prod__thumb {
  width: 74%;
  height: 74%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.omni-prod__imgLink {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.omni-prod__titleLink {
  color: inherit;
  text-decoration: none;
}

.omni-prod__titleLink:hover {
  text-decoration: underline;
}

.omni-prod__title {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0.35rem auto 0.25rem;
  max-width: 28ch;
  color: rgba(17, 17, 17, 0.75);
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.omni-prod__price {
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.8);
  margin-bottom: 0.55rem;
}

.omni-prod__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 4px;
  background: #9c7430;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  text-transform: uppercase;
  border: 1px solid #9c7430;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.omni-prod__btn:hover {
  background: #8b6627;
  border-color: #8b6627;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.omni-pagination {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
  gap: 0.65rem;
}

.omni-pagination a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: rgba(17, 17, 17, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-weight: 800;
  font-size: 0.85rem;
}

.omni-pagination a.is-active {
  color: #111;
  border-color: rgba(0, 0, 0, 0.45);
}

/* Make feature row look like the collection screenshot */
.omni-features--mini {
  border-top: 0;
  border-bottom: 0;
  padding: 1.75rem 0 2.25rem;
}

.omni-features--mini .omni-feature {
  box-shadow: none;
  border: 0;
  background: transparent;
  padding: 0.25rem 0.5rem;
}

.omni-features--mini .omni-feature__icon {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: rgba(17, 17, 17, 0.75);
}

/* ==========================================================================
   Product details page (XL Tape Dispenser - Black)
   ========================================================================== */
.omni-product {
  padding: 2.25rem 0 3rem;
}

.omni-product__wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.25rem;
  align-items: start;
}

.omni-product__media {
  min-width: 0;
}

.omni-gallery {
  display: grid;
  gap: 0.9rem;
}

.omni-gallery__thumbs {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.omni-thumb {
  flex: 0 0 78px;
  width: 78px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  padding: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.omni-thumb img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

.omni-thumb:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.omni-thumb.is-active {
  border-color: rgba(181, 138, 60, 0.85);
  box-shadow: 0 16px 30px rgba(181, 138, 60, 0.18);
}

.omni-pdp-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.35rem 1.35rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.omni-product__img {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.omni-product__img img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transform-origin: var(--omni-zoom-x, 50%) var(--omni-zoom-y, 50%);
  transition: transform 180ms ease;
  will-change: transform;
}

.omni-gallery__main {
  cursor: zoom-in;
}

.omni-gallery__main:hover img {
  transform: scale(1.5);
}

.omni-product__wm {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: clamp(7rem, 16vw, 12rem);
  letter-spacing: 0.08em;
  color: rgba(45, 95, 185, 0.12);
  user-select: none;
  pointer-events: none;
}

.omni-product__meta {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(17, 17, 17, 0.55);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.omni-product__title {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.omni-product__price {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: rgba(17, 17, 17, 0.85);
}

.omni-product__note {
  font-size: 0.85rem;
  color: rgba(17, 17, 17, 0.55);
  margin-bottom: 0.85rem;
}

.omni-shopPay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 6px;
  border-radius: 4px;
  background: #5a31f4;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-size: 0.75rem;
  margin: 0 2px;
  text-transform: lowercase;
}

.omni-link {
  color: rgba(17, 17, 17, 0.55);
  text-decoration: underline;
}

.omni-link:hover {
  color: rgba(17, 17, 17, 0.85);
}

.omni-product__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  color: rgba(17, 17, 17, 0.65);
  font-weight: 600;
  display: grid;
  gap: 0.35rem;
}

.omni-product__bullets li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding-left: 0;
}

.omni-product__bullets li::before {
  content: none;
}

.omni-bullet-ico {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 17, 17, 0.75);
  flex: 0 0 auto;
}

.omni-bullet-ico svg {
  width: 18px;
  height: 18px;
  display: block;
}

.omni-qty {
  margin: 0 0 0.9rem;
}

.omni-qty__label {
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.omni-qty__ctrl {
  display: inline-grid;
  grid-template-columns: 40px 54px 40px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  overflow: hidden;
}

.omni-qty__btn {
  border: 0;
  background: #f6f6f6;
  font-weight: 900;
}

.omni-qty__input {
  border: 0;
  text-align: center;
  font-weight: 900;
  width: 54px;
}

.omni-buy {
  width: 100%;
  height: 44px;
  border-radius: 6px;
  border: 0;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}

.omni-buy--cart {
  background: #2d2d2d;
  color: #fff;
}

.omni-buy--cart:hover {
  background: #1f1f1f;
}

.omni-buy--shop {
  background: #5a31f4;
  color: #fff;
}

.omni-buy--shop:hover {
  background: #4a26d6;
}

.omni-morepay {
  display: inline-block;
  font-size: 0.8rem;
  color: rgba(17, 17, 17, 0.55);
  margin: 0.2rem 0 0.85rem;
}

.omni-morepay:hover {
  text-decoration: underline;
}

.omni-payrow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.omni-payrow--icons {
  margin-top: 0.65rem;
  justify-content: center;
}

.omni-pdp-badges {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  text-align: center;
}

.omni-pdp-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  display: grid;
  place-items: center;
  margin: 0 auto 0.35rem;
  color: rgba(17, 17, 17, 0.75);
  font-weight: 900;
}

.omni-pdp-badge__text {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(17, 17, 17, 0.65);
  text-transform: uppercase;
}

.omni-pdp-desc {
  margin-top: 1rem;
}

.omni-pdp-lead {
  margin: 0 0 0.75rem;
  color: rgba(17, 17, 17, 0.65);
  font-weight: 600;
}

.omni-pdp-list {
  margin: 0 0 0.75rem;
  color: rgba(17, 17, 17, 0.65);
  font-weight: 600;
}

.omni-pdp-accord {
  margin-top: 0.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.omni-acc {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
}

.omni-acc summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.78);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.omni-acc summary::-webkit-details-marker {
  display: none;
}

.omni-acc summary::after {
  content: "▾";
  opacity: 0.7;
  transform: rotate(0deg);
  transition: transform 180ms ease;
}

.omni-acc[open] summary::after {
  transform: rotate(180deg);
}

.omni-acc__body {
  padding-top: 0.6rem;
  color: rgba(17, 17, 17, 0.62);
  font-weight: 600;
  font-size: 0.92rem;
}

.omni-share {
  padding: 0.75rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(17, 17, 17, 0.6);
  font-weight: 700;
}

.omni-share__link {
  color: rgba(17, 17, 17, 0.6);
  text-decoration: underline;
}

.omni-share__link:hover {
  color: rgba(17, 17, 17, 0.85);
}

/* You may also like */
.omni-recs {
  padding: 1.25rem 0 2.75rem;
}

.omni-recs__title {
  font-weight: 900;
  margin: 0 0 1.25rem;
}

.omni-rec__img {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.65rem;
}

.omni-rec__img img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
}

.omni-rec__img--wm img {
  width: 74%;
  height: 74%;
}

.omni-rec__wm {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 5.25rem;
  letter-spacing: 0.08em;
  color: rgba(45, 95, 185, 0.12);
  user-select: none;
  pointer-events: none;
}

.omni-rec__name {
  font-weight: 700;
  color: rgba(17, 17, 17, 0.75);
  font-size: 0.9rem;
  line-height: 1.35;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.omni-rec__price {
  margin-top: 0.35rem;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.65);
  font-size: 0.88rem;
}

@media (max-width: 991.98px) {
  .omni-product__wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .omni-thumb {
    flex-basis: 74px;
    width: 74px;
  }

  .omni-pdp-badges {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .omni-product__media {
    position: sticky;
    top: var(--omni-sticky-top, 110px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .omni-thumb,
  .omni-product__img img {
    transition: none !important;
  }

  .omni-gallery__main:hover img {
    transform: none !important;
  }
}
@media (max-width: 575.98px) {
  .omni-hero__title {
    letter-spacing: 0.05em;
  }

  .omni-section {
    padding: 2rem 0;
  }
}

/* ==========================================================================
   Auth / Login page (matches provided design)
   ========================================================================== */
.omni-auth-page {
  background:
    radial-gradient(1200px 600px at 50% -120px, rgba(90, 49, 244, 0.08), transparent 55%),
    radial-gradient(900px 520px at 10% 15%, rgba(13, 110, 253, 0.06), transparent 55%),
    #ffffff;
}

.omni-auth {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 2.75rem 1rem 1.4rem;
}

.omni-auth__stage {
  flex: 1;
  display: grid;
  place-items: center;
}

.omni-auth__card {
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.65rem 1.6rem 1.45rem;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.08);
}

.omni-auth__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: 0.95rem;
}

.omni-auth__mark {
  width: 54px;
  height: 54px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.omni-auth__mark--logo {
  background: transparent;
  box-shadow: none;
}

.omni-auth__mark--logo::before,
.omni-auth__mark--logo::after {
  content: none;
}

.omni-auth__mark--logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.omni-auth__brandText {
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.omni-auth__title {
  text-align: left;
  font-size: 1.1rem;
  font-weight: 900;
  margin: 0 0 0.15rem;
}

.omni-auth__subtitle {
  text-align: left;
  margin: 0 0 0.85rem;
  color: rgba(17, 17, 17, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
}

.omni-auth__btn {
  height: 44px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.omni-auth__btn--shop {
  background: var(--omni-shop);
  border: 1px solid var(--omni-shop);
  color: #fff;
}

.omni-auth__btn--shop:hover,
.omni-auth__btn--shop:focus {
  background: var(--omni-shop-dark);
  border-color: var(--omni-shop-dark);
  color: #fff;
}

.omni-auth__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.85rem;
  margin: 0.95rem 0 0.85rem;
  color: rgba(17, 17, 17, 0.45);
  font-weight: 800;
  font-size: 0.85rem;
}

.omni-auth__divider::before,
.omni-auth__divider::after {
  content: "";
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
}

.omni-auth__divider span {
  padding: 0.15rem 0.35rem;
}

.omni-auth__form {
  text-align: left;
}

.omni-auth__label {
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.omni-auth__input {
  height: 44px;
  border-radius: 8px;
  font-weight: 700;
  border-color: rgba(0, 0, 0, 0.16);
}

.omni-auth__input:focus {
  border-color: rgba(13, 110, 253, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.omni-auth__btn--continue {
  background: var(--omni-blue);
  border: 1px solid var(--omni-blue);
  color: #fff;
}

.omni-auth__btn--continue:hover,
.omni-auth__btn--continue:focus {
  background: var(--omni-blue-dark);
  border-color: var(--omni-blue-dark);
  color: #fff;
}

.omni-auth__footer {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(17, 17, 17, 0.55);
  font-weight: 700;
  padding-top: 1rem;
}

.omni-auth__footer-link {
  color: rgba(17, 17, 17, 0.55);
  text-decoration: none;
}

.omni-auth__footer-link:hover {
  color: rgba(17, 17, 17, 0.85);
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .omni-auth {
    padding-top: 2.25rem;
  }
  .omni-auth__card {
    padding: 1.35rem 1.15rem 1.2rem;
    border-radius: 12px;
  }
}
