/* =========================================================
   Unik shared section system ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ reuse on every page
   Brand: #074f78 | Font: Poppins (loaded globally)
   ========================================================= */

:root {
  --unik-radius-img: 1.25rem;
  --unik-radius-card: 1.15rem;
  --unik-section-y: clamp(2.75rem, 4.5vw, 4.25rem);
  --unik-icon-box: 3rem;
  --unik-icon-box-sm: 2.5rem;
}

@media (max-width: 767.98px) {
  :root {
    --unik-section-y: clamp(2rem, 5vw, 2.75rem);
  }
}

/* Unified section rhythm */
.unik-section,
main > section.unik-section {
  padding-top: var(--unik-section-y) !important;
  padding-bottom: var(--unik-section-y) !important;
}

.unik-section + .unik-section,
section.unik-home-hero + .unik-section,
section.unik-home-hero + section {
  margin-top: 0;
  padding-top: clamp(1.35rem, 4vw, 2.25rem) !important;
  background-color: var(--bs-body-bg, #fff);
}

@media (max-width: 767.98px) {
  .unik-section + .unik-section,
  section.unik-home-hero + .unik-section,
  section.unik-home-hero + section {
    margin-top: 0;
    padding-top: clamp(1.25rem, 4.5vw, 1.75rem) !important;
  }

  .unik-advantage-section.unik-section,
  .unik-why-section.unik-section {
    margin-top: 0.5rem;
  }
}

/* One pill style everywhere */
.unik-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .4rem .95rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.12) !important;
  color: #074f78 !important;
  line-height: 1.2;
}

html[data-bs-theme="dark"] .unik-pill {
  background: rgba(7, 79, 120, 0.35) !important;
  color: #9fd0ef !important;
}

/* Consistent rounded images sitewide ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ exclude brand logos */
img:not(.navbar-brand-item):not(.footer-logo),
.rounded,
.rounded-2,
.rounded-3,
.rounded-4,
.card-img-scale-wrapper,
.unik-about-swiper,
.unik-about-swiper img,
.team-card img,
.service-hero-img,
.swiper-slide img:not(.navbar-brand-item):not(.footer-logo):not(.unik-team-glass__media img) {
  border-radius: var(--unik-radius-img) !important;
}

.navbar-brand-item,
.footer-logo,
.navbar-brand img,
.unik-footer .footer-logo {
  border-radius: 0 !important;
}

/* Perfectly centered icon wells */
.unik-icon,
.category-icon,
.unik-service-icon,
.unik-advantage-icon,
.icon-md,
.icon-lg,
.icon-xl,
.service-cta-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
}

.unik-icon svg.lucide,
.category-icon svg.lucide,
.unik-service-icon svg.lucide,
.unik-advantage-icon svg.lucide,
.icon-md svg.lucide,
.icon-lg svg.lucide,
.icon-xl svg.lucide {
  display: block;
  margin: 0;
  flex-shrink: 0;
}

.category-icon {
  width: var(--unik-icon-box);
  height: var(--unik-icon-box);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: .65rem !important;
  border-radius: 50%;
  background: rgba(7, 79, 120, 0.12);
  color: #074f78;
}

.category-icon svg.lucide {
  width: 1.35rem;
  height: 1.35rem;
}

.icon-md {
  width: var(--unik-icon-box-sm);
  height: var(--unik-icon-box-sm);
  min-width: var(--unik-icon-box-sm);
  padding: 0 !important;
  border-radius: 50% !important;
}

.icon-md svg.lucide {
  width: 1.15rem;
  height: 1.15rem;
}

/* Compact service cards */
.unik-service-card {
  height: auto !important;
  min-height: 0 !important;
  padding: 1.15rem 1.1rem !important;
  border-radius: var(--unik-radius-card) !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: var(--bs-body-bg);
  display: flex;
  flex-direction: column;
  transition: transform .28s ease, box-shadow .28s ease;
}

.unik-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.08);
}

.unik-service-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .85rem;
  margin-bottom: .85rem !important;
  background: rgba(7, 79, 120, 0.12);
  color: #074f78;
}

.unik-service-link {
  color: #074f78;
  margin-top: auto;
}

.unik-service-list li {
  display: flex;
  align-items: center;
}

/* Testimonials: scope tall padding away from hub/feature cards */
.testimonial-swiper .category-card {
  min-height: 0 !important;
  height: auto !important;
  padding: 1.25rem 1.15rem !important;
  justify-content: flex-start;
}

.testimonial-swiper .testimonial-text {
  min-height: 0 !important;
  margin-bottom: 1rem;
}

.x-small {
  font-size: 0.75rem;
  line-height: 1.4;
}

.animate-on-scroll {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

html.js-motion-ready .animate-on-scroll:not(.is-visible) {
  opacity: 0;
  transform: translateY(20px);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.unik-advantage-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: rgba(7, 79, 120, 0.1);
  color: #074f78;
}

.unik-advantage-icon svg.lucide {
  width: 1.4rem;
  height: 1.4rem;
  color: inherit;
}

/* Compact category / feature cards ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ no tall empty space */
.category-card {
  height: auto !important;
  min-height: 0 !important;
  padding: 1rem 0.9rem !important;
  border-radius: var(--unik-radius-card) !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: var(--bs-body-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: transform .28s ease, box-shadow .28s ease, background-color .28s ease;
}

.category-card.feature-card {
  align-items: stretch;
  text-align: left;
  padding: 1.1rem 1.15rem !important;
}

.category-card h3,
.category-card .h6 {
  margin-bottom: .35rem !important;
}

.category-card p {
  margin-bottom: 0 !important;
  font-size: .78rem;
  line-height: 1.4;
}

.category-card.bg-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #074f78, #0a628f) !important;
  color: #ffffff !important;
}

.category-card.bg-primary h3,
.category-card.bg-primary .h6,
.category-card.bg-primary p {
  color: #ffffff !important;
}

/* Dark theme: unified canvas (one surface, cards for depth) */
html[data-bs-theme="dark"] {
  --bs-body-bg: #12171c;
  --bs-body-bg-rgb: 18, 23, 28;
  --bs-secondary-bg: #1a222b;
  --bs-tertiary-bg: #1a222b;
  --bs-border-color: rgba(255, 255, 255, 0.08);
  --unik-section-y: clamp(2.75rem, 4.5vw, 4.25rem);
  color-scheme: dark;
}

html[data-bs-theme="dark"] body,
html[data-bs-theme="dark"] main {
  background: #12171c !important;
  background-image: none !important;
}

html[data-bs-theme="dark"] .unik-section,
html[data-bs-theme="dark"] .unik-about-section,
html[data-bs-theme="dark"] .unik-services-section,
html[data-bs-theme="dark"] .unik-advantage-section,
html[data-bs-theme="dark"] .unik-why-section,
html[data-bs-theme="dark"] .unik-testimonials-section,
html[data-bs-theme="dark"] #industries,
html[data-bs-theme="dark"] #team,
html[data-bs-theme="dark"] section.bg-light,
html[data-bs-theme="dark"] .bg-light,
html[data-bs-theme="dark"] .py-5.bg-light,
html[data-bs-theme="dark"] .py-lg-8.bg-light,
html[data-bs-theme="dark"] .bg-mode,
html[data-bs-theme="dark"] .service-features-band {
  background-color: #12171c !important;
  background-image: none !important;
}

/* Flatten parallax strips so they match the page canvas */
html[data-bs-theme="dark"] .unik-advantage-section,
html[data-bs-theme="dark"] .unik-stats-section,
html[data-bs-theme="dark"] .bg-parallax {
  background-image: none !important;
  background-color: #12171c !important;
  background-attachment: scroll !important;
}

html[data-bs-theme="dark"] .unik-advantage-overlay,
html[data-bs-theme="dark"] .unik-stats-section .unik-stats-overlay {
  background: #12171c !important;
  opacity: 1 !important;
}

html[data-bs-theme="dark"] .unik-advantage-card {
  background: #1e272f !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

html[data-bs-theme="dark"] .unik-advantage-icon {
  background: rgba(7, 79, 120, 0.4) !important;
  color: #9fd0ef !important;
}

html[data-bs-theme="dark"] .unik-advantage-icon svg.lucide {
  color: #9fd0ef !important;
}

html[data-bs-theme="dark"] .unik-advantage-title,
html[data-bs-theme="dark"] .unik-advantage-card h3,
html[data-bs-theme="dark"] .unik-advantage-card h5 {
  color: #f3f7fa !important;
}

html[data-bs-theme="dark"] .unik-advantage-card p {
  color: #a9b4bf !important;
}

html[data-bs-theme="dark"] .unik-pill.unik-advantage-badge,
html[data-bs-theme="dark"] .unik-advantage-section .unik-pill {
  background: rgba(7, 79, 120, 0.35) !important;
  color: #9fd0ef !important;
}

html[data-bs-theme="dark"] .category-card,
html[data-bs-theme="dark"] .unik-service-card,
html[data-bs-theme="dark"] .unik-about-card {
  background-color: #1e272f !important;
  border-color: rgba(255, 255, 255, 0.06);
  color: #f3f7fa;
}

html[data-bs-theme="dark"] .category-icon {
  background: rgba(7, 79, 120, 0.4);
  color: #9fd0ef;
}

html[data-bs-theme="dark"] .counter-card {
  background: #1e272f !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

html[data-bs-theme="light"] .unik-about-section,
html[data-bs-theme="light"] .unik-services-section {
  background-color: transparent;
}

html[data-bs-theme="light"] section.bg-light {
  background-color: #f5f8fb !important;
}

/* Light: soft light band for advantage section */
html[data-bs-theme="light"] .unik-advantage-section {
  background: #f5f8fb !important;
  background-image: none !important;
}

html[data-bs-theme="light"] .unik-advantage-overlay {
  background: transparent !important;
}

html[data-bs-theme="light"] .unik-stats-section {
  background: url('../images/p-2.jpg') no-repeat center top / cover;
}

html[data-bs-theme="light"] .unik-stats-section .unik-stats-overlay {
  background-color: rgba(0, 0, 0, 0.55);
}

/* Mobile card carousels */
.unik-mobile-swiper {
  display: none;
  padding-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
  .unik-desktop-grid {
    display: none !important;
  }

  .unik-mobile-swiper {
    display: block;
  }

  .category-card,
  .unik-service-card {
    padding: 1rem !important;
  }
}

@media (min-width: 768px) {
  .unik-mobile-swiper {
    display: none !important;
  }
}

.team-card {
  border-radius: var(--unik-radius-img);
  overflow: hidden;
  background: #1a222b;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.team-overlay {
  opacity: 1 !important;
  background: linear-gradient(to top, rgba(0,0,0,.72), transparent 55%) !important;
}

/* =========================================================
   Shared subpage shell (About, Services, Contact, Blog, etc.)
   ========================================================= */
.unik-page-hero {
  padding-top: clamp(2.25rem, 3.5vw, 3.25rem) !important;
  padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem) !important;
}

.unik-page-hero .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 1.25rem !important;
  padding-top: 0.35rem;
}

.unik-page-breadcrumb {
  padding-top: 0.5rem;
}

.unik-page-hero .breadcrumb-item,
.unik-page-hero .breadcrumb-item a {
  font-size: 0.875rem;
  line-height: 1.5;
}

.unik-content-card .unik-service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.unik-content-card ul li a:hover {
  color: #074f78 !important;
}

.service-page > section.unik-section:first-child {
  padding-top: clamp(3.25rem, 5.5vw, 4.75rem) !important;
}

.service-page .breadcrumb {
  margin-bottom: 1.25rem !important;
}

main {
  padding-top: 0;
}

#main-content {
  padding-top: var(--unik-header-offset, var(--unik-header-h, 64px));
}

.unik-page-hero-copy {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.unik-page .unik-content-card,
.unik-content-card {
  border-radius: var(--unik-radius-card) !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: var(--bs-body-bg);
  padding: 1.25rem 1.15rem;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease;
}

.unik-content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.08);
}

.unik-list-card {
  border-radius: var(--unik-radius-card) !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  overflow: hidden;
  background: var(--bs-body-bg);
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.unik-card-link {
  color: inherit;
  cursor: pointer;
}

.unik-card-link:hover,
.unik-card-link:focus-visible {
  color: inherit;
  transform: translateY(-4px);
  box-shadow: 0 0.85rem 1.75rem rgba(7, 79, 120, 0.12);
  border-color: rgba(7, 79, 120, 0.18);
}

.unik-card-link:focus-visible {
  outline: 2px solid rgba(7, 79, 120, 0.35);
  outline-offset: 2px;
}

.unik-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.08);
}

.unik-list-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0 !important;
}

.unik-list-card .card-body {
  padding: 1.1rem 1.15rem;
}

.unik-prose {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.unik-prose h1,
.unik-prose h2,
.unik-prose h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.unik-prose p,
.unik-prose li {
  color: var(--bs-secondary-color);
  line-height: 1.7;
}

/* Service detail pages aligned to shared system */
.service-page > section {
  padding-top: var(--unik-section-y) !important;
  padding-bottom: var(--unik-section-y) !important;
}

.service-page .service-hero-img,
.service-page img {
  border-radius: var(--unik-radius-img) !important;
}

.service-page .badge.bg-primary.bg-opacity-10,
.service-page .unik-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .95rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.12) !important;
  color: #074f78 !important;
  line-height: 1.2;
}

html[data-bs-theme="dark"] .service-page .badge.bg-primary.bg-opacity-10,
html[data-bs-theme="dark"] .service-page .unik-pill {
  background: rgba(7, 79, 120, 0.35) !important;
  color: #9fd0ef !important;
}

.service-page .icon-lg,
.service-page .icon-xl,
.service-page .feature-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
}

.service-features-band {
  background-color: transparent;
}

html[data-bs-theme="light"] .service-features-band {
  background-color: #f5f8fb !important;
}

html[data-bs-theme="dark"] .service-features-band,
html[data-bs-theme="dark"] .service-page .bg-mode,
html[data-bs-theme="dark"] .service-page .bg-light,
html[data-bs-theme="dark"] .service-page section {
  background-color: #12171c !important;
}

html[data-bs-theme="dark"] .unik-content-card,
html[data-bs-theme="dark"] .unik-list-card,
html[data-bs-theme="dark"] .service-page .hover-card,
html[data-bs-theme="dark"] .service-page .card.bg-mode {
  background-color: #1e272f !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  color: #f3f7fa;
}

html[data-bs-theme="dark"] .unik-page-hero,
html[data-bs-theme="dark"] .unik-page section,
html[data-bs-theme="dark"] .unik-legal-section {
  background-color: #12171c !important;
}

/* =========================================================
   Site-wide UX fixes
   ========================================================= */

/* 1. Hide all public breadcrumbs */
.unik-page-breadcrumb,
nav[aria-label="breadcrumb"],
.breadcrumb,
.breadcrumb-dots {
  display: none !important;
}

/* 2. Nav dropdown chevrons without Font Awesome */
.navbar .dropdown-toggle::after,
.navbar .dropdown-link.dropdown-toggle::after,
.dropdown .dropdown-toggle::after {
  content: "" !important;
  display: inline-block !important;
  width: 0.42em !important;
  height: 0.42em !important;
  margin-left: 0.35rem !important;
  border: 0 !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) !important;
  vertical-align: 0.08em !important;
  font-family: inherit !important;
  background: none !important;
}

.navbar-expand-xl .dropdown.dropend .dropdown-toggle::after,
.dropend .dropdown-toggle::after {
  transform: rotate(-45deg) !important;
}

.navbar-expand-xl .dropdown.dropstart .dropdown-toggle::before,
.dropstart .dropdown-toggle::before {
  content: "" !important;
  display: inline-block !important;
  width: 0.42em !important;
  height: 0.42em !important;
  margin-right: 0.35rem !important;
  border: 0 !important;
  border-left: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) !important;
  vertical-align: 0.08em !important;
  font-family: inherit !important;
  background: none !important;
}

/* 3. CTA headings always white on brand cards */
.card.bg-primary .card-body h1,
.card.bg-primary .card-body h2,
.card.bg-primary .card-body h3,
.cta-card h1,
.cta-card h2,
.cta-card h3,
.bg-primary .card-body h1,
.bg-primary .card-body h2,
.bg-primary .card-body h3 {
  color: #ffffff !important;
}

.card.bg-primary .card-body p,
.cta-card p,
.bg-primary .card-body p {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* 4. Contact form refinements */
.unik-contact-form .form-control,
.unik-contact-form .form-control-lg {
  border-radius: 0.75rem;
  border-color: rgba(7, 79, 120, 0.15);
}

.unik-contact-form .form-control:focus {
  border-color: #074f78;
  box-shadow: 0 0 0 0.2rem rgba(7, 79, 120, 0.12);
}

.unik-hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.unik-captcha-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(7, 79, 120, 0.12);
  border-radius: 0.75rem;
  background: #f5f8fb;
}

.unik-captcha-question {
  white-space: nowrap;
  flex: 0 0 auto;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: #074f78;
}

.unik-captcha-box .form-control {
  flex: 1 1 auto;
  min-width: 110px;
  margin: 0 !important;
}

.unik-captcha-input[type="number"]::-webkit-outer-spin-button,
.unik-captcha-input[type="number"]::-webkit-inner-spin-button,
input.unik-captcha-input::-webkit-outer-spin-button,
input.unik-captcha-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.unik-captcha-input[type="number"],
input.unik-captcha-input {
  -moz-appearance: textfield;
  appearance: textfield;
}

html[data-bs-theme="dark"] .unik-captcha-box {
  background: #1a222b;
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .unik-captcha-question {
  color: #9fd0ef;
}

/* 5. Lazy images & faster paint */
img[loading="lazy"] {
  content-visibility: auto;
}

/* 5. Lazy images & faster paint */
img[loading="lazy"] {
  content-visibility: auto;
}

.service-page > section:first-of-type,
.unik-page > section:first-of-type:not(.unik-page-hero) {
  padding-top: clamp(1.5rem, 3vw, 2.25rem) !important;
}

@media (max-width: 1199.98px) {
  .unik-page-hero {
    padding-top: clamp(2rem, 4vw, 2.75rem) !important;
  }

  .service-page > section:first-of-type,
  .unik-page > section:first-of-type:not(.unik-page-hero) {
    padding-top: clamp(1.25rem, 3vw, 2rem) !important;
  }
}

/* Service feature cards (About Service section) */
.service-feature-grid .service-feature-item,
.service-checklist .d-flex {
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: linear-gradient(135deg, rgba(7, 79, 120, 0.04), rgba(255, 255, 255, 0.9));
  box-shadow: 0 8px 22px rgba(7, 79, 120, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  height: 100%;
}

.service-feature-grid .service-feature-item:hover,
.service-checklist .d-flex:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(7, 79, 120, 0.12);
  border-color: rgba(7, 79, 120, 0.22);
}

.service-checklist .d-flex i[data-lucide],
.service-checklist .d-flex svg.lucide {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  color: #074f78;
}

.service-checklist .d-flex span {
  font-weight: 600;
  font-size: 0.92rem;
  color: #1a2b38;
}

html[data-bs-theme="dark"] .service-checklist .d-flex,
html[data-bs-theme="dark"] .service-feature-grid .service-feature-item {
  background: linear-gradient(135deg, rgba(10, 98, 143, 0.18), rgba(30, 39, 47, 0.95));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

html[data-bs-theme="dark"] .service-checklist .d-flex span {
  color: #e8eef3;
}

html[data-bs-theme="dark"] .service-checklist .d-flex i[data-lucide],
html[data-bs-theme="dark"] .service-checklist .d-flex svg.lucide {
  color: #9fd0ef;
}

/* Service inquiry panel */
.unik-service-inquiry {
  border: 1px solid rgba(7, 79, 120, 0.1);
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(7, 79, 120, 0.08);
}

html[data-bs-theme="dark"] .unik-service-inquiry {
  background: var(--unik-card-dark, #1e272f);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Contact page layout */
.unik-contact-sidebar-card {
  border-radius: 1rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: #fff;
  padding: 1.25rem;
}

.unik-contact-qr img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 0.75rem;
  border: 1px solid rgba(7, 79, 120, 0.08);
}

/* Feedback hero band */
.unik-feedback-hero {
  min-height: 180px;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, #074f78 0%, #0a628f 55%, #0d7aab 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.unik-feedback-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/elements/pattern.svg") center/cover no-repeat;
  opacity: 0.12;
}

.unik-feedback-hero-content {
  position: relative;
  z-index: 1;
}

html[data-bs-theme="dark"] .unik-contact-sidebar-card {
  background: var(--unik-card-dark, #1e272f);
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .unik-contact-sidebar-card .text-dark {
  color: #e8eef3 !important;
}

/* Homepage: vintage review marquee, team cards, back-to-top */
.unik-review-count-badge {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.1);
  color: #074f78;
  font-weight: 700;
  font-size: 0.85rem;
}

html[data-bs-theme="dark"] .unik-review-count-badge {
  background: rgba(159, 208, 239, 0.12);
  color: #9fd0ef;
}

.unik-review-marquee-wrap { width: 100%; overflow: hidden; }

.unik-review-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.unik-review-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.unik-review-track--left { animation: unik-marquee-left 72s linear infinite; }
.unik-review-track--right { animation: unik-marquee-right 84s linear infinite; }
.unik-review-marquee-wrap:hover .unik-review-track { animation-play-state: paused; }

@keyframes unik-marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes unik-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.unik-vintage-review-card {
  flex: 0 0 auto;
  width: clamp(300px, 36vw, 420px);
  min-height: 118px;
  padding: 0.9rem 1.15rem;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, #e8f4fc 0%, #d4ebf9 100%);
  border: 1px solid rgba(7, 79, 120, 0.14);
  box-shadow: 0 8px 22px rgba(7, 79, 120, 0.1), inset 0 1px 0 rgba(255,255,255,0.75);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.45rem;
}

html[data-bs-theme="dark"] .unik-vintage-review-card {
  background: linear-gradient(145deg, rgba(10, 98, 143, 0.22) 0%, rgba(30, 39, 47, 0.95) 100%);
  border-color: rgba(159, 208, 239, 0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.unik-vintage-stars {
  color: #f5b301;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  margin-bottom: 0.45rem;
}

.unik-vintage-quote {
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.5;
  margin: 0;
  color: #1a3344;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.9em;
}

html[data-bs-theme="dark"] .unik-vintage-quote { color: #e8eef3; }

.unik-vintage-meta { display: flex; flex-direction: column; gap: 0.1rem; font-size: 0.76rem; }
.unik-vintage-meta strong { color: #074f78; }
.unik-vintage-meta span { color: #6b7280; }
html[data-bs-theme="dark"] .unik-vintage-meta strong { color: #9fd0ef; }
html[data-bs-theme="dark"] .unik-vintage-meta span { color: #a9b4bf; }

.back-top:before { content: none !important; display: none !important; }

button.back-top.unik-back-top,
.unik-back-top {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #fff !important;
}

.unik-back-top svg,
.unik-back-top i { color: #fff !important; }

/* Products page ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ interactive category cards */
.unik-products-grid-section {
  padding-top: clamp(1rem, 2vw, 1.5rem) !important;
}

.unik-product-category-card {
  position: relative;
  border-radius: 1rem;
  background: var(--bs-body-bg);
  border: 1px solid rgba(7, 79, 120, 0.1);
  box-shadow: 0 10px 28px rgba(7, 79, 120, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.unik-product-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(7, 79, 120, 0.14);
  border-color: rgba(7, 79, 120, 0.22);
}

.unik-product-category-card__accent {
  height: 4px;
  background: linear-gradient(90deg, #074f78, #0a628f, #9fd0ef);
}

.unik-product-category-card__inner {
  padding: 1.25rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.85rem;
}

.unik-product-category-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.unik-product-category-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(7, 79, 120, 0.12), rgba(159, 208, 239, 0.35));
  color: #074f78;
}

.unik-product-category-card__badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  white-space: nowrap;
}

.unik-product-category-card__title {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.3;
}

.unik-product-category-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.unik-product-category-card__title a:hover {
  color: #074f78;
}

.unik-product-category-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex-grow: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  align-content: flex-start;
}

.unik-product-category-card__tags li {
  display: contents;
}

.unik-product-category-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  line-height: 1.2;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 79, 120, 0.14);
  background: rgba(159, 208, 239, 0.22);
  color: #074f78;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 0 0 auto;
}

.unik-product-category-card__tag:hover {
  background: rgba(7, 79, 120, 0.16);
  color: #074f78;
  border-color: rgba(7, 79, 120, 0.28);
  transform: translateY(-1px);
}

.unik-product-category-card__tag--more {
  cursor: default;
  font-weight: 600;
}

.unik-product-category-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: #074f78;
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.unik-product-category-card__cta:hover {
  gap: 0.55rem;
  color: #0a628f;
}

html[data-bs-theme="dark"] .unik-product-category-card {
  background: #1e272f;
  border-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme="dark"] .unik-product-category-card__tag {
  background: rgba(159, 208, 239, 0.08);
  border-color: rgba(159, 208, 239, 0.12);
  color: #c5d0db;
}

html[data-bs-theme="dark"] .unik-product-category-card__title a:hover,
html[data-bs-theme="dark"] .unik-product-category-card__cta {
  color: #9fd0ef;
}

/* Team section */
.unik-team-section {
  padding-bottom: clamp(3rem, 5vw, 4rem) !important;
}

.unik-testimonials-section {
  padding-top: clamp(2.5rem, 4vw, 3.5rem) !important;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem) !important;
}

@media (prefers-reduced-motion: reduce) {
  .unik-review-track--left,
  .unik-review-track--right {
    animation: none !important;
  }
}

/* Yellow filled stars (site wide) */
.unik-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  line-height: 1;
}

.unik-star {
  font-size: 0.95rem;
  line-height: 1;
}

.unik-stars--sm .unik-star { font-size: 0.82rem; }
.unik-stars--lg .unik-star { font-size: 1.1rem; }

.unik-star.is-filled { color: #f5b301; text-shadow: 0 1px 0 rgba(180, 120, 0, 0.15); }
.unik-star.is-empty { color: #e5e7eb; }

html[data-bs-theme="dark"] .unik-star.is-empty { color: rgba(255,255,255,0.18); }

/* Product cards (category / subcategory grids) */
.unik-product-card {
  border-radius: 0.95rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: var(--bs-body-bg);
  box-shadow: 0 8px 22px rgba(7, 79, 120, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.unik-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(7, 79, 120, 0.12);
  border-color: rgba(7, 79, 120, 0.18);
}

.unik-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, #eef6fb, #dcecf7);
  border-radius: 0;
}

.unik-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  border-radius: 0 !important;
}

.unik-product-card:hover .unik-product-card__media img { transform: scale(1.04); }

.unik-product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 79, 120, 0.18), transparent 45%);
  pointer-events: none;
}

.unik-product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.88);
  color: #fff;
}

.unik-product-card__body { padding: 0.85rem 0.95rem 0.55rem; flex-grow: 1; }

.unik-product-card__title {
  font-size: 0.92rem;
  margin: 0 0 0.5rem;
  line-height: 1.35;
  min-height: 2.5em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.unik-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.unik-product-card__title a:hover { color: #074f78; }

.unik-product-card__price {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: #074f78;
}

.unik-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.unik-product-card__price-chip {
  display: none !important;
}

.unik-product-card__quote-link {
  display: none !important;
}

.unik-product-card__price,
.unik-product-card__price.is-quote {
  display: none !important;
}

.unik-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  padding: 0.65rem 0.95rem 0.85rem;
  border-top: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-product-card__btn {
  flex: 1;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.5rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.unik-product-card__btn:hover {
  background: #074f78;
  color: #fff;
}

.unik-product-card__icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #074f78;
  color: #fff;
  text-decoration: none;
}

/* Product detail page */
.unik-product-detail-page { overflow-x: hidden; }

.unik-product-gallery {
  border-radius: 1rem !important;
  position: relative;
  background: linear-gradient(145deg, #f8fbfd, #eef6fb);
}

.unik-product-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.unik-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0;
}

.unik-product-gallery__thumbs {
  display: flex;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  border-top: 1px solid rgba(7, 79, 120, 0.08);
  background: rgba(255, 255, 255, 0.85);
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.unik-product-gallery__thumbs--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  overflow: visible;
  justify-items: center;
}

.unik-product-gallery__thumbs::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.unik-product-gallery__thumbs-wrap {
  position: relative;
}

.unik-product-gallery__main-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(7, 79, 120, 0.16);
}

.unik-product-gallery__main-nav--prev { left: 0.85rem; }
.unik-product-gallery__main-nav--next { right: 0.85rem; }

.unik-product-gallery__counter {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.88);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}

.unik-product-review-form {
  border-radius: 1rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.unik-star-picker {
  display: inline-flex;
  gap: 0.25rem;
}

.unik-star-picker button {
  border: none;
  background: transparent;
  color: #d1d5db;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
}

.unik-star-picker button.is-active,
.unik-star-picker button:hover {
  color: #f59e0b;
}

.unik-review-card {
  border: 1px solid rgba(7, 79, 120, 0.08);
  border-radius: 1rem;
  padding: 1rem 1.15rem;
  background: #fff;
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 18px rgba(7, 79, 120, 0.05);
}

.unik-product-reviews-panel {
  border: 1px solid rgba(7, 79, 120, 0.08);
  border-radius: 1rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
  box-shadow: 0 10px 28px rgba(7, 79, 120, 0.06);
}

.unik-product-reviews-panel.is-empty {
  color: #6b7280;
  text-align: center;
  padding: 2rem 1.25rem;
}

.unik-product-gallery__thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  padding: 0.2rem;
  border: 2px solid rgba(7, 79, 120, 0.12);
  border-radius: 0.7rem;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.unik-product-gallery__thumb.is-active,
.unik-product-gallery__thumb:hover {
  border-color: #074f78;
  box-shadow: 0 6px 16px rgba(7, 79, 120, 0.14);
  transform: translateY(-1px);
}

.unik-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.45rem;
  background: #f8fbfd;
}

.unik-product-gallery-swiper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.unik-product-gallery-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.unik-product-gallery__img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.75rem;
}

.unik-product-gallery__empty {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #6b7280;
  background: linear-gradient(145deg, #eef6fb, #dcecf7);
}

.unik-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.88);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.unik-gallery-prev { left: 0.75rem; }
.unik-gallery-next { right: 0.75rem; }

.unik-product-summary { border-radius: 1rem !important; }

.unik-product-summary__price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #074f78;
  margin: 0;
}

.unik-product-option__label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 0.45rem;
}

.unik-product-option__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.unik-choice-pill {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(7, 79, 120, 0.14);
  background: rgba(159, 208, 239, 0.18);
  color: #074f78;
}

.unik-product-option__colors { display: flex; gap: 0.45rem; flex-wrap: wrap; }

.unik-color-dot {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 0 1px rgba(7, 79, 120, 0.18);
}

.unik-product-detail-section .unik-product-gallery,
.unik-product-detail-section .unik-product-summary {
  box-shadow: 0 14px 36px rgba(7, 79, 120, 0.08);
}

#product-reviews {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 992px) {
  .unik-product-review-form {
    position: sticky;
    top: 6.5rem;
  }
}

.unik-product-review-form .btn-primary {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-weight: 600;
}

.unik-product-spec { border-radius: 1rem !important; }
.unik-product-spec__content {
  color: var(--bs-secondary-color);
  line-height: 1.7;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.unik-product-spec__content img,
.unik-product-spec__content video,
.unik-product-spec__content iframe {
  max-width: 100% !important;
  height: auto !important;
}

.unik-product-spec__content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.unik-review-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-review-item__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

/* Products mega menu ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ refined to match site theme */
.unik-products-mega {
  width: min(720px, 94vw);
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 1rem !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  box-shadow: 0 18px 48px rgba(7, 79, 120, 0.14) !important;
  background: #ffffff;
}

.unik-products-mega > .dropdown-item.fw-semibold {
  color: #1a1a1a;
  font-size: 0.92rem;
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
}

.unik-products-mega > .dropdown-item.fw-semibold:hover {
  background: rgba(7, 79, 120, 0.06);
  color: #074f78;
}

.unik-products-mega__scroll {
  max-height: min(62vh, 440px);
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0.15rem 0.1rem 0.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.unik-products-mega__scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.unik-mega-group {
  padding: 0.65rem 0.7rem;
  border: 1px solid rgba(7, 79, 120, 0.08);
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  min-width: 0;
}

.unik-mega-group:last-child { border-bottom: 1px solid rgba(7, 79, 120, 0.08); }

.unik-mega-group__title {
  display: block;
  font-weight: 700;
  font-size: 0.86rem;
  color: #074f78;
  text-decoration: none;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.unik-mega-group__title:hover { color: #0a628f; }

.unik-mega-group__subs {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.7rem;
  border-left: 2px solid rgba(7, 79, 120, 0.18);
}

.unik-mega-group__subs li { margin: 0; }

.unik-mega-group__subs a {
  display: block;
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 0.24rem 0;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.82;
}

.unik-mega-group__subs a:hover {
  color: #074f78;
  opacity: 1;
}

.unik-mega-group__more {
  font-weight: 700 !important;
  color: #074f78 !important;
  opacity: 1 !important;
}

.unik-lang-switcher .dropdown-toggle {
  font-size: 0.78rem;
  padding: 0.15rem 0.35rem;
}

.unik-lang-menu { max-height: 280px; overflow-y: auto; }

/* Catalog sidebar */
.unik-catalog-sidebar {
  border: 1px solid rgba(7, 79, 120, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bs-body-bg);
}

.unik-catalog-group + .unik-catalog-group {
  border-top: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-catalog-group__head {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.unik-catalog-group__title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 0.75rem 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: inherit;
  text-decoration: none;
  background: rgba(7, 79, 120, 0.04);
}

.unik-catalog-group__title.is-active,
.unik-catalog-group.is-open > .unik-catalog-group__head .unik-catalog-group__title {
  color: #074f78;
  background: rgba(159, 208, 239, 0.22);
}

.unik-catalog-group__toggle {
  flex: 0 0 auto;
  width: 42px;
  border: none;
  border-left: 1px solid rgba(7, 79, 120, 0.08);
  background: rgba(7, 79, 120, 0.04);
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.unik-catalog-group__toggle i,
.unik-catalog-group__toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.unik-catalog-group.is-open .unik-catalog-group__toggle {
  background: rgba(159, 208, 239, 0.22);
}

.unik-catalog-group.is-open .unik-catalog-group__toggle i,
.unik-catalog-group.is-open .unik-catalog-group__toggle svg {
  transform: rotate(180deg);
}

.unik-catalog-group__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  background: rgba(7, 79, 120, 0.08);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

.unik-catalog-group__list,
.unik-catalog-group .unik-catalog-empty {
  display: none;
}

.unik-catalog-group.is-open .unik-catalog-group__list,
.unik-catalog-group.is-open .unik-catalog-empty {
  display: block;
}

.unik-catalog-group__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0 0.65rem;
}

.unik-catalog-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 1.35rem;
  font-size: 0.82rem;
  color: inherit;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.unik-catalog-link:hover {
  background: rgba(7, 79, 120, 0.05);
  color: #074f78;
}

.unik-catalog-link.is-active {
  border-left-color: #074f78;
  background: rgba(159, 208, 239, 0.18);
  color: #074f78;
  font-weight: 600;
}

.unik-catalog-link__count {
  font-size: 0.72rem;
  color: #6b7280;
}

.unik-catalog-empty {
  margin: 0;
  padding: 0.35rem 1rem 0.75rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Product card quote badge */
.unik-product-card__price.is-quote,
.unik-product-summary__price.is-quote {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  color: #074f78;
  background: rgba(159, 208, 239, 0.25);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

@media (max-width: 767.98px) {
  .unik-products-mega__scroll { grid-template-columns: 1fr; }
  .unik-vintage-review-card { width: min(88vw, 360px); }
}

/* Contact form arrow decoration */
.unik-contact-form-deco {
  position: absolute;
  left: -28px;
  bottom: 28px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7, 79, 120, 0.15), rgba(159, 208, 239, 0.35));
  transform: rotate(-12deg);
  pointer-events: none;
  z-index: 1;
}

.unik-contact-form-deco::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-top: 3px solid #074f78;
  border-right: 3px solid #074f78;
  transform: rotate(45deg);
}

@media (max-width: 991.98px) {
  .unik-contact-form-deco { display: none; }
}

/* Blog detail */
.unik-blog-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 1rem;
}

.unik-blog-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.unik-blog-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
}

.unik-blog-prose .card-body {
  color: var(--bs-secondary-color);
  line-height: 1.75;
}

.unik-blog-prose h2 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
}

.unik-blog-prose h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.unik-blog-prose h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.unik-blog-prose h2,
.unik-blog-prose h3,
.unik-blog-prose h4 {
  color: var(--unik-ink, #1a1a1a);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

html[data-bs-theme="dark"] .unik-blog-prose h2,
html[data-bs-theme="dark"] .unik-blog-prose h3,
html[data-bs-theme="dark"] .unik-blog-prose h4 {
  color: #f3f7fa;
}

.unik-blog-recent__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-blog-recent__link img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 0.65rem;
  flex-shrink: 0;
}

.unik-blog-recent__link:hover { color: #074f78; }

/* Dark / light polish ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ product, team, reviews, gallery */
html[data-bs-theme="dark"] .unik-product-card {
  border-color: rgba(159, 208, 239, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

html[data-bs-theme="dark"] .unik-product-card__media {
  background: linear-gradient(145deg, rgba(10, 98, 143, 0.18), rgba(30, 39, 47, 0.95));
}

html[data-bs-theme="dark"] .unik-product-card__quote-link {
  background: rgba(10, 98, 143, 0.35);
  color: #9fd0ef;
}

html[data-bs-theme="dark"] .unik-product-card__quote-link:hover {
  background: #0a628f;
  color: #fff;
}

html[data-bs-theme="dark"] .unik-product-card__btn {
  background: rgba(159, 208, 239, 0.12);
  color: #9fd0ef;
}

html[data-bs-theme="dark"] .unik-product-card__title a:hover { color: #9fd0ef; }

html[data-bs-theme="dark"] .unik-product-card__price { color: #9fd0ef; }

html[data-bs-theme="dark"] .unik-product-gallery {
  background: linear-gradient(145deg, rgba(30, 39, 47, 0.95), rgba(26, 34, 43, 0.98));
}

html[data-bs-theme="dark"] .unik-product-gallery__main,
html[data-bs-theme="dark"] .unik-product-gallery__thumb {
  background: #1e272f;
}

html[data-bs-theme="dark"] .unik-product-gallery__thumbs {
  background: rgba(26, 34, 43, 0.92);
  border-top-color: rgba(159, 208, 239, 0.1);
}

html[data-bs-theme="dark"] .unik-product-gallery__thumb img { background: #12171c; }

html[data-bs-theme="dark"] .unik-product-gallery__main-nav {
  background: rgba(30, 39, 47, 0.92);
  color: #9fd0ef;
}

html[data-bs-theme="dark"] .unik-review-card,
html[data-bs-theme="dark"] .unik-product-reviews-panel,
html[data-bs-theme="dark"] .unik-product-review-form,
html[data-bs-theme="dark"] .unik-product-summary,
html[data-bs-theme="dark"] .unik-product-spec {
  background: #1e272f;
  border-color: rgba(159, 208, 239, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

html[data-bs-theme="dark"] .unik-product-review-form {
  background: linear-gradient(180deg, #1e272f 0%, #1a222b 100%);
}

html[data-bs-theme="dark"] .unik-product-reviews-panel {
  background: linear-gradient(180deg, #1e272f 0%, #1a222b 100%);
}

html[data-bs-theme="dark"] .unik-star-picker button { color: rgba(255, 255, 255, 0.22); }

html[data-bs-theme="light"] .unik-testimonials-section.bg-light {
  background: linear-gradient(180deg, #f5f8fb 0%, #eef3f7 100%) !important;
}

html[data-bs-theme="light"] .unik-team-section {
  background: linear-gradient(180deg, rgba(159, 208, 239, 0.14), #f5f8fb 55%);
}

/* ===== Autofill contrast fix (Chrome / Safari / Edge) ===== */
.unik-contact-form input.form-control,
.unik-contact-form textarea.form-control,
.unik-service-inquiry input.form-control,
.unik-service-inquiry textarea.form-control,
.unik-product-review-form input.form-control,
.unik-product-review-form textarea.form-control {
  color: #1f2937 !important;
  background-color: #fff !important;
  caret-color: #074f78;
}

.unik-contact-form input.form-control:-webkit-autofill,
.unik-contact-form input.form-control:-webkit-autofill:hover,
.unik-contact-form input.form-control:-webkit-autofill:focus,
.unik-contact-form textarea.form-control:-webkit-autofill,
.unik-service-inquiry input.form-control:-webkit-autofill,
.unik-service-inquiry input.form-control:-webkit-autofill:hover,
.unik-service-inquiry input.form-control:-webkit-autofill:focus,
.unik-product-review-form input.form-control:-webkit-autofill,
.unik-product-review-form input.form-control:-webkit-autofill:hover,
.unik-product-review-form input.form-control:-webkit-autofill:focus {
  -webkit-text-fill-color: #1f2937 !important;
  color: #1f2937 !important;
  caret-color: #074f78 !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  transition: background-color 99999s ease-in-out 0s;
  background-color: #fff !important;
}

html[data-bs-theme="dark"] .unik-contact-form input.form-control,
html[data-bs-theme="dark"] .unik-contact-form textarea.form-control,
html[data-bs-theme="dark"] .unik-service-inquiry input.form-control,
html[data-bs-theme="dark"] .unik-service-inquiry textarea.form-control {
  color: #e8eef3 !important;
  background-color: #1e272f !important;
}

html[data-bs-theme="dark"] .unik-contact-form input.form-control:-webkit-autofill,
html[data-bs-theme="dark"] .unik-service-inquiry input.form-control:-webkit-autofill {
  -webkit-text-fill-color: #e8eef3 !important;
  box-shadow: 0 0 0 1000px #1e272f inset !important;
  -webkit-box-shadow: 0 0 0 1000px #1e272f inset !important;
}

/* ===== Form success toast ===== */
.unik-form-toast {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: unik-toast-in 0.28s ease;
}

.unik-form-toast.is-hiding {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.unik-form-toast__card {
  position: relative;
  width: min(520px, 100%);
  margin-top: 0;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 24px 60px rgba(7, 79, 120, 0.28);
  padding: 1.55rem 1.45rem 1.65rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  overflow: hidden;
}

.unik-form-toast__icon {
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 999px;
  background: rgba(25, 135, 84, 0.12);
  color: #198754;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.unik-form-toast__title {
  display: block;
  color: #074f78;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.unik-form-toast__text {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.5;
}

.unik-form-toast__close {
  margin-left: auto;
  border: none;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.unik-form-toast__progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #074f78, #0a628f);
  transform-origin: left center;
  animation: unik-toast-bar 5s linear forwards;
}

@keyframes unik-toast-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes unik-toast-bar {
  from { transform: scaleX(1); }
  to { transform: scaleX(0); }
}

/* ===== Contact page ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ mobile-first ===== */
.unik-contact-layout {
  display: grid;
  gap: 1rem;
}

.unik-contact-aside {
  display: grid;
  gap: 0.85rem;
}

.unik-contact-aside__card,
.unik-contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(7, 79, 120, 0.1);
  border-radius: 1rem;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 10px 28px rgba(7, 79, 120, 0.06);
}

.unik-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(7, 79, 120, 0.08);
}

.unik-contact-link:last-of-type { border-bottom: none; }

.unik-contact-link__icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(159, 208, 239, 0.35);
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.unik-contact-link strong {
  display: block;
  font-size: 0.9rem;
  color: #111827;
}

.unik-contact-link em {
  font-style: normal;
  font-size: 0.82rem;
  color: #6b7280;
}

.unik-contact-social__btn {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.06);
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.unik-contact-qr {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.unik-contact-qr img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 0.55rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  background: #f8fbfd;
  padding: 0.25rem;
}

.unik-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.unik-contact-field .form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

.unik-contact-form-deco { display: none !important; }

@media (min-width: 768px) {
  .unik-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .unik-contact-field--full {
    grid-column: 1 / -1;
  }
}

@media (min-width: 992px) {
  .unik-contact-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
    gap: 1.25rem;
    align-items: start;
  }
}

/* Mobile-first header / topbar density */
@media (max-width: 991.98px) {
  .unik-topbar { min-height: 0; }
.unik-page-hero-copy h1,
.unik-blog-detail-page .unik-page-hero-copy h1 {
  font-size: clamp(1.55rem, 3.2vw, 2.15rem) !important;
  line-height: 1.25;
  color: var(--unik-ink, #1a1a1a);
}
  .unik-service-inquiry {
    padding: 1.15rem !important;
  }
  .unik-section {
    padding-top: clamp(1.75rem, 5vw, 3rem);
    padding-bottom: clamp(1.75rem, 5vw, 3rem);
  }
}

/* ---------- 2026-08-20: reviews header + media carousels ---------- */
.unik-reviews-head {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.unik-reviews-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--unik-ink, #1a1a1a);
  line-height: 1.2;
}

/* Sitewide section title ÃÂÃÂ¢ÃÂÃÂÃÂÃÂ matches Global Trust (do NOT target card h2s) */
.unik-section-title,
h2.unik-section-title,
.unik-about-title {
  font-size: clamp(1.65rem, 3vw, 2.35rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
  color: var(--unik-ink, #1a1a1a);
}

html[data-bs-theme="light"] .unik-section-title,
html[data-bs-theme="light"] .unik-about-title {
  color: var(--unik-ink, #1a1a1a) !important;
}

.unik-section-sub,
.unik-reviews-sub {
  color: #1a1a1a;
  opacity: 0.78;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 680px;
}

/* Keep Bootstrap utility heading sizes for cards */
.unik-list-card h2.h5,
.unik-list-card .h5,
.unik-page .unik-list-card h2,
.unik-content-card h2.h6,
.unik-page .unik-content-card h2.h6 {
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em;
  color: var(--unik-ink, #1a1a1a) !important;
}

@media (min-width: 992px) {
  main .unik-section > .container > .text-center > h2.display-5,
  main .unik-section > .container > .text-center > h2.display-6 {
    font-size: clamp(1.65rem, 3vw, 2.35rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
  }
}

/* ---------- Unik Advantage (primary blue band) ---------- */
section.unik-advantage-section.unik-section {
  color: #ffffff !important;
  overflow: hidden;
  background: #074f78 !important;
  background-image: linear-gradient(145deg, #074f78 0%, #0a628f 52%, #053a5c 100%) !important;
}

section.unik-advantage-section .unik-advantage-overlay {
  background: transparent !important;
  pointer-events: none;
}

section.unik-advantage-section .unik-pill.unik-advantage-badge {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

section.unik-advantage-section .unik-advantage-title {
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.2;
  font-size: clamp(1.65rem, 3vw, 2.35rem) !important;
}

section.unik-advantage-section .unik-advantage-divider {
  width: 60px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.85);
  margin: 1rem auto 0;
}

section.unik-advantage-section .unik-advantage-card {
  height: 100%;
  border-radius: 1.15rem;
  padding: 1.75rem 1.35rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.14) !important;
  border: 1px solid rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  transition: transform .28s ease, background .28s ease, border-color .28s ease;
}

section.unik-advantage-section .unik-advantage-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.36) !important;
  color: #ffffff !important;
}

section.unik-advantage-section .unik-advantage-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}

section.unik-advantage-section .unik-advantage-icon svg.lucide {
  color: #ffffff !important;
  width: 1.45rem;
  height: 1.45rem;
}

section.unik-advantage-section .unik-advantage-card h5,
section.unik-advantage-section .unik-advantage-card p,
section.unik-advantage-section .unik-advantage-card span {
  color: #ffffff !important;
  opacity: 1 !important;
}

section.unik-advantage-section .unik-advantage-card h5 {
  font-weight: 700;
  margin-bottom: .45rem;
  font-size: 0.92rem !important;
  line-height: 1.35;
}

section.unik-advantage-section .unik-advantage-card p {
  font-size: 0.78rem !important;
  line-height: 1.45;
  margin-bottom: 0;
}

.unik-reviews-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.1rem 0.65rem 0.75rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(7, 79, 120, 0.12);
  box-shadow: 0 8px 24px rgba(7, 79, 120, 0.08);
  color: #074f78;
  max-width: min(100%, 360px);
}

.unik-reviews-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(7, 79, 120, 0.12), rgba(159, 208, 239, 0.35));
  color: #074f78;
  flex-shrink: 0;
}

.unik-reviews-stat__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  min-width: 0;
  text-align: left;
}

.unik-reviews-stat__count {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}

.unik-reviews-stat__label {
  color: #5b6672;
  font-weight: 500;
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: nowrap;
}

html[data-bs-theme="dark"] .unik-reviews-title { color: #f3f7fa; }
html[data-bs-theme="dark"] .unik-reviews-sub,
html[data-bs-theme="dark"] .unik-reviews-stat__label { color: #a9b4bf; }
html[data-bs-theme="dark"] .unik-reviews-stat {
  background: rgba(159, 208, 239, 0.1);
  border-color: rgba(159, 208, 239, 0.18);
  color: #9fd0ef;
}
html[data-bs-theme="dark"] .unik-reviews-stat__icon {
  background: rgba(159, 208, 239, 0.14);
  color: #9fd0ef;
}
html[data-bs-theme="dark"] .unik-reviews-stat__count { color: #f3f7fa; }

.unik-media-carousel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.unik-media-carousel .swiper {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #e8eef3;
  aspect-ratio: 1 / 1;
  max-height: 520px;
}

.unik-media-carousel .swiper .swiper-slide,
.unik-media-carousel .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unik-media-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  position: relative;
  z-index: 2;
  width: min(100%, 280px);
  margin-inline: auto;
  margin-top: 0.75rem;
}

.unik-swiper-nav {
  position: static;
  transform: none !important;
  top: auto;
  left: auto;
  right: auto;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #074f78;
  box-shadow: 0 8px 20px rgba(7, 79, 120, 0.16);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  flex: 0 0 auto;
}

.unik-swiper-nav:hover {
  transform: scale(1.05) !important;
  background: #f5f8fb;
}

.unik-swiper-prev { left: auto; }
.unik-swiper-next { right: auto; }

/* ===== Unified swiper pagination (static dots OR fraction badge) ===== */
.unik-swiper-dots-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 1.5rem;
  margin-top: 0.9rem;
  padding: 0 0.5rem;
}

.unik-swiper-pagination,
.unik-team-pagination,
.unik-swiper-dots-bar .swiper-pagination,
.unik-media-carousel__controls .unik-swiper-pagination {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 12px;
  transform: none !important;
}

/* Dot row (<= 6 slides) */
.unik-swiper-pagination.swiper-pagination-bullets,
.unik-team-pagination.swiper-pagination-bullets,
.unik-swiper-dots-bar .swiper-pagination-bullets {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.38rem;
  flex-wrap: nowrap;
}

.unik-swiper-pagination .swiper-pagination-bullet,
.unik-team-pagination .swiper-pagination-bullet,
.unik-swiper-dots-bar .swiper-pagination-bullet,
.unik-media-carousel__controls .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  margin: 0 !important;
  opacity: 0.35 !important;
  background: #074f78 !important;
  border-radius: 999px !important;
  transition: width 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.unik-swiper-pagination .swiper-pagination-bullet-active,
.unik-team-pagination .swiper-pagination-bullet-active,
.unik-swiper-dots-bar .swiper-pagination-bullet-active,
.unik-media-carousel__controls .swiper-pagination-bullet-active {
  opacity: 1 !important;
  width: 20px !important;
  background: #074f78 !important;
  border-radius: 999px !important;
}

/* Fraction badge (> 6 slides) */
.unik-swiper-pagination.swiper-pagination-fraction,
.unik-team-pagination.swiper-pagination-fraction,
.unik-swiper-dots-bar .swiper-pagination-fraction {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.1);
  border: 1px solid rgba(7, 79, 120, 0.12);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #074f78;
  line-height: 1;
  min-width: 3.25rem;
}

.unik-media-carousel__controls .unik-swiper-pagination,
.unik-team-stage__nav .unik-team-pagination {
  flex: 0 1 auto;
  max-width: 148px;
  overflow: hidden;
}

.unik-team-controls { margin-top: 0.25rem; }

/* Hide native number input spinners sitewide */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* Product gallery bottom controls + lightbox */
.unik-product-gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem 0.35rem;
}

.unik-product-gallery__zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(7,79,120,.18);
  cursor: pointer;
}

.unik-product-gallery__img {
  cursor: zoom-in;
}

.unik-product-gallery__main-nav { display: none !important; }

.unik-product-detail-page .unik-page-hero {
  padding-bottom: 0.5rem !important;
}

.unik-product-detail-section {
  padding-top: 0.75rem !important;
}

.unik-product-summary__price.is-quote {
  display: none !important;
}

.unik-product-inquiry-form .form-label {
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.unik-inquiry-collapse {
  transition: height 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.unik-inquiry-panel {
  border: 1px solid rgba(7, 79, 120, 0.1) !important;
  border-radius: 1rem !important;
  overflow: hidden;
  background: #fff;
}

.unik-inquiry-collapse.collapsing {
  transition: height 0.38s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

#product-inquiry-trigger[aria-expanded="true"] {
  box-shadow: 0 10px 24px rgba(7, 79, 120, 0.22);
}

.unik-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 18, 28, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1.25rem;
}

.unik-lightbox.is-open { display: flex; }

body.unik-lightbox-open { overflow: hidden; }

.unik-lightbox__figure {
  margin: 0;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.unik-lightbox__figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  background: #fff;
}

.unik-lightbox__counter {
  color: rgba(255,255,255,.9);
  font-size: 0.9rem;
  font-weight: 600;
}

.unik-lightbox__close,
.unik-lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,0.92);
  color: #074f78;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.2);
}

.unik-lightbox__close { top: 1.25rem; right: 1.25rem; }
.unik-lightbox__prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.unik-lightbox__next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

@media (max-width: 767.98px) {
  .unik-lightbox__prev { left: 0.65rem; }
  .unik-lightbox__next { right: 0.65rem; }
}



/* Product gallery: no blue strip behind controls */
.unik-product-gallery {
  background: #ffffff !important;
  border: 1px solid rgba(7, 79, 120, 0.1);
  overflow: hidden;
}
.unik-product-gallery__main {
  background: #ffffff !important;
  aspect-ratio: 1 / 1 !important;
}
.unik-product-gallery__controls {
  background: #ffffff !important;
  border-top: 1px solid rgba(7, 79, 120, 0.08);
  padding: 0.75rem 0.75rem 0.45rem !important;
}
.unik-product-gallery__thumbs,
.unik-product-gallery__thumbs-wrap {
  background: #ffffff !important;
  border-top: 1px solid rgba(7, 79, 120, 0.08);
}
.unik-product-gallery__thumbs {
  padding-top: 0.75rem;
  padding-bottom: 0.85rem;
}

/* Product card: badge under title + slightly larger title */
.unik-product-card__media .unik-product-card__badge { display: none !important; }
.unik-product-card__title {
  font-size: 1.02rem !important;
  min-height: 0;
  margin-bottom: 0.35rem !important;
}
.unik-product-card__category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.1);
  color: #074f78;
  margin-bottom: 0.55rem;
}

/* Blog card titles ÃÂÃÂ keep compact */
.unik-page .unik-content-card h2.h6,
.unik-page .unik-content-card h2 {
  font-size: 1rem !important;
  line-height: 1.4 !important;
  font-weight: 700 !important;
  margin-bottom: 0.75rem !important;
}
.unik-list-card__title,
.unik-list-card h2.h5 {
  font-size: 1.05rem !important;
  line-height: 1.35 !important;
}

/* ===== 2026-08-20 batch: team, cards, prices, feedback, search ===== */
.unik-team-section { background: #f5f8fb !important; }

/* Match Hub card typography for Advantage + Why Choose Us */
.category-card h3,
.category-card .h6,
.category-card.feature-card h3,
.category-card.feature-card .h6 {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  color: #1a1a1a !important;
}
.category-card p,
.category-card.feature-card p,
.category-card .x-small {
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}
section.unik-advantage-section .unik-advantage-card h5 {
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}
section.unik-advantage-section .unik-advantage-card p {
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
}

/* Equal hub card content alignment */
.unik-desktop-grid > [class*='col-'] > .category-card,
.unik-desktop-grid > [class*='col-'] > a.category-card {
  min-height: 100%;
  justify-content: flex-start !important;
  padding-top: 1.15rem !important;
  padding-bottom: 1.15rem !important;
}

/* Hide all product prices sitewide */
.unik-product-card__price-chip,
.unik-product-card__price,
.unik-product-summary__price,
.unik-product-detail-page .product-price,
.price-chip,
[class*='price-chip'],
.unik-product-option__price {
  display: none !important;
}

/* Feedback hero text must stay white */
.unik-feedback-hero,
.unik-feedback-hero-content,
.unik-feedback-hero-content h2,
.unik-feedback-hero-content p,
.unik-feedback-hero-content .small,
.unik-feedback-hero-content span {
  color: #ffffff !important;
  opacity: 1 !important;
}
.unik-feedback-hero-content p {
  opacity: 0.92 !important;
}

/* Fullscreen search overlay */
.unik-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  background: rgba(7, 26, 40, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.unik-search-overlay.is-open,
.unik-search-overlay.is-open[hidden] {
  display: flex !important;
}
.unik-search-overlay__panel {
  width: min(640px, 100%);
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  padding: 1.35rem 1.35rem 1.25rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  max-height: min(88vh, 720px);
  overflow: auto;
}
.unik-search-overlay__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.unik-search-overlay__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #074f78;
  margin: 0;
  letter-spacing: -0.01em;
}
.unik-search-overlay__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.unik-search-overlay__close:hover {
  background: rgba(7, 79, 120, 0.14);
  transform: scale(1.04);
}
.unik-search-overlay__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.unik-search-overlay__field {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.unik-search-overlay__field-icon {
  position: absolute;
  left: 1rem;
  width: 18px;
  height: 18px;
  color: #074f78;
  opacity: 0.65;
  pointer-events: none;
}
.unik-search-overlay__input {
  width: 100%;
  border-radius: 0.95rem;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  border: 1px solid rgba(7, 79, 120, 0.18);
  font-size: 1rem;
  line-height: 1.4;
  color: #1a1a1a;
  background: #f7fafc;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.unik-search-overlay__input:focus {
  outline: none;
  border-color: rgba(7, 79, 120, 0.45);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(7, 79, 120, 0.12);
}
.unik-search-overlay__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 0.95rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #074f78, #0a628f);
  box-shadow: 0 10px 24px rgba(7, 79, 120, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.unik-search-overlay__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 79, 120, 0.28);
}
.unik-search-overlay__hints {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(7, 79, 120, 0.1);
}
.unik-search-overlay__hints-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5b6672;
  margin-bottom: 0.55rem;
}
.unik-search-overlay__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.unik-search-overlay__chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(7, 79, 120, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.unik-search-overlay__chips a:hover {
  background: rgba(7, 79, 120, 0.14);
  border-color: rgba(7, 79, 120, 0.2);
}
@media (min-width: 576px) {
  .unik-search-overlay__form {
    flex-direction: row;
    align-items: stretch;
  }
  .unik-search-overlay__field {
    flex: 1;
  }
  .unik-search-overlay__submit {
    width: auto;
    min-width: 132px;
    flex-shrink: 0;
  }
}
.unik-header-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(7, 79, 120, 0.14);
  background: #fff;
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.unik-header-icon-btn:hover {
  background: #074f78;
  color: #fff;
  border-color: #074f78;
}
.unik-header-icon-btn--wa:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

/* ===== 2026-08-20 polish: team, search, reviews, type ===== */
.unik-team-section {
  background: linear-gradient(180deg, #f7fafc 0%, #eef4f8 100%) !important;
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

/* Search modal centered + live suggestions */
.unik-search-overlay__panel {
  width: min(640px, 100%);
  margin: 0 auto;
}
.unik-search-suggest {
  margin-top: 0.75rem;
  border: 1px solid rgba(7, 79, 120, 0.12);
  border-radius: 0.85rem;
  background: #f7fafc;
  max-height: 280px;
  overflow: auto;
  padding: 0.55rem 0.65rem;
}
.unik-search-suggest__group + .unik-search-suggest__group { margin-top: 0.55rem; }
.unik-search-suggest__group > span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #074f78;
  margin-bottom: 0.3rem;
}
.unik-search-suggest__group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.unik-search-suggest__group a {
  display: block;
  padding: 0.45rem 0.55rem;
  border-radius: 0.5rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.unik-search-suggest__group a:hover {
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
}

/* Full review quotes ÃÂ no crop */
.unik-vintage-review-card {
  width: min(340px, 78vw) !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
}
.unik-vintage-quote {
  display: block !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  overflow: visible !important;
  min-height: 0 !important;
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.unik-review-card .card-text,
.unik-review-item p,
.testimonial-swiper .testimonial-text {
  display: block !important;
  -webkit-line-clamp: unset !important;
  line-clamp: unset !important;
  overflow: visible !important;
  white-space: normal !important;
  word-break: break-word;
}

/* Site typography consistency */
.unik-section-title,
.unik-reviews-title,
.unik-advantage-title {
  font-size: clamp(1.55rem, 2.1vw, 2rem) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.unik-section-sub,
.unik-reviews-sub {
  font-size: 0.95rem !important;
  line-height: 1.55 !important;
  max-width: 42rem;
  color: #5b6b78;
}
.unik-pill {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
}

/* ===== Premium homepage hero ===== */
.unik-hero-premium {
  position: relative;
  overflow: hidden;
}
.unik-hero-premium__slide {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 950;
  min-height: clamp(340px, 49.48vw, 620px);
  max-height: 950px;
  overflow: hidden;
}

.unik-hero-premium__visual {
  position: absolute;
  inset: 0;
}

.unik-hero-premium__visual .unik-hero-premium__overlay,
.unik-hero-premium__visual .unik-hero-premium__grid {
  z-index: 1;
}
.unik-hero-premium__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform: scale(1);
}
.unik-hero-premium__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--unik-hero-pos, center center);
  display: block;
  pointer-events: none;
}
.unik-hero-premium__bg.is-zooming {
  will-change: transform;
  animation: unik-hero-kenburns 6.5s ease-out forwards;
}
.unik-hero-premium__bg.is-zooming .unik-hero-premium__img {
  width: 100%;
  height: 100%;
}
@keyframes unik-hero-kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.unik-hero-premium__slide .container {
  height: 100%;
}
.unik-hero-swiper .swiper-slide {
  height: auto;
}
.unik-hero-premium__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(5, 38, 58, 0.88) 0%, rgba(7, 79, 120, 0.55) 42%, rgba(10, 98, 143, 0.35) 100%),
    radial-gradient(circle at 20% 20%, rgba(159, 208, 239, 0.18), transparent 45%);
  pointer-events: none;
}
.unik-hero-premium__grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 10%, transparent 90%);
  pointer-events: none;
}
.unik-hero-premium__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100%;
  height: 100%;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.unik-hero-premium__panel {
  max-width: 640px;
  padding: 1.75rem 1.85rem;
  border-radius: 1.15rem;
  background: rgba(7, 40, 62, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(22px);
}
.unik-hero-premium__panel.is-entering {
  animation: unik-hero-panel-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.unik-hero-premium__panel.is-exiting {
  animation: unik-hero-panel-out 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.unik-hero-premium__panel.is-ready {
  opacity: 1;
  transform: translateY(0);
}
@keyframes unik-hero-panel-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes unik-hero-panel-out {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-14px); }
}
.unik-hero-premium__panel,
.unik-hero-premium__panel h1,
.unik-hero-premium__panel p,
.unik-hero-premium__title,
.unik-hero-premium__subtitle,
.unik-hero-premium__badge {
  color: #fff !important;
}
.unik-hero-premium__subtitle {
  color: rgba(255, 255, 255, 0.92) !important;
}
.unik-hero-premium__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #e8f4fc;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.unik-hero-premium__title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff !important;
  margin: 0 0 0.85rem;
}
.unik-hero-premium__subtitle {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92) !important;
  margin: 0 0 1.35rem;
  max-width: 36rem;
}
.unik-hero-premium__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.unik-hero-premium__actions .btn-outline-light {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.unik-hero-premium__actions .btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.unik-hero-swiper { height: auto; position: relative; }
.unik-hero-premium .unik-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(7, 79, 120, 0.35);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease, background 0.2s ease, transform 0.2s ease;
}
.unik-hero-premium:hover .unik-hero-nav {
  opacity: 1;
  visibility: visible;
}
.unik-hero-nav:hover {
  background: rgba(7, 79, 120, 0.75);
  transform: translateY(-50%) scale(1.05);
}
.unik-hero-prev { left: 1.25rem; }
.unik-hero-next { right: 1.25rem; }
.unik-hero-pagination { display: none !important; }
.unik-hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 4;
}
.unik-hero-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #9fd0ef, #fff);
  transition: width 0.12s linear;
}
.unik-hero-premium__scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(159, 208, 239, 0.08) 50%, transparent 60%);
  animation: unik-hero-scan 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes unik-hero-scan {
  0%, 100% { transform: translateX(-30%); opacity: 0; }
  45% { opacity: 1; }
  50% { transform: translateX(30%); opacity: 0; }
}
.unik-hero-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.unik-hero-btn:hover {
  transform: translateY(-2px);
}
.unik-hero-pagination {
  position: absolute !important;
  bottom: 1.25rem !important;
  z-index: 3;
}
.unik-hero-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.45);
  opacity: 1;
}
.unik-hero-pagination .swiper-pagination-bullet-active {
  background: #fff;
  width: 22px;
  border-radius: 999px;
}

/* Reviews band â clean light canvas, no bottom crop */
.unik-reviews-band {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%) !important;
  overflow: visible !important;
  padding-bottom: clamp(2.5rem, 4vw, 3.5rem) !important;
}
.unik-review-marquee-wrap {
  overflow: visible !important;
  padding: 0.25rem 0 1.25rem;
  background: transparent !important;
}
.unik-review-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.unik-vintage-review-card {
  min-height: auto !important;
  padding: 1rem 1.15rem 1.05rem !important;
  margin-bottom: 0.15rem;
  background: #fff !important;
  border: 1px solid rgba(7, 79, 120, 0.1) !important;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05) !important;
}
.unik-vintage-quote {
  -webkit-line-clamp: unset !important;
  overflow: visible !important;
  min-height: 0 !important;
  display: block !important;
  margin-bottom: 0.35rem;
}
.unik-vintage-meta {
  padding-top: 0.25rem;
}
.unik-team-section {
  padding-bottom: clamp(3.25rem, 5vw, 4.5rem) !important;
}

/* Site-wide contact CTA */
.unik-site-cta {
  position: relative;
  z-index: 2;
  background: #f5f8fb !important;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 0 !important;
}
.unik-site-cta__panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.15rem;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.75rem);
  background: linear-gradient(135deg, #074f78 0%, #0a628f 52%, #053a5c 100%);
  box-shadow: 0 16px 40px rgba(7, 79, 120, 0.18);
}
.unik-site-cta__map {
  position: absolute;
  inset: 0;
  background: url('../images/map.jpg') center center / cover no-repeat;
  opacity: 0.28;
  pointer-events: none;
}
.unik-site-cta__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(159, 208, 239, 0.22), transparent 45%);
  pointer-events: none;
}
.unik-site-cta__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
}
.unik-site-cta__title {
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  color: #fff !important;
  margin: 0 0 0.65rem;
}
.unik-site-cta__text {
  color: rgba(255,255,255,0.96) !important;
  max-width: 36rem;
  line-height: 1.6;
}
@media (min-width: 992px) and (max-width: 1399.98px) {
  .unik-hero-premium__panel {
    max-width: 560px;
    padding: 1.5rem 1.6rem;
  }
  .unik-hero-premium__title {
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  }
  .unik-site-cta__btn {
    width: auto;
  }
}
@media (max-width: 991.98px) {
  .unik-site-cta__btn {
    width: 100%;
    justify-content: center;
  }
}
.unik-site-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.35rem;
  border-radius: 0.65rem;
  background: #0b1620;
  color: #fff !important;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}
.unik-site-cta__btn:hover {
  background: #152432;
  color: #fff !important;
  transform: translateY(-2px);
}

/* Blog detail — full width shell + synced TOC */
.unik-blog-detail-shell {
  max-width: 1440px;
  margin: 0 auto;
}
.unik-blog-prose {
  color: var(--bs-secondary-color);
  line-height: 1.75;
  font-size: 1rem;
}
.unik-blog-prose h2,
.unik-blog-prose h3,
.unik-blog-prose h4 {
  scroll-margin-top: 6.5rem;
  color: #1a1a1a;
}
.unik-blog-prose h2 { font-size: 1.45rem; font-weight: 700; margin-top: 2rem; }
.unik-blog-prose h3 { font-size: 1.2rem; font-weight: 700; margin-top: 1.5rem; }
.unik-blog-prose p,
.unik-blog-prose li { margin-bottom: 1rem; }
.unik-blog-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
}
.unik-blog-prose table th,
.unik-blog-prose table td {
  border: 1px solid rgba(7, 79, 120, 0.12);
  padding: 0.65rem 0.75rem;
}
.unik-blog-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.unik-blog-toc__item + .unik-blog-toc__item { margin-top: 0.45rem; }
.unik-blog-toc__item a {
  color: #074f78;
  text-decoration: none;
  font-size: 0.88rem;
  line-height: 1.45;
}
.unik-blog-toc__item a:hover { text-decoration: underline; }
.unik-blog-toc__item--h3 { padding-left: 0.85rem; }
.unik-blog-recent-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid rgba(7, 79, 120, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  height: 100%;
}
.unik-blog-recent-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.unik-blog-recent-card:hover { border-color: rgba(7, 79, 120, 0.25); color: #074f78; }

.unik-search-result-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(7, 79, 120, 0.12);
  background: #fff;
  color: #074f78;
  font-weight: 500;
  text-decoration: none;
  width: 100%;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.unik-search-result-link:hover {
  background: rgba(7, 79, 120, 0.06);
  border-color: rgba(7, 79, 120, 0.22);
  color: #074f78;
}

/* Team — glass portrait cards (name + role only) */
.unik-team-stage {
  position: relative;
  width: 100%;
  padding: 0.25rem 0;
}

.unik-team-swiper {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 1.25rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.unik-team-stage.is-ready .unik-team-swiper {
  opacity: 1;
}

.unik-team-glass {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 1rem;
  overflow: hidden;
  background: #eef2f6;
  border: 1px solid rgba(7, 79, 120, 0.14);
  box-shadow: none;
  filter: none;
  transition: border-color 0.25s ease;
}

.unik-team-glass:hover {
  border-color: rgba(7, 79, 120, 0.28);
  transform: none;
  box-shadow: none;
}

.unik-team-swiper .swiper-slide {
  height: auto;
  filter: none;
  box-shadow: none;
}

.unik-team-glass__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.unik-team-glass__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5, 40, 62, 0.55) 100%);
  pointer-events: none;
}

.unik-team-glass__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 0 !important;
}

.unik-team-glass__overlay {
  position: absolute;
  z-index: 2;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.75rem;
  background: rgba(7, 58, 92, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: left;
  box-shadow: none;
}

.unik-team-glass__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff !important;
  letter-spacing: 0.01em;
}

.unik-team-glass__role {
  margin: 0.28rem 0 0;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92) !important;
}

.unik-team-stage__nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.25rem;
  pointer-events: none;
  width: min(100%, 280px);
  margin-inline: auto;
}

.unik-team-nav-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(7, 79, 120, 0.18);
  background: #fff;
  color: #074f78;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(7, 79, 120, 0.1);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.unik-team-nav-btn:hover:not(.is-disabled) {
  background: #074f78;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(7, 79, 120, 0.22);
}

.unik-team-nav-btn.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.unik-team-pagination {
  position: static !important;
  width: auto !important;
  pointer-events: auto;
  min-height: 12px;
}

@media (min-width: 768px) {
  .unik-team-glass__overlay {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    padding: 0.95rem 1.05rem;
  }

  .unik-team-glass__name {
    font-size: 1rem;
  }

  .unik-team-glass__role {
    font-size: 0.8rem;
  }
}

html[data-bs-theme="dark"] .unik-team-nav-btn {
  background: #1e272f;
  border-color: rgba(159, 208, 239, 0.15);
  color: #9fd0ef;
}

html[data-bs-theme="dark"] .unik-team-nav-btn:hover:not(.is-disabled) {
  background: #074f78;
  color: #fff;
}

/* ===== Mobile-only refinements (desktop unchanged) ===== */
.unik-hero-premium__bg--mobile {
  display: none;
}
.unik-hero-premium__bg--desktop {
  display: block;
}

@media (max-width: 991.98px) {
  .unik-hero-premium .unik-hero-nav {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .unik-header-shell > header.header-sticky > .navbar {
    min-height: 60px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  .unik-header-shell .navbar-brand-item {
    height: 36px;
    width: auto;
    max-width: min(148px, 42vw);
  }
  .unik-header-shell .unik-header-icon-btn,
  .unik-header-shell .unik-mobile-menu-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
  }
  .unik-header-shell .navbar > .container {
    min-height: 56px;
    align-items: center;
    gap: 0.35rem;
  }
}

@media (max-width: 991.98px) {
  .unik-hero-premium__bg--desktop {
    display: none;
  }
  .unik-hero-premium__bg--mobile {
    display: block;
  }
  .unik-hero-premium__slide {
    position: relative;
    display: block;
    aspect-ratio: 9 / 16;
    max-height: min(72dvh, 680px);
    min-height: min(58dvh, 520px);
    overflow: hidden;
    background: #051a28;
  }
  .unik-hero-premium__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .unik-hero-premium__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(1.35rem, 9vh, 3rem);
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 62%;
    padding: 0 var(--unik-page-x);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
  }
  .unik-hero-premium__content .container {
    width: 100%;
    padding-inline: 0;
    max-width: 100%;
    margin: 0;
  }
  .unik-hero-premium__panel {
    width: 100%;
    padding: 1.15rem 1.05rem 1.05rem;
    max-width: 100%;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(5, 20, 32, 0.62) 0%, rgba(5, 20, 32, 0.94) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .unik-hero-premium .unik-hero-nav {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .unik-home-hero.unik-hero-premium {
    position: relative;
    z-index: 1;
    isolation: isolate;
    overflow: hidden;
    margin-bottom: 0;
  }

  section.unik-home-hero + section,
  section.unik-home-hero + .unik-section {
    position: relative;
    z-index: 2;
    background-color: var(--bs-body-bg, #fff);
  }

  .unik-hero-premium__bg {
    will-change: auto;
  }

  .unik-hero-premium__bg.is-zooming {
    will-change: transform;
    animation: unik-hero-kenburns 6.5s ease-out forwards;
  }

  .unik-hero-premium__panel,
  .unik-hero-premium__panel.is-entering,
  .unik-hero-premium__panel.is-exiting,
  .unik-hero-premium__panel.is-ready {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .unik-hero-premium__visual .unik-hero-premium__overlay {
    display: block !important;
    background: linear-gradient(
      180deg,
      rgba(5, 20, 32, 0.08) 0%,
      rgba(5, 20, 32, 0.35) 42%,
      rgba(5, 20, 32, 0.88) 100%
    );
  }

  .unik-hero-premium__slide {
    max-height: min(70dvh, 640px);
    min-height: min(56dvh, 460px);
  }

  .unik-hero-premium__panel,
  .unik-hero-premium__panel h1,
  .unik-hero-premium__title {
    color: #fff !important;
  }
  .unik-hero-premium__subtitle {
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .unik-hero-premium__badge {
    margin-bottom: 0.55rem;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff !important;
  }
  .unik-hero-premium__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 0.15rem;
  }
  .unik-hero-premium__actions .btn {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    padding-inline: 1rem !important;
    font-size: 0.84rem;
    justify-content: center;
  }
  .unik-hero-premium__actions .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
  }
  .unik-hero-premium__actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff !important;
  }
  .unik-hero-premium__title {
    font-size: clamp(1.32rem, 5.2vw, 1.72rem);
    line-height: 1.2;
    margin-bottom: 0.45rem;
  }

  .unik-mobile-swiper {
    overflow: hidden;
    margin-inline: 0;
    padding-bottom: 0.35rem;
  }
  .unik-mobile-swiper .swiper-wrapper {
    align-items: stretch;
  }
  .unik-mobile-swiper .swiper-slide {
    width: 100% !important;
    height: auto;
  }
  .industries-swiper .category-card {
    min-height: 148px;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(7, 79, 120, 0.08);
  }
  .industries-swiper .category-icon {
    width: 52px;
    height: 52px;
    margin-inline: auto;
  }

  .unik-reviews-stat {
    max-width: 100%;
  }

  .unik-reviews-stat__label {
    white-space: normal;
  }

  .unik-reviews-mobile-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0.25rem 0 1rem;
    margin: 0 -0.25rem;
  }
  .unik-reviews-mobile-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.85rem;
    width: max-content;
    padding: 0.25rem 0.75rem 0.5rem;
  }
  .unik-reviews-mobile-card {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
    margin-bottom: 0;
  }
}

/* Left mobile drawer navigation */
.unik-mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1060;
  pointer-events: none;
}
.unik-mobile-drawer.is-open {
  pointer-events: auto;
}
.unik-mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 24, 38, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
}
.unik-mobile-drawer.is-open .unik-mobile-drawer__backdrop {
  opacity: 1;
}
.unik-mobile-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(88vw, 320px);
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 8px 0 32px rgba(7, 79, 120, 0.18);
  transform: translateX(-105%);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}
html[data-bs-theme="dark"] .unik-mobile-drawer__panel {
  background: #151b22;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.45);
}
.unik-mobile-drawer.is-open .unik-mobile-drawer__panel {
  transform: translateX(0);
}
.unik-mobile-drawer__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 58px;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(7, 79, 120, 0.1);
}
.unik-mobile-drawer__title {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #074f78;
}
html[data-bs-theme="dark"] .unik-mobile-drawer__title {
  color: #9fd0ef;
}
.unik-mobile-drawer__back,
.unik-mobile-drawer__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  flex-shrink: 0;
}
html[data-bs-theme="dark"] .unik-mobile-drawer__back,
html[data-bs-theme="dark"] .unik-mobile-drawer__close {
  background: rgba(159, 208, 239, 0.1);
  color: #9fd0ef;
}
.unik-mobile-drawer__body {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.unik-mobile-drawer__view {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  padding: 0.5rem 0.75rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.unik-mobile-drawer__view.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.unik-mobile-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.85rem 0.65rem;
  border: 0;
  border-bottom: 1px solid rgba(7, 79, 120, 0.08);
  background: transparent;
  color: inherit;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
}
.unik-mobile-drawer__link.is-active {
  color: #074f78;
  font-weight: 700;
}
html[data-bs-theme="dark"] .unik-mobile-drawer__link.is-active {
  color: #9fd0ef;
}
.unik-mobile-drawer__trigger {
  cursor: pointer;
}
body.unik-drawer-open {
  overflow: hidden;
}
@media (min-width: 1200px) {
  .unik-mobile-drawer {
    display: none !important;
  }
}

/* ===== Site-wide mobile typography + UX refinements ===== */
@media (max-width: 767.98px) {
  .unik-page-hero-copy h1,
  .unik-section-title,
  .unik-reviews-title,
  .unik-blog-detail-page .unik-page-hero-copy h1 {
    font-size: clamp(1.35rem, 5.2vw, 1.75rem) !important;
    line-height: 1.2 !important;
  }

  .unik-page-hero-copy p,
  .unik-section-sub,
  .unik-reviews-sub,
  .unik-page .text-muted,
  .unik-blog-prose {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
  }

  .unik-pill {
    font-size: 0.68rem !important;
    letter-spacing: 0.05em;
  }

  .unik-list-card__title,
  .unik-product-category-card__title {
    font-size: 1.05rem !important;
  }

  .unik-list-card p,
  .unik-product-category-card__tag,
  .unik-service-link {
    font-size: 0.86rem !important;
  }

  .unik-catalog-page .unik-page-hero,
  .unik-blog-detail-page .unik-page-hero {
    padding-top: 1.1rem !important;
    padding-bottom: 0.65rem !important;
  }

  .unik-catalog-section,
  .unik-blog-detail-section,
  .unik-services-list-section {
    padding-top: 0.35rem !important;
  }

  .unik-mobile-stack.unik-desktop-grid {
    display: flex !important;
    flex-wrap: wrap;
  }

  .unik-services-page .unik-mobile-stack > [class*="col-"],
  .unik-products-page .unik-mobile-stack > [class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .unik-products-grid-section {
    padding-top: 0.5rem !important;
  }

  .unik-product-category-card__inner {
    padding: 1rem 1rem 1.1rem;
    gap: 0.65rem;
  }

  .unik-product-category-card__tags {
    gap: 0.35rem;
  }

  .unik-reviews-mobile-scroll {
    overflow: hidden;
    padding: 0.25rem 0 1rem;
    margin: 0;
  }

  .unik-reviews-mobile-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }

  .unik-reviews-mobile-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.85rem;
    width: max-content;
    padding: 0.25rem 0.75rem 0.5rem;
    animation: unik-reviews-mobile-marquee 52s linear infinite;
    scroll-snap-type: none;
  }

  .unik-reviews-mobile-scroll:hover .unik-reviews-mobile-track,
  .unik-reviews-mobile-scroll:focus-within .unik-reviews-mobile-track {
    animation-play-state: paused;
  }

  .unik-reviews-mobile-card {
    flex: 0 0 min(82vw, 320px);
    margin-bottom: 0;
  }
}

@keyframes unik-reviews-mobile-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .unik-reviews-mobile-track {
    animation: none !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Catalog filter drawer (mobile/tablet) */
@media (max-width: 1199.98px) {
  .unik-filter-drawer.offcanvas {
    width: min(92vw, 360px);
    border-left: 0;
    box-shadow: -8px 0 32px rgba(7, 79, 120, 0.16);
  }

  .unik-filter-drawer__head {
    padding: 1rem 1.1rem;
    border-bottom: 1px solid rgba(7, 79, 120, 0.1);
    background: linear-gradient(180deg, #f8fbfd 0%, #fff 100%);
  }

  .unik-filter-drawer__body {
    padding: 0.75rem;
    overflow-y: auto;
    max-height: calc(100dvh - 64px);
    -webkit-overflow-scrolling: touch;
  }

  .unik-filter-drawer .unik-catalog-sidebar {
    border: 0;
    box-shadow: none;
    border-radius: 0.85rem;
  }

  .unik-filter-open-btn {
    min-height: 46px;
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(7, 79, 120, 0.18);
  }
}

/* Blog detail — TOC + tables */
.unik-blog-toc {
  border: 1px solid rgba(7, 79, 120, 0.12);
  border-radius: 1rem;
  background: var(--bs-body-bg);
  box-shadow: 0 10px 28px rgba(7, 79, 120, 0.08);
  padding: 1.15rem 1.1rem;
  top: 6.5rem !important;
}

.unik-blog-toc__head {
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(7, 79, 120, 0.1);
}

.unik-blog-toc__item a {
  display: block;
  padding: 0.45rem 0.65rem;
  border-radius: 0.55rem;
  color: #2b3a45;
  font-size: 0.86rem;
  line-height: 1.45;
  transition: background 0.2s ease, color 0.2s ease;
}

.unik-blog-toc__item a:hover,
.unik-blog-toc__item a.is-active {
  background: rgba(7, 79, 120, 0.08);
  color: #074f78;
  text-decoration: none;
  font-weight: 600;
}

.unik-blog-toc__item--h3 a {
  padding-left: 1.15rem;
  font-size: 0.82rem;
}

.unik-blog-toc-mobile-wrap {
  padding: 0 0.75rem 0.5rem;
}

.unik-blog-toc-mobile {
  border: 1px solid rgba(7, 79, 120, 0.12);
  border-radius: 0.85rem;
  background: var(--bs-body-bg);
  padding: 0.75rem 0.9rem;
}

.unik-blog-toc-mobile summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  font-weight: 700;
  color: #074f78;
  list-style: none;
}

.unik-blog-toc-mobile summary::-webkit-details-marker {
  display: none;
}

.unik-blog-toc-mobile[open] summary i,
.unik-blog-toc-mobile[open] summary svg {
  transform: rotate(180deg);
}

.unik-blog-toc-mobile .unik-blog-toc__list {
  margin-top: 0.75rem;
}

.unik-blog-prose {
  font-size: 1rem;
  line-height: 1.75;
  color: #3a4550;
}

.unik-blog-prose h2,
.unik-blog-prose h3,
.unik-blog-prose h4 {
  color: #1a1a1a;
  scroll-margin-top: 6.5rem;
}

.unik-blog-prose h2 {
  font-size: clamp(1.25rem, 3vw, 1.45rem);
  margin-top: 2rem;
}

.unik-blog-prose h3 {
  font-size: clamp(1.08rem, 2.5vw, 1.2rem);
  margin-top: 1.5rem;
}

.unik-blog-prose table {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  margin: 1.25rem 0;
  border: 1px solid rgba(7, 79, 120, 0.12);
  border-radius: 0.75rem;
}

.unik-blog-prose table thead,
.unik-blog-prose table tbody,
.unik-blog-prose table tr {
  width: 100%;
}

.unik-blog-prose table th,
.unik-blog-prose table td {
  text-align: left !important;
  vertical-align: top;
  border: 1px solid rgba(7, 79, 120, 0.1);
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  min-width: 120px;
}

.unik-blog-prose table th {
  background: rgba(7, 79, 120, 0.07);
  font-weight: 700;
  color: #074f78;
}

.unik-blog-prose table tr:nth-child(even) td {
  background: rgba(7, 79, 120, 0.03);
}

@media (max-width: 767.98px) {
  .unik-blog-prose table th,
  .unik-blog-prose table td {
    font-size: 0.82rem;
    padding: 0.55rem 0.6rem;
    min-width: 100px;
  }
}

/* Smoother mobile drawer motion */
.unik-mobile-drawer__backdrop {
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transition: opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.unik-mobile-drawer__panel {
  transition: transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.unik-mobile-drawer.is-open .unik-mobile-drawer__panel {
  box-shadow: 12px 0 42px rgba(7, 79, 120, 0.22);
}

.unik-mobile-drawer__view.is-entering {
  animation: unik-drawer-view-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes unik-drawer-view-in {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.unik-mobile-drawer.is-animating .unik-mobile-drawer__link {
  pointer-events: none;
}

.unik-mobile-drawer.is-open .unik-mobile-drawer__link {
  animation: unik-drawer-link-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.unik-mobile-drawer.is-open .unik-mobile-drawer__view.is-active .unik-mobile-drawer__link:nth-child(1) { animation-delay: 0.03s; }
.unik-mobile-drawer.is-open .unik-mobile-drawer__view.is-active .unik-mobile-drawer__link:nth-child(2) { animation-delay: 0.06s; }
.unik-mobile-drawer.is-open .unik-mobile-drawer__view.is-active .unik-mobile-drawer__link:nth-child(3) { animation-delay: 0.09s; }
.unik-mobile-drawer.is-open .unik-mobile-drawer__view.is-active .unik-mobile-drawer__link:nth-child(4) { animation-delay: 0.12s; }
.unik-mobile-drawer.is-open .unik-mobile-drawer__view.is-active .unik-mobile-drawer__link:nth-child(5) { animation-delay: 0.15s; }
.unik-mobile-drawer.is-open .unik-mobile-drawer__view.is-active .unik-mobile-drawer__link:nth-child(6) { animation-delay: 0.18s; }
.unik-mobile-drawer.is-open .unik-mobile-drawer__view.is-active .unik-mobile-drawer__link:nth-child(7) { animation-delay: 0.21s; }
.unik-mobile-drawer.is-open .unik-mobile-drawer__view.is-active .unik-mobile-drawer__link:nth-child(8) { animation-delay: 0.24s; }

@keyframes unik-drawer-link-in {
  from {
    opacity: 0;
    transform: translateX(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .unik-mobile-drawer__panel,
  .unik-mobile-drawer__backdrop,
  .unik-mobile-drawer__view,
  .unik-mobile-drawer__link {
    animation: none !important;
    transition: none !important;
  }
}

