:root {
  --accent: #1f73ff;
  --accent-dark: #1556d3;
  --text-dark: #0f172a;
  --text-muted: #667085;
  --border: #e4e7ec;
  --card-bg: #ffffff;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  background: #f8fafc;
  color: var(--text-dark);
  font-weight: 600;
  max-width: 100%;
  overflow-x: hidden;
  padding-right: 0;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body.offcanvas-open {
  padding-right: 0 !important;
}

body[style*="padding-right"] {
  padding-right: 0 !important;
}

body.is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85), rgba(5, 10, 20, 0.95));
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.page-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.4;
  pointer-events: none;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  position: relative;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  z-index: 1;
}

.loader-mark::before,
.loader-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.25);
}

.loader-mark::before {
  border-color: #38bdf8 transparent #38bdf8 transparent;
  transform: rotate(0deg);
  animation: loaderSpin 3.2s linear infinite;
}

.loader-mark::after {
  inset: 2px;
  border-color: transparent #f1b97a transparent #f1b97a;
  transform: rotate(45deg);
  animation: loaderSpinReverse 4s linear infinite;
}

.loader-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(8, 12, 25, 0.45);
  animation: loaderPulse 1.6s ease-in-out infinite;
}

.loader-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  animation: loaderFloat 1.6s ease-in-out infinite;
}

.loader-text {
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: none;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.9);
  z-index: 1;
}

@keyframes loaderSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderSpinReverse {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(-315deg);
  }
}

@keyframes loaderPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes loaderFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader::after,
  .loader-mark::before,
  .loader-logo,
  .loader-logo img {
    animation: none;
    transition: none;
  }
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

.site-nav {
  background: #ffffff;
  /* border-bottom: 1px solid #eef2f6; */
  position: sticky;
  top: 0;
  z-index: 1050;
}

.site-nav .container-xl {
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.site-nav--transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav--transparent.is-scrolled {
  background: rgba(10, 16, 28, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.28);
}

.home-page .site-nav--transparent {
  box-shadow: none;
}

.home-page .site-nav--transparent.is-scrolled {
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.28);
}

.site-nav--transparent .nav-link {
  color: #ffffff;
}

.site-nav--transparent .nav-link.active {
  color: #7dd3fc;
}

.site-nav--transparent .icon-btn {
  background: rgba(15, 23, 42, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.site-nav--transparent .search-pill {
  background: rgba(15, 23, 42, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
  color: #e2e8f0;
}

.site-nav--transparent .search-pill input {
  color: #e2e8f0;
}

.site-nav--transparent .search-pill input::placeholder {
  color: rgba(226, 232, 240, 0.7);
}

.brand {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.4px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-weight: 700;
  font-size: 0.95rem;
}

.brand-logo {
  background: transparent;
  border: none;
  overflow: hidden;
  box-shadow: none;
}

.brand-logo img {
  width: auto;
      height: 75px;
  object-fit: contain;
  padding: 0;
  display: block;
}

.brand-name {
  font-weight: 600;
}

.nav-link {
  color: #1f2937;
  font-weight: 500;
}

.nav-link.active {
  color: var(--accent);
}

.menu-toggle {
  margin-left: auto;
  position: relative;
  z-index: 1100;
}

.site-offcanvas {
  background: #0f172a;
  color: #e2e8f0;
  width: min(360px, 90vw);
  border-left: 1px solid rgba(148, 163, 184, 0.2);
  --bs-offcanvas-zindex: 1200;
}

.offcanvas-backdrop {
  z-index: 1190;
}

.site-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.site-offcanvas .offcanvas-title {
  color: #ffffff;
  font-weight: 700;
}

.offcanvas-spacer {
  display: block;
}

.site-offcanvas .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.offcanvas-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0 1rem;
}

.offcanvas-brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.offcanvas-nav {
  display: grid;
  gap: 0.6rem;
}

.offcanvas-link {
  color: #e2e8f0;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
}

.offcanvas-link i {
  font-size: 1.05rem;
  width: 1.2rem;
  text-align: center;
}

.offcanvas-sublink i {
  font-size: 1.1rem;
  width: 1.4rem;
  height: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #7dd3fc;
  flex-shrink: 0;
}

.offcanvas-group {
  display: grid;
  gap: 0.4rem;
}

.offcanvas-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 14px;
  background: transparent;
  border: 1px solid transparent;
  padding: 0;
}

.offcanvas-link--primary {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 14px;
}

.offcanvas-toggle {
  width: 100%;
  text-align: left;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.02);
  color: inherit;
  cursor: pointer;
}

.offcanvas-toggle-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  margin-right: 0.4rem;
}

.offcanvas-row:hover {
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.12);
}

.offcanvas-toggle-icon .bi-chevron-down {
  transition: transform 0.2s ease;
}

.offcanvas-toggle-icon[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.offcanvas-toggle .bi-chevron-down {
  margin-left: auto;
  transition: transform 0.2s ease;
}

.offcanvas-toggle[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.offcanvas-submenu {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 0.6rem;
}

.offcanvas-submenu.is-open {
  display: flex;
}

.offcanvas-sublink {
  font-size: 0.95rem;
  padding: 0.6rem 0.9rem;
  background: rgba(148, 163, 184, 0.08);
  border-color: rgba(148, 163, 184, 0.18);
}

.offcanvas-link:hover {
  color: #ffffff;
  border-color: rgba(56, 189, 248, 0.5);
  /* background: rgba(56, 189, 248, 0.12); */
}

.offcanvas-link.active {
  /* background: rgba(56, 189, 248, 0.18); */
  border-color: rgba(56, 189, 248, 0.6);
  color: #ffffff;
}

.offcanvas-download {
  margin-top: 0.4rem;
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.5);
}

.nav-link-download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #0f172a;
  font-weight: 600;
}

.site-nav--transparent .nav-link-download {
  color: #ffffff;
  background: rgba(56, 189, 248, 0.18);
  border-color: rgba(125, 211, 252, 0.45);
}

.nav-link-download:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.product-dropdown {
  position: relative;
}

.product-dropdown .dropdown-menu {
  border-radius: 12px;
  border: 1px solid #eef2f6;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
  padding: 0.5rem 0;
  min-width: 230px;
}

.product-menu .dropdown-item {
  font-weight: 600;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.submenu-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  font-size: 1.1rem;
  line-height: 1;
  color: #0f172a;
}

.submenu-arrow::before {
  content: "›";
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .submenu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0;
  display: none;
  min-width: 230px;
}

.dropdown-submenu.show > .submenu {
  display: block;
}

.dropdown-submenu .dropdown-item:hover {
  background: #f8fafc;
}

@media (max-width: 991px) {
  .dropdown-submenu > .submenu {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .dropdown-submenu.show > .submenu {
    display: block;
  }
}

.search-pill {
  border: 1px solid #e6eaf0;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  min-width: 240px;
  color: #94a3b8;
}

.search-pill input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.9rem;
  width: 140px;
}

.icon-btn {
  border: 1px solid #e6eaf0;
  background: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f2937;
  transition: all 0.2s ease;
}

.icon-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero-section {
  color: #ffffff;
}

.hero-carousel .carousel-item {
  background: #0f172a;
}

.hero-slide {
  position: relative;
  padding: 90px 0 110px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide-video {
  background: #0f172a;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-carousel {
  height: 100vh;
  min-height: 420px;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-slide {
  height: 100%;
}

.hero-carousel .carousel-item {
  min-height: 420px;
}

.hero-content {
  max-width: 520px;
}

.hero-content > * {
  opacity: 0;
  transform: translateY(-26px);
}

.carousel-item.active .hero-content > * {
  animation: heroFadeDown 0.95s ease both;
}

.carousel-item.active .hero-content > *:nth-child(1) {
  animation-delay: 0.05s;
}

.carousel-item.active .hero-content > *:nth-child(2) {
  animation-delay: 0.18s;
}

.carousel-item.active .hero-content > *:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
      background: linear-gradient(120deg, rgb(8 14 27 / 31%), rgb(10 20 35 / 36%));
  pointer-events: none;
}

.hero-slide .container-xl {
  position: relative;
  z-index: 2;
}

.hero-carousel .carousel-indicators {
  margin-bottom: 2rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-carousel .carousel-indicators .active {
  background-color: #38bdf8;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 6%;
  z-index: 5;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  pointer-events: none;
}

@media (max-width: 767px) {
  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 12%;
  }
}

.carousel-item.active .slide-anim-rtl {
  animation: slideInRtl 1s ease both;
}

.about-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-section::after {
    content: "";
    position: absolute;
    top: -30px;
    right: -10px;
    width: 320px;
    height: 320px;
    background: url(../../images/background/effect4.png) top right / contain no-repeat;
    opacity: 0.7;
    transform: scale(1.1);
    transform-origin: top right;
    animation: aboutZoom 7s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}
@media (max-width: 991px) {
  .about-section::after {
    width: 240px;
    height: 240px;
    top: -20px;
    right: -6px;
    opacity: 0.6;
    transform: scale(1.05);
    transform-origin: top right;
    animation: aboutZoomSmall 7s ease-in-out infinite;
  }
}

@keyframes aboutZoom {
  0% {
    transform: scale(1.25);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1.25);
  }
}

@keyframes aboutZoomSmall {
  0% {
    transform: scale(1.18);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-section::after {
    animation: none;
  }
}

.about-section .container-xl {
  position: relative;
  z-index: 1;
}

.about-images {
  position: relative;
  padding-right: 1rem;
  padding-bottom: 1.5rem;
}

.about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
}

.about-image.main {
  transform: rotate(-1.5deg);
  width: 88%;
}

.about-image.accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  border-radius: 18px;
  border: 6px solid #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
  transform: rotate(2deg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
  transition: transform 0.6s ease;
}

.about-image.accent img {
  min-height: 200px;
}

.about-image:hover img {
  transform: scale(1.08);
}

@media (max-width: 991px) {
  .about-images {
    padding-bottom: 2.5rem;
  }

  .about-image.main {
    width: 100%;
    transform: none;
  }

  .about-image.accent {
    position: absolute;
    width: 55%;
    right: 4%;
    bottom: -12%;
    margin-top: 0;
    transform: none;
  }
}

@media (max-width: 767px) {
  .about-images {
    padding-bottom: 3rem;
  }

  .about-image.accent {
    width: 68%;
    right: 2%;
    bottom: -16%;
    border-width: 4px;
  }

  .about-image img {
    min-height: 280px;
  }
}

.about-content h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2rem, 2.8vw, 2.6rem);
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 1.8rem 0;
}

.about-highlights h4 {
  margin: 0;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
}

.about-highlights span {
  color: var(--text-muted);
  font-size: 20px;
}

.about-highlights > div {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.75));
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  position: relative;
  overflow: hidden;
}

.about-highlights > div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(125, 211, 252, 0.22), transparent 55%);
  pointer-events: none;
}

.count-suffix {
  font-size: 1.4rem;
  margin-left: 2px;
  color: var(--accent);
}

@media (max-width: 991px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.product-feature.reveal-left,
.product-feature.reveal-right {
  opacity: 0;
  filter: blur(6px);
  transition: opacity 1.2s ease, transform 1.2s ease, filter 1.2s ease;
}

.product-feature.reveal-left {
  transform: translateX(-80px);
}

.product-feature.reveal-right {
  transform: translateX(80px);
}

.product-feature.reveal-left.is-visible,
.product-feature.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

.contact-form-wrap.reveal-left {
  transform: translateX(-120px);
}

.contact-form-wrap.reveal-left.is-visible {
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-down {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-down.is-visible {
  opacity: 1;
  transform: translateY(0);
  margin-bottom: 30px;
}

.carousel-item.active .slide-anim-ltr {
  animation: slideInLtr 1s ease both;
}

.slide-anim-center {
  clip-path: inset(0 50% 0 50%);
  -webkit-clip-path: inset(0 50% 0 50%);
  opacity: 0;
}

.carousel-item.active .slide-anim-center {
  animation: revealCenter 1.1s ease both;
}

.carousel-item.active .slide-anim-spinup {
  animation: spinUp 1.1s ease both;
}

@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRtl {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLtr {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealCenter {
  from {
    opacity: 0;
    clip-path: inset(0 50% 0 50%);
    -webkit-clip-path: inset(0 50% 0 50%);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}

@keyframes spinUp {
  from {
    opacity: 0;
    transform: translateY(60px) rotate(-360deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: #dbeafe;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-top: 1.2rem;
  color: #ffffff;
}

.hero-title span {
  color: #7dd3fc;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #e2e8f0;
  max-width: 520px;
  margin-top: 1rem;
}

.hero-metrics h3 {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
  color: #ffffff;
}

.hero-metrics p {
  margin-bottom: 0;
  color: #cbd5f5;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dots .dot {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-dots .dot.active {
  background: #38bdf8;
}

.hero-card {
  background: linear-gradient(150deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.2)),
    url("../../images/products/set6.webp") center/cover no-repeat;
  border-radius: 24px;
  padding: 28px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-soft);
}

.hero-card-content h4 {
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.hero-card-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.hero-card-actions .price {
  color: #bae6fd;
  font-weight: 600;
}

.section-padding {
  padding: 80px 0;
}

.section-muted {
  background: #f1f5f9;
}

.why-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 140px;
}



.why-section .container-xl {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .why-section::after {
    bottom: -30px;
    height: 180px;
    opacity: 0.75;
  }
}

.section-heading h2,
.section-title h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.about-hero {
  min-height: 80vh;
  background: linear-gradient(120deg, rgba(8, 15, 28, 0.86), rgba(8, 15, 28, 0.45)),
    url("../../images/products/set12.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  color: #ffffff;
}

.about-hero-content {
  max-width: 620px;
}

.about-hero-content h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin: 0.6rem 0 1rem;
  color: #ffffff;
}

.about-hero-content p {
  color: #e2e8f0;
  font-size: 1.05rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  color: #bae6fd;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-story {
  background: #ffffff;
}

.story-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.8rem;
}

.story-content p {
  color: var(--text-muted);
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.story-stats h4 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--accent);
}

.story-stats span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.story-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.15);
  transition: transform 0.6s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.about-values {
  background: linear-gradient(120deg, rgba(8, 15, 28, 0.85), rgba(8, 15, 28, 0.55)),
    url("../../images/products/set12.webp") center/cover no-repeat;
}

.about-values .section-title h2 {
  color: #ffffff;
}

.about-values .section-title p {
  color: rgba(226, 232, 240, 0.85) !important;
}

.about-values,
.about-values h2,
.about-values h3,
.about-values h4,
.about-values h5,
.about-values h6,
.about-values p,
.about-values span {
  color: #ffffff;
}

.about-values .value-card {
  background: rgba(15, 23, 42, 0.55);
  border-color: rgb(255, 255, 255);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.3);
}

.about-values .value-card p {
  color: rgba(226, 232, 240, 0.9);
}

.about-values .value-icon {
  background: #38bdf8;
  color: #0f172a;
}

.about-team {
  background: #ffffff;
}

.about-history {
  background: #f1f5f9;
  position: relative;
  overflow: hidden;
  /* margin-top: 40px; */
}

.about-history::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.14), transparent 55%),
    radial-gradient(circle at 92% 12%, rgba(59, 130, 246, 0.1), transparent 45%),
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.25), transparent),
    radial-gradient(1px 1px at 55% 30%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 70% 70%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1px 1px at 85% 40%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 15% 55%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 40% 45%, rgba(255, 255, 255, 0.26), transparent),
    radial-gradient(1px 1px at 65% 20%, rgba(255, 255, 255, 0.24), transparent),
    radial-gradient(1px 1px at 90% 75%, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
  z-index: 0;
}

.about-history::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../images/quality/history2.gif") center/cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.about-history .container-xl {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-history {
    margin-top: 28px;
  }
}

.history-layout {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.history-intro h3 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.history-intro p {
  color: var(--text-muted);
}

.history-intro {
  max-width: 760px;
}

.history-stage {
  margin-top: -140px;
  background: transparent;
  border-radius: 0;
  padding: 0 0 2rem;
  border: none;
  box-shadow: none;
}

.history-graphic {
  width: 100%;
}

.history-svg {
  width: 100%;
  height: auto;
}

.history-path {
  fill: none;
  stroke: #7ea6ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}

.history-drop {
  stroke: rgba(148, 163, 184, 0.5);
  stroke-width: 1.2;
  stroke-dasharray: 4 6;
}

.history-dot {
  fill: #2c6ee8;
  stroke: #ffffff;
  stroke-width: 4;
  opacity: 0;
  transform: scale(0.4);
  transform-origin: center;
}

.history-graphic.is-visible .history-path {
  animation: historyDraw 1.6s ease forwards;
}

.history-graphic.is-visible .history-dot {
  animation: historyPop 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.history-milestones {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: -20px;
  text-align: center;
}

.history-milestone {
  width: auto;
  transform: none;
}

.history-milestone h6 {
  color: #0f2a4a;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.history-milestone p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.9rem;
}

@keyframes historyDraw {
  from {
    stroke-dashoffset: 1200;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes historyPop {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes historyPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.team-strip {
  display: flex;
  gap: 0.6rem;
  margin-top: 2rem;
  height: 280px;
}

.team-card {
  position: relative;
  flex: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  transition: flex 0.4s ease, transform 0.4s ease;
  cursor: pointer;
  min-width: 0;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.7));
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.team-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #ffffff;
  z-index: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.team-overlay h5 {
  margin: 0;
  font-size: 1.05rem;
  color: #ffffff;
}

.team-overlay span {
  font-size: 0.85rem;
  color: #cbd5f5;
}

.team-card:hover,
.team-card:focus-within,
.team-card.team-card--active {
  flex: 3;
  transform: translateY(-4px);
}

.team-card:hover img,
.team-card:focus-within img,
.team-card.team-card--active img {
  transform: scale(1.05);
  filter: saturate(1);
}

.team-card:hover::after,
.team-card:focus-within::after,
.team-card.team-card--active::after {
  opacity: 0.55;
}

.team-card:hover .team-overlay,
.team-card:focus-within .team-overlay,
.team-card.team-card--active .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .team-strip {
    height: 240px;
  }
}

@media (max-width: 767px) {
  .team-strip {
    flex-direction: column;
    height: auto;
  }

  .team-card,
  .team-card:hover,
  .team-card.team-card--active {
    flex: 0 0 auto;
    height: 220px;
    transform: none;
  }

  .team-overlay {
    opacity: 1;
    transform: none;
  }

  .history-layout {
    justify-content: flex-start;
  }
}

.value-card {
  /* background: #ffffff; */
  backdrop-filter: blur(6px);
background: #ffffff14;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #ffffff;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.value-card:hover {
  border-color: #0b3b75;
  transform: scale(1.03);
  box-shadow: 0 20px 36px rgba(11, 59, 117, 0.25);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #e0f2fe;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.about-standards {
  background: #ffffff;
}

.about-infra {
  background: #f8fafc;
}

.infra-content h3 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}

.infra-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.infra-features {
  display: grid;
  gap: 1rem;
}

.infra-feature {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: #eff6ff;
  border: 1px solid #0b3b75;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 18px 36px rgba(11, 59, 117, 0.16);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.infra-feature i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #0b3b75;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.infra-feature h6 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: #0b3b75;
}

.infra-feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.infra-feature:hover {
  transform: scale(1.03);
  border-color: #e2e8f0;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
}

.infra-feature:hover i {
  background: #e0f2fe;
  color: var(--accent);
}

.infra-feature:hover h6 {
  color: #0f172a;
}

.infra-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(6, 110px);
  grid-template-areas:
    "a b"
    "a c"
    "d e"
    "d e"
    "d f"
    "d f";
  gap: 1rem;
  min-height: 660px;
}

.infra-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
  background: #0f172a;
}

.infra-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.infra-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.45));
}

.infra-item:hover img {
  transform: scale(1.06);
}

.infra-item--a {
  grid-area: a;
}

.infra-item--b {
  grid-area: b;
}

.infra-item--c {
  grid-area: c;
}

.infra-item--d {
  grid-area: d;
}

.infra-item--e {
  grid-area: e;
}

.infra-item--f {
  grid-area: f;
}

.standard-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.standard-card i {
  font-size: 1.4rem;
  color: var(--accent);
}

.standard-card h6 {
  margin: 0.7rem 0 0.4rem;
}

.standard-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.quality-hero {
  min-height: 80vh;
  background: linear-gradient(120deg, rgba(8, 15, 28, 0.9), rgba(8, 15, 28, 0.45)),
    url("../../images/products/set11.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  color: #ffffff;
}

.quality-hero-content {
  max-width: 640px;
}

.quality-hero-content h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin: 0.6rem 0 1rem;
  color: #ffffff;
}

.quality-hero-content p {
  color: #e2e8f0;
  font-size: 1.05rem;
}

.quality-promise {
  background: #ffffff;
}

.quality-promise {
  position: relative;
  overflow: hidden;
}

.quality-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.12), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.quality-promise::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../images/quality/quality.gif") center/cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.quality-promise .container-xl {
  position: relative;
  z-index: 1;
}

.quality-promise-header {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quality-promise-header p {
  color: var(--text-muted);
}

.promise-orbit {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) 220px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: center;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.orbit-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 1.2rem 1.3rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  max-width: 260px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.orbit-card:hover {
  transform: translateY(-6px);
  border-color: #00a0e3;
  box-shadow: 0 20px 36px rgba(0, 160, 227, 0.2);
}

.orbit-card--top {
  grid-column: 2;
  grid-row: 1;
}

.orbit-card--right {
  grid-column: 3;
  grid-row: 2;
}

.orbit-card--bottom {
  grid-column: 2;
  grid-row: 3;
}

.orbit-card--left {
  grid-column: 1;
  grid-row: 2;
}

.orbit-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #e0f2fe;
  color: #00a0e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.orbit-center {
  grid-column: 2;
  grid-row: 2;
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(148, 163, 184, 0.6);
}

.orbit-seal {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f2a4a, #1b4d7a);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  gap: 0.2rem;
}

.orbit-seal span {
  font-size: 0.7rem;
  opacity: 0.8;
}

.orbit-seal strong {
  font-size: 1rem;
}

.promise-strip {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promise-chip {
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: #0f2a4a;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quality-content h2 {
  margin: 0.6rem 0 1rem;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
}

.quality-content p {
  color: var(--text-muted);
}

.quality-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.quality-list li {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  font-weight: 500;
  color: #475569;
}

.quality-list i {
  color: #00a0e3;
  font-size: 1.1rem;
}

.quality-image-stack {
  position: relative;
  padding-right: 2.5rem;
  padding-bottom: 2.5rem;
}

.quality-image-large {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
}

.quality-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.quality-image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  border-radius: 18px;
  border: 6px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
}

.quality-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 200px;
}

.quality-pillars {
  background: #0f2a4a;
  color: #ffffff;
}

.quality-pillars h2,
.quality-pillars h5,
.quality-pillars p,
.quality-pillars span {
  color: #ffffff;
}

.pillar-card {
  background: rgba(15, 23, 42, 0.55);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(226, 232, 240, 0.25);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.2);
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: #00a0e3;
  box-shadow: 0 20px 38px rgba(0, 160, 227, 0.2);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(56, 189, 248, 0.2);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.pillar-card p {
  color: var(--text-muted);
  margin: 0;
}

.quality-process {
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.process-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #0f2a4a;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.process-card p {
  color: var(--text-muted);
  margin: 0;
}

.quality-metrics {
  background:
    linear-gradient(120deg, rgb(8 20 38 / 81%), rgb(15 42 74 / 56%)), url(../../images/background/wave-effect.png) center / cover no-repeat;
  color: #ffffff;
}

.quality-metrics h2,
.quality-metrics h3,
.quality-metrics p,
.quality-metrics span {
  color: #ffffff;
}

.quality-metrics .section-title p {
  color: rgba(226, 232, 240, 0.8);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.metric-card {
      background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgb(22 122 255);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
}

.metric-card h3 {
  color: #ffffff;
  margin: 0 0 0.4rem;
  font-size: 1.8rem;
}

.metric-card span {
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.9rem;
}

.quality-cta {
  background: #ffffff;
}

.product-detail-hero {
  background:
    linear-gradient(120deg, rgba(6, 18, 34, 0.92), rgba(15, 42, 74, 0.7)),
    url("../../images/products/M_S_9236.jpg") center/cover no-repeat;
  color: #ffffff;
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.product-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(56, 189, 248, 0.25), transparent 50%);
  pointer-events: none;
}

.product-detail-hero__content {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.product-detail-hero h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
}

.product-detail-hero p {
  color: rgba(226, 232, 240, 0.9);
  font-size: 1.05rem;
  margin-top: 0.8rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e2e8f0;
  font-size: 0.9rem;
}

.product-detail {
  background: #ffffff;
}

.product-gallery {
  background: #f8fafc;
  border-radius: 26px;
  padding: 1.6rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.12);
}

.product-gallery__main {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
}

.product-gallery__main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-gallery__main:hover img {
  transform: scale(1.04);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.product-gallery__thumbs .thumb {
  border: none;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.product-gallery__thumbs .thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.product-gallery__thumbs .thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  transition: border-color 0.3s ease;
}

.product-gallery__thumbs .thumb.is-active::after {
  border-color: #38bdf8;
}

.product-gallery__thumbs .thumb:hover img {
  transform: scale(1.05);
}

.product-summary {
  background: #0f172a;
  color: #ffffff;
  border-radius: 26px;
  padding: 2rem;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.22);
  position: sticky;
  top: 110px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.summary-header h2 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-top: 0.4rem;
}

.summary-sku {
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.8);
}

.summary-rating {
  text-align: right;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.8);
}

.summary-rating .stars {
  color: #fbbf24;
}

.summary-text {
  color: rgba(226, 232, 240, 0.85);
  margin-bottom: 1.4rem;
}

.finish-list h6 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.finish-swatches {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.swatch {
  position: relative;
  padding: 0.4rem 0.85rem 0.4rem 2.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  color: #e2e8f0;
}

.swatch::before {
  content: "";
  position: absolute;
  left: 0.6rem;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--swatch);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.swatch.is-active {
  border-color: #38bdf8;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  display: grid;
  gap: 0.6rem;
}

.feature-list li {
  display: flex;
  gap: 0.6rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.95rem;
}

.feature-list i {
  color: #38bdf8;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.summary-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.summary-actions .btn-outline-light:hover {
  border-color: #38bdf8;
  color: #38bdf8;
  background: transparent;
}

.summary-footnote {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.7);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-specs {
  background: #f8fafc;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.spec-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.spec-card h6 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.spec-card p {
  color: var(--text-muted);
  margin: 0;
}

.product-performance {
  background: #ffffff;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.performance-card {
  border-radius: 22px;
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.7)),
    url("../../images/background/effect4.jpg") center/cover no-repeat;
  color: #ffffff;
  min-height: 180px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.performance-card h4 {
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.performance-card p {
  color: rgba(226, 232, 240, 0.8);
}

.product-faq {
  background: #f8fafc;
}

.product-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.product-accordion .accordion-button {
  background: #ffffff;
  font-weight: 600;
}

.product-accordion .accordion-button:not(.collapsed) {
  color: #0f172a;
  box-shadow: inset 0 -1px 0 rgba(226, 232, 240, 0.7);
}

.product-related {
  background: #ffffff;
  padding-left: clamp(16px, 4vw, 60px);
  padding-right: clamp(16px, 4vw, 60px);
}

.product-related__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.related-slider {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.related-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.related-slide {
  flex: 0 0 auto;
}

.related-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
}

.related-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.6);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.related-dot.is-active {
  width: 26px;
  background: var(--accent);
}

.related-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  color: #0f172a;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.related-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.related-info {
  padding: 0;
  position: relative;
  margin-top: -44px;
  padding-left: 18px;
  display: flex;
  justify-content: flex-start;
}

.related-info .btn-light {
  background: #0ea5e9;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  box-shadow: 0 10px 20px rgba(14, 165, 233, 0.25);
}

.related-info .btn-light:hover {
  background: #0284c7;
  color: #ffffff;
}

.related-info span {
  display: block;
  color: rgba(226, 232, 240, 0.75);
  margin-bottom: 0.8rem;
}

.related-info .btn-light {
  background: rgb(5 162 228);
  border: none;
  color: #ffffff;
      margin-bottom: 11px;
}

.related-info .btn-light:hover {
  background: rgba(56, 189, 248, 0.2);
  color: #ffffff;
}

.quote-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1300;
}

.quote-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(3px);
}

.quote-modal__panel {
  position: relative;
  background: #ffffff;
  border-radius: 26px;
  width: min(520px, 92vw);
  padding: 2rem;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.25);
  transform: translateY(18px);
  transition: transform 0.3s ease;
  z-index: 1;
}

.quote-modal.is-open .quote-modal__panel {
  transform: translateY(0);
}

.quote-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.quote-modal__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 0.4rem;
}

.quote-modal__text {
  color: #64748b;
  margin-bottom: 1.4rem;
}

.quote-modal__form {
  display: grid;
  gap: 0.9rem;
}

.quote-modal__field {
  display: grid;
  gap: 0.4rem;
}

.quote-modal__field label {
  font-size: 0.85rem;
  color: #1e293b;
  font-weight: 600;
}

.quote-modal__field input,
.quote-modal__field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  background: #f8fafc;
}

.quote-modal__field input:focus,
.quote-modal__field textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.quote-modal__actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (max-width: 767px) {
  .quote-modal__panel {
    padding: 1.6rem;
    border-radius: 22px;
  }
}

@media (max-width: 991px) {
  .product-detail-hero {
    padding: 100px 0 120px;
  }

  .product-gallery__main img {
    height: 320px;
  }

  .product-summary {
    position: static;
  }

  .spec-grid,
  .performance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .product-detail-hero {
    padding: 90px 0 110px;
  }

  .product-gallery {
    padding: 1.2rem;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact-hero {
  min-height: 80vh;
  background: linear-gradient(120deg, rgba(8, 15, 28, 0.88), rgba(8, 15, 28, 0.45)),
    url("../../images/products/set8.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  color: #ffffff;
}

.contact-hero-content {
  max-width: 620px;
}

.contact-hero-content h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin: 0.6rem 0 1rem;
  color: #ffffff;
}

.contact-hero-content p {
  color: #e2e8f0;
  font-size: 1.05rem;
}

.contact-info {
  background: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.4rem;
  align-items: start;
}

.contact-panel {
  background: #f8fafc;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.contact-panel-header h2 {
  margin: 0.6rem 0 0.6rem;
}

.contact-panel-header p {
  color: var(--text-muted);
}

.contact-card {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
  margin-top: 1rem;
}

.contact-card i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #e0f2fe;
  color: #00a0e3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-card h6 {
  margin-bottom: 0.35rem;
}

.contact-card p {
  margin: 0;
  color: var(--text-muted);
}
button.btn-inquiry {
    background-color: #b0daff;
    width: 81px;
    border-radius: 8px;
    color: #ffffff;
}
.contact-hours {
  margin-top: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  border: 1px dashed rgba(148, 163, 184, 0.6);
}

.contact-download {
  margin-top: 1rem;
}

.contact-download .link-arrow {
  color: #0f2a4a;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.4rem 0;
}

.contact-form-wrap {
  background: #0f2a4a;
  border-radius: 24px;
  padding: 2rem;
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, rgba(56, 189, 248, 0.2), transparent 50%),
    radial-gradient(circle at 90% 0%, rgba(59, 130, 246, 0.18), transparent 45%);
  pointer-events: none;
}

.contact-form-header h3 {
  color: #ffffff;
}

.contact-form-header p {
  color: rgba(226, 232, 240, 0.85);
}

.contact-form {
  position: relative;
  z-index: 1;
  margin-top: 1.4rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: span 2;
}

.form-field label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.8);
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 0.65rem 0.9rem;
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(226, 232, 240, 0.6);
}

.form-field select {
  color: #e2e8f0;
}

.contact-map {
  background: #f8fafc;
}

.map-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.map-text p {
  color: var(--text-muted);
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  min-height: 280px;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #94a3b8;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.6), rgba(248, 250, 252, 0.8));
}

.map-placeholder i {
  font-size: 1.6rem;
}

@media (max-width: 991px) {
  .about-hero {
    padding: 110px 0 80px;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .quality-hero {
    padding: 110px 0 80px;
  }

  .quality-image-stack {
    padding-right: 1.5rem;
    padding-bottom: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: span 1;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .promise-orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .orbit-center {
    order: 0;
    width: 200px;
    height: 200px;
    margin: 0.5rem 0 1rem;
  }

  .orbit-card {
    order: 1;
    max-width: 240px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .history-stage {
    padding: 0 0 1.6rem;
  }

  .history-milestones {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-height: 0;
    text-align: left;
    margin-top: 1.5rem;
  }

  .history-milestone {
    position: static;
    transform: none;
    width: auto;
  }

  .infra-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 180px;
    grid-template-areas: none;
    min-height: 0;
  }

  .infra-item {
    grid-area: auto;
  }
}

@media (max-width: 767px) {
  .about-hero {
    padding: 100px 0 70px;
    min-height: 48vh;
  }

  .story-stats h4 {
    font-size: 1.4rem;
  }

  .quality-hero {
    padding: 100px 0 70px;
    min-height: 48vh;
  }

  .quality-image-stack {
    padding-right: 0;
  }

  .quality-image-small {
    width: 60%;
    border-width: 4px;
  }

  .contact-hero {
    padding: 100px 0 70px;
    min-height: 48vh;
  }

  .orbit-card {
    max-width: 100%;
    width: 100%;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .history-milestones {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }

  .history-stage {
    margin-top: 0;
    padding-top: 1.2rem;
  }

  .history-graphic {
    display: none;
  }

  .history-milestone {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    color: var(--text-dark);
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 0.9rem;
  }

  .history-milestone h6 {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f2a4a;
    background: radial-gradient(circle at 30% 30%, #f8fbff, #d8e8f9 70%);
    border: 2px solid rgba(56, 189, 248, 0.8);
    box-shadow:
      0 12px 26px rgba(15, 23, 42, 0.18),
      0 0 0 6px rgba(56, 189, 248, 0.16);
    margin-top: 13px;
    position: relative;
    overflow: visible;
  }

  .history-milestone h6::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1.5px solid rgba(56, 189, 248, 0.45);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
    animation: historyPulse 2.2s ease-in-out infinite;
  }

  .history-milestone p {
   background: #3c51635e;
        border: 2px solid rgb(104 200 243);
        border-radius: 16px;
        padding: 0.9rem 1rem;
        box-shadow: 0 12px 24px rgb(23 55 67 / 48%);
        color: #253248;
        margin: 0;
  }

  .infra-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .contact-panel {
    padding: 1.4rem;
    border-radius: 20px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1rem;
  }

  .contact-card i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .contact-card p,
  .contact-card a {
    word-break: break-word;
  }
}

.client-reviews {
  background: #f8fafc;
  --review-anim-duration: 2s;
  --review-anim-distance: 350px;
  padding-bottom: 40px;
}

.review-carousel .carousel-inner {
  overflow: hidden;
}

.review-carousel {
  overflow: hidden;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.review-panel {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.review-anim-left {
  animation: reviewSlideLeft var(--review-anim-duration, 1.4s) ease both;
}

.review-anim-up {
  animation: reviewSlideUp var(--review-anim-duration, 1.4s) ease both;
}

.review-anim-right {
  animation: reviewSlideRight var(--review-anim-duration, 1.4s) ease both;
}

@keyframes reviewSlideLeft {
  from {
    opacity: 0;
    transform: translateX(calc(var(--review-anim-distance) * -1));
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes reviewSlideUp {
  from {
    opacity: 0;
    transform: translateY(var(--review-anim-distance));
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes reviewSlideRight {
  from {
    opacity: 0;
    transform: translateX(var(--review-anim-distance));
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

.review-panel--intro {
  background: #0f3b7a;
  color: #ffffff;
  border: none;
  position: relative;
  overflow: hidden;
  min-height: 340px;
}

.review-panel--intro::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  top: -40px;
  right: -40px;
}

.review-quote-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.review-panel--intro h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.3;
}

.review-panel--intro p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  line-height: 1.6;
}

.review-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.review-link::after {
  content: "→";
  font-size: 1rem;
}

.reviewer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.reviewer-photo {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.reviewer-photo img {
  width: 100%;
  height: 190px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.reviewer-text h5 {
  margin: 0;
  font-size: 1rem;
}

.reviewer-text span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.review-panel--offset {
  margin-top: 40px;
}

.review-panel p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.review-stars {
  display: flex;
  gap: 0.3rem;
  color: #f59e0b;
  font-size: 0.95rem;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.8rem;
  position: static;
}

.review-dots .review-dot,
.review-dots [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5f5;
  border: none;
  opacity: 1;
  margin: 0;
}

.review-dots .review-dot.active,
.review-dots .active {
  width: 24px;
  background: #1f3b7a;
}

@media (max-width: 991px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-panel--intro {
    grid-column: span 2;
  }

  .review-panel--offset {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-panel--intro {
    grid-column: span 1;
  }

  .review-carousel .carousel-inner {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding: 0 1rem 0.5rem;
    scrollbar-width: none;
    align-items: stretch;
  }

  .review-carousel .carousel-inner::-webkit-scrollbar {
    display: none;
  }

  .review-carousel .carousel-item {
    display: contents !important;
    position: static;
    transform: none !important;
    transition: none !important;
  }

  .review-carousel .reviews-grid {
    display: contents;
  }

  .review-carousel .review-panel {
    flex: 0 0 88%;
    scroll-snap-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-anim-left,
  .review-anim-up,
  .review-anim-right {
    animation: none;
  }
}

.link-arrow {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.collection-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.85));
}

.collection-info h5 {
  margin-bottom: 0.3rem;
  color: #ffffff;
}

.collection-info span {
  display: block;
  margin-bottom: 0.8rem;
  color: #e2e8f0;
}

.collection-carousel {
  overflow: hidden;
}

.collection-track {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.collection-track::-webkit-scrollbar {
  display: none;
}

.collection-card--slider {
  flex: 0 0 calc(33.333% - 1rem);
  max-width: calc(33.333% - 1rem);
  min-width: 0;
  scroll-snap-align: start;
}

.collection-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
}

.collection-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cbd5f5;
  opacity: 1;
}

.collection-dot.active {
  width: 24px;
  background: #1f3b7a;
}

@media (max-width: 991px) {
  .collection-card--slider {
    flex: 0 0 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
  }
}

@media (max-width: 767px) {
  .collection-card--slider {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.feature-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(15, 23, 42, 0.2), rgba(255, 255, 255, 0.7));
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(10px);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.expo-section {
  background: #ffffff;
}

.expo-heading h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
}

.expo-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 1.2rem;
  margin-top: 2rem;
}

.expo-tabs {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.expo-tab {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #475569;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  padding: 0.6rem 1.6rem;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.expo-tab:hover {
  border-color: #1556d3;
  color: #1556d3;
}

.expo-tab.is-active {
    background: #00a0e3;
    border-color: #00a0e3;
    color: #ffffff;
    box-shadow: 0 12px 30px rgb(99 195 255 / 35%);
}

.expo-item.is-hidden {
  display: none;
}

.expo-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  background: #0f172a;
  cursor: pointer;
}

.expo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.expo-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), rgba(15, 23, 42, 0.5));
  z-index: 1;
}


.expo-item:hover img {
  transform: scale(1.05);
}

.expo-reveal,
.expo-reveal-item {
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  filter: blur(8px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
  transition-delay: var(--expo-delay, 0ms);
}

.expo-reveal.is-visible,
.expo-reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.expo-item.is-animating {
  animation: expoFadeUp 0.45s ease both;
}

@keyframes expoFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .expo-item.is-animating {
    animation: none;
  }

  .expo-reveal,
  .expo-reveal-item {
    transition: none;
    filter: none;
    transform: none;
    opacity: 1;
  }
}

.expo-lightbox .modal-content {
  background: rgba(15, 23, 42, 0.92);
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expo-lightbox img {
  width: 100%;
  height: 70vh;
  object-fit: contain;
  background: #1f2937;
  border-radius: 12px;
}

.expo-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  filter: invert(1);
}

.expo-lightbox .carousel-control-prev-icon,
.expo-lightbox .carousel-control-next-icon {
  background-image: none;
  filter: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 600;
}

.expo-lightbox .carousel-control-prev-icon::after {
  content: "‹";
}

.expo-lightbox .carousel-control-next-icon::after {
  content: "›";
}

.expo-lightbox .modal-dialog {
  max-width: 100vw;
  width: 100vw;
  margin: 0;
}

.expo-lightbox .carousel {
  width: min(1100px, 86vw);
  background: #1f2937;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

.expo-lightbox .carousel-control-prev,
.expo-lightbox .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.expo-lightbox .carousel-control-prev {
  left: -72px;
}

.expo-lightbox .carousel-control-next {
  right: -72px;
}

.expo-lightbox .carousel-control-prev-icon,
.expo-lightbox .carousel-control-next-icon {
  width: 1.8rem;
  height: 1.8rem;
}

@media (max-width: 767px) {
  .expo-lightbox img {
    height: 60vh;
  }

  .expo-lightbox .carousel {
    width: 92vw;
    padding: 1.2rem;
  }

  .expo-lightbox .carousel-control-prev {
    left: -18px;
  }

  .expo-lightbox .carousel-control-next {
    right: -18px;
  }
}

.expo-item.wide {
  grid-column: span 2;
}

.expo-item.tall {
  grid-row: span 2;
}

.expo-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 991px) {
  .expo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expo-item.wide,
  .expo-item.tall,
  .expo-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  .expo-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
}

.feature-card h6 {
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e0f2fe;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  position: relative;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-card h6 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.product-card p {
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}

.badge-new,
.badge-sale {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
}

.badge-new {
  background: #0f172a;
  color: #ffffff;
}

.badge-sale {
  background: #f97316;
  color: #ffffff;
}

.product-hero {
  min-height: 80vh;
  background: linear-gradient(120deg, rgba(8, 15, 28, 0.9), rgba(8, 15, 28, 0.45)),
    url("../../images/products/set15.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 0 90px;
  color: #ffffff;
}

.product-hero-content {
  max-width: 620px;
}

.product-hero-content h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  margin: 0.6rem 0 1rem;
  color: #ffffff;
}

.product-hero-content p {
  color: #e2e8f0;
  font-size: 1.05rem;
}

.product-breadcrumb {
  color: rgba(226, 232, 240, 0.8);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 1.2rem 0 1.5rem;
}

.product-breadcrumb span {
  opacity: 0.6;
}

.product-hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.product-categories {
  background: #ffffff;
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 1.6rem;
}

.chip {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.chip:hover,
.chip.is-active {
  border-color: #00a0e3;
  color: #ffffff;
  background: #00a0e3;
  box-shadow: 0 12px 26px rgba(0, 160, 227, 0.3);
}

.product-catalog {
  background: #f8fafc;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.product-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: #101b31;
  border: 1px solid rgba(125, 211, 252, 0.45);
  color: #e2e8f0;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.category-card i {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(56, 189, 248, 0.18);
  color: #7dd3fc;
  font-size: 1rem;
  flex-shrink: 0;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.8);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.24);
}

@media (max-width: 991px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.product-feature {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
  padding: 2.4rem;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: #0f172a;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.22);
}

.scroll-target {
  scroll-margin-top: 120px;
}

.scroll-target:target {
  outline: 3px solid rgba(56, 189, 248, 0.9);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.55), 0 24px 50px rgba(15, 23, 42, 0.28);
}

.scroll-target.scroll-focus {
  outline: 3px solid rgba(56, 189, 248, 0.9);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.55), 0 24px 50px rgba(15, 23, 42, 0.28);
}

.product-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 52%, rgba(15, 23, 42, 0.12) 100%);
  z-index: 0;
}

.product-feature.is-right::after {
  background: linear-gradient(270deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.55) 52%, rgba(15, 23, 42, 0.12) 100%);
}

.product-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s ease;
}

.product-feature-content {
  position: relative;
  z-index: 1;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: transform 0.35s ease;
}

.product-feature.is-right .product-feature-content {
  margin-left: auto;
  text-align: right;
  align-items: flex-end;
}

.product-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e2e8f0;
  width: fit-content;
}

.product-feature h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.product-feature p {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
}

.product-feature .btn {
  width: fit-content;
}

.product-feature:hover img {
  transform: scale(1.05);
}

.product-feature:hover .product-feature-content {
  transform: translateY(-6px);
}

.product-gallery {
  background: transparent;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(70px);
  transition: max-height 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease,
    transform 1.2s ease;
  will-change: transform, opacity;
}

.product-gallery.is-open {
  max-height: 2000px;
  opacity: 1;
  transform: translateY(0);
  padding: 70px 0;
}

.product-gallery-panel {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-gallery-header {
  padding: 10px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ffffff;
}

.product-gallery-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-gallery-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
color: rgb(0 0 0 / 70%);
}

.product-gallery-header h3 {
  margin: 0.4rem 0 0;
  color: #000000;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.product-gallery-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(148, 163, 184, 0.18);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-grid {
  padding: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.product-gallery-grid.is-single {
  grid-template-columns: minmax(280px, 380px);
  justify-content: center;
}

.product-gallery-item {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.18);
}

.product-gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.product-gallery-grid.is-single .product-gallery-item img {
  aspect-ratio: 1 / 1;
  height: auto;
}

.product-gallery-item-body {
  padding: 16px 18px 20px;
  background: #ffffff;
}

.product-gallery-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.6rem 1.6rem;
  border-radius: 10px;
  background: #00a0e3;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
 box-shadow: 10px 12px 26px rgb(0 164 227 / 24%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-gallery-link:hover {
  background: #0b88c4;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 160, 227, 0.4);
}

.product-cta,
.quality-cta {
  position: relative;
  background: linear-gradient(120deg, #f6f9ff 0%, #f3f7fb 45%, #fef8f2 100%);
  overflow: hidden;
}

.quality-cta::before {
  content: "";
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 60%;
  pointer-events: none;
}

.quality-cta-simple {
  background: #ffffff;
}

.quality-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  border-radius: 26px;
  background: linear-gradient(135deg, #163a66 0%, #0f2f52 100%);
  color: #f8fafc;
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.28);
}

.quality-cta-content h3 {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
}

.quality-cta-content p {
  margin: 0;
  color: rgba(226, 232, 240, 0.9);
  max-width: 640px;
}

.quality-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.6rem;
  border-radius: 10px;
  background: #ffffff;
  color: #0f2f52;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.quality-cta-btn:hover {
  color: #0f2f52;
  background: #f1f5f9;
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
}

@media (max-width: 767px) {
  .quality-cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .quality-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

.quality-docs-card {
  --docs-accent: #0ea5e9;
  --docs-ink: #0f172a;
  --docs-muted: #475569;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.2rem;
  padding: clamp(2rem, 4vw, 3.6rem);
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 26px 55px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.quality-docs-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  pointer-events: none;
}

.quality-docs-content,
.quality-docs-panel {
  position: relative;
  z-index: 1;
}

.quality-docs-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: var(--docs-accent);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.quality-docs-content h3 {
  margin: 0.85rem 0 0.65rem;
  color: var(--docs-ink);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.quality-docs-content p {
  margin: 0;
  color: var(--docs-muted);
  max-width: 540px;
}

.quality-docs-tags {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.quality-docs-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.28);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2a44;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.08);
}

.quality-docs-tag i {
  color: var(--docs-accent);
  font-size: 1rem;
}

.quality-docs-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.quality-docs-support-item {
  background: rgba(15, 23, 42, 0.04);
  border-radius: 16px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.quality-docs-support-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--docs-ink);
}

.quality-docs-support-item span {
  display: block;
  font-size: 0.85rem;
  color: var(--docs-muted);
  margin-top: 0.3rem;
}

.quality-docs-panel {
  background:
    linear-gradient(120deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.6)),
    url("../../images/background/effect4.jpg") center/cover no-repeat;
  color: #f8fafc;
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.35);
  display: grid;
  gap: 1.1rem;
}

.quality-docs-panel-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  color: #7dd3fc;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.quality-docs-panel h4 {
  margin: 0.6rem 0 0.35rem;
  font-size: 1.2rem;
  color: #f8fafc;
}

.quality-docs-panel p {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.95rem;
}

.quality-docs-list {
  display: grid;
  gap: 0.65rem;
}

.quality-docs-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.65rem 0.8rem;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.9);
}

.quality-docs-item i {
  color: #38bdf8;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.quality-docs-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.quality-docs-actions .btn {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
}

.quality-docs-note {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.8rem;
}

.quality-docs-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px dashed rgba(248, 250, 252, 0.4);
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  justify-self: flex-start;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(2rem, 3.4vw, 3.4rem);
  color: #0f172a;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 320px);
  align-items: center;
  gap: 2.6rem;
  background:
    linear-gradient(135deg, #f8fbff, #eef4ff 55%, #f7f3ff 100%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 14px;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f73ff, #38bdf8);
  opacity: 0.9;
  pointer-events: none;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(15, 23, 42, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
  pointer-events: none;
}

.cta-copy,
.cta-box {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
  background: rgba(31, 115, 255, 0.12);
  border: 1px solid rgba(31, 115, 255, 0.22);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #1f73ff;
  width: fit-content;
}

.cta-copy h3 {
  color: #0f172a;
  margin: 0.85rem 0 0.6rem;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.cta-copy p {
  margin: 0;
  color: #475569;
  max-width: 520px;
}

.cta-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.3);
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2a44;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.cta-feature i {
  color: #1f73ff;
  font-size: 1rem;
}

.cta-box {
  background: #0f1f3a;
  color: #ffffff;
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.35);
  display: grid;
  gap: 0.85rem;
}

.cta-box h4 {
  margin: 0;
  font-size: 1.2rem;
  color: #ffffff;
}

.cta-box p {
  margin: 0;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.95rem;
}

.cta-box-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.cta-box .btn {
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-note {
  color: rgba(226, 232, 240, 0.7);
  font-size: 0.8rem;
}


.site-footer {
  position: relative;
  background: #0f172a;
  padding: 95px 0 45px;
  border-top: none;
  color: #e2e8f0;
  overflow: hidden;
  font-size: 1rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 15, 28, 0.75), rgba(8, 15, 28, 0.6)),
    url("../../images/products/set14.webp") center 30%/cover no-repeat;
  z-index: 0;
}

.site-footer .container-xl {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand h5 {
  margin-bottom: 0.4rem;
}

.footer-brand p {
  color: #fff;
  margin: 0;
  max-width: 320px;
  font-size: 13px;
  margin-top: 25px;
}
footer.site-footer .row.g-4 {
  justify-content: space-between;
  column-gap: 0;
  row-gap: 1rem;
}

footer.site-footer .row.g-4 > [class*="col-"] {
  min-width: 0;
}

@media (min-width: 992px) {
  footer.site-footer .row.g-4 {
    flex-wrap: nowrap;
  }

  footer.site-footer .col-lg-3:nth-of-type(2) {
    padding-right: 0.5rem;
  }

  footer.site-footer .col-lg-3:nth-of-type(3) {
    padding-left: 0.5rem;
  }
}
.footer-social {
  margin-top: 0.8rem;
}

.footer-social .icon-btn {
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.footer-social .icon-btn:hover {
  background: #ffffff;
}

.footer-social a[aria-label="Facebook"]:hover {
  color: #1877f2;
  border-color: #1877f2;
}

.footer-social a[aria-label="Instagram"]:hover {
  color: #e1306c;
  border-color: #e1306c;
}

.footer-social a[aria-label="Youtube"]:hover {
  color: #ff0000;
  border-color: #ff0000;
}

.site-footer h6 {
  color: #7dd3fc;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.55rem;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.5;
}

.footer-links a {
  color: inherit;
}

.footer-links a:hover {
  color: #38bdf8;
}

.footer-links i {
  margin-right: 0.5rem;
}

.footer-links.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-links.footer-contact i {
  margin-right: 0;
  font-size: 1rem;
  line-height: 1;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-links.footer-contact span,
.footer-links.footer-contact a {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #cbd5f5;
  font-size: 0.98rem;
}

.footer-credit {
    margin-left: 570px;
  color: #a9c1e8;
}

.footer-credit a {
  color: #38bdf8;
}

.footer-credit a:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-credit {
    margin-left: 0;
    margin-top: 0.35rem;
    display: block;
  }
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: inherit;
}

.footer-legal a:hover {
  color: #ffffff;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #0f172a;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1200;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 88px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.28);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

.whatsapp-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.35);
  color: #ffffff;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #00a0e3;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

@media (max-width: 991px) {
  .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }

  .search-pill {
    min-width: 200px;
  }

  .hero-card {
    min-height: 280px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-feature {
    padding: 2rem;
    min-height: 280px;
  }

  .product-hero {
    padding: 110px 0 80px;
  }

  .cta-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-box {
    width: 100%;
  }

  .quality-docs-card {
    grid-template-columns: 1fr;
  }

  .quality-docs-panel {
    order: 2;
  }

  .quality-docs-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .container-xl {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section-padding {
    padding: 25px 0;
  }

  .site-nav .container-xl {
    position: relative;
    justify-content: center;
    height: 70px;
  }

  .menu-toggle {
    position: absolute;
    left: 18px;
    margin-left: 0;
    margin-top: 25px;
  }

  .brand {
    margin: 0 auto;
    display: none !important;
  }

  .hero-slide {
    padding: 70px 0 80px;
    min-height: 55vh;
  }

  .hero-carousel {
    height: 55vh;
    min-height: 360px;
  }

  .hero-carousel .carousel-item {
    min-height: 360px;
  }

  .hero-card {
    min-height: 240px;
  }

  .about-hero {
    padding: 95px 0 70px;
  }

  .about-hero-content {
    max-width: 100%;
  }

  .about-hero-content h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.4rem);
    line-height: 1.15;
  }

  .about-hero-content p {
    font-size: 0.95rem;
  }

  .hero-slide-video {
    background: transparent;
  }

  .hero-slide-video::before {
    background: transparent;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-feature {
    padding: 1.6rem;
    min-height: 240px;
    align-items: flex-start;
  }

  .product-feature-content {
    max-width: 100%;
  }

  .product-gallery-panel {
    max-height: none;
  }

  .product-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .product-gallery-grid.is-single {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid.is-single .product-gallery-item {
    max-width: 360px;
    margin: 0 auto;
  }

  .product-gallery-grid img {
    height: 160px;
  }

  .cta-card {
    gap: 1.5rem;
  }

  .cta-features {
    grid-template-columns: 1fr;
  }

  .cta-box-actions .btn,
  .cta-ghost {
    width: 100%;
    text-align: center;
  }

  .quality-docs-card {
    padding: 1.8rem;
    gap: 1.6rem;
  }

  .quality-docs-tags {
    grid-template-columns: 1fr;
  }

  .quality-docs-panel {
    padding: 1.5rem;
  }

}

/* Product detail page redesign */
.product-detail-page {
  --detail-ink: #0b1324;
  --detail-ink-soft: #1d2b44;
  --detail-muted: #5b6b84;
  --detail-accent: #00a0e3;
  --detail-accent-warm: #f1b97a;
  --detail-bg: #f4f7fb;
  --detail-surface: #ffffff;
  background: var(--detail-bg);
  font-family: "Manrope", "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--detail-ink);
}

.product-detail-page h1,
.product-detail-page h2,
.product-detail-page h3,
.product-detail-page h4 {
  font-family: "Space Grotesk", "Manrope", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.01em;
}

.detail-hero {
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
  color: #f8fafc;
  background:
    linear-gradient(120deg, rgba(8, 15, 28, 0.78), rgba(8, 15, 28, 0.4)),
    url("../../images/products/set12.webp") center/cover no-repeat,
    radial-gradient(circle at 12% 18%, rgba(0, 160, 227, 0.24), transparent 42%),
    radial-gradient(circle at 84% 14%, rgba(241, 185, 122, 0.22), transparent 40%),
    linear-gradient(135deg, #0b1324 0%, #13284a 45%, #0c1a33 100%);
}

.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.35;
  animation: detailDrift 16s ease-in-out infinite;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 227, 0.35), transparent 60%);
  filter: blur(6px);
  opacity: 0.7;
  animation: detailGlow 12s ease-in-out infinite;
}

.detail-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.detail-hero__copy {
  max-width: 560px;
  margin-top: 80px;
}
.offcanvas-group button.offcanvas-toggle {
    display: flex;
    gap: 12px;
    align-items: center;
}
 
.detail-hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
  animation: detailRise 0.9s ease forwards;
}

.detail-hero__copy > *:nth-child(1) { animation-delay: 0.1s; }
.detail-hero__copy > *:nth-child(2) { animation-delay: 0.22s; }
.detail-hero__copy > *:nth-child(3) { animation-delay: 0.34s; }
.detail-hero__copy > *:nth-child(4) { animation-delay: 0.46s; }
.detail-hero__copy > *:nth-child(5) { animation-delay: 0.58s; }

.detail-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.detail-hero__copy h1 {
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0.75rem 0 0.8rem;
}

.detail-hero__copy p {
  color: rgba(226, 232, 240, 0.85);
  font-size: 1.05rem;
  margin: 0;
}

.detail-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.detail-hero__chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  color: #e2e8f0;
}

.detail-hero__chips i {
  color: var(--detail-accent);
}

.detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.detail-hero__actions .btn {
  border-radius: 999px;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
}

.detail-hero__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: visible;
  padding: 0 80px;
}

.detail-hero__frame {
  position: relative;
  z-index: 1;
  padding: 18px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(5, 12, 26, 0.45);
  overflow: hidden;
  width: 100%;
  max-width: 440px;
}

.detail-hero__frame::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 160deg, rgba(0, 160, 227, 0.65), rgba(241, 185, 122, 0.5), rgba(0, 160, 227, 0.2));
  opacity: 0.45;
  filter: blur(12px);
  animation: detailHalo 14s linear infinite;
}

.detail-hero__frame::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 26px;
  background: #0b1528;
  z-index: 1;
}

.detail-hero__frame img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 22px;
}

.detail-hero__float {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e2e8f0;
  font-size: 0.82rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.35);
}

.detail-hero__float i {
  color: var(--detail-accent);
}

.detail-hero__float--one {
  top: 8%;
  left: 12px;
  animation: detailFloatOne 7s ease-in-out infinite;
}

.detail-hero__float--two {
  bottom: 8%;
  right: 12px;
  animation: detailFloatTwo 8s ease-in-out infinite;
}

.detail-hero__float--three {
  top: 48%;
  right: 12px;
  animation: detailFloatThree 9s ease-in-out infinite;
}

.detail-body {
  background: var(--detail-bg);
  padding-left: clamp(16px, 4vw, 60px);
  padding-right: clamp(16px, 4vw, 60px);
}

.detail-body__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 2.5rem;
  align-items: start;
}

.detail-body__spec-table {
  margin-top: 2.8rem;
}

.spec-table-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 1.8rem;
  border: 1px solid #e3e9f2;
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.14);
}

.spec-table-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.spec-table-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 160, 227, 0.15);
  color: #0b5f8f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-table-header h3 {
  margin: 0.5rem 0 0;
  font-size: 1.5rem;
  color: #0b1324;
}

.spec-table-wrap {
  overflow-x: auto;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.92rem;
  color: #0b1324;
}

.spec-table thead th {
  background: #23324a;
  color: #ffffff;
  text-align: center;
  padding: 0.65rem 0.5rem;
  border: 1px solid #1a2538;
  font-weight: 600;
}

.spec-table thead tr:nth-child(2) th {
  background: #e8edf4;
  color: #0b1324;
  border-color: #d5dce7;
  font-weight: 600;
}

.spec-table tbody td {
  padding: 0.6rem 0.5rem;
  border: 1px solid #d8e0ec;
  text-align: center;
  background: #ffffff;
}

.spec-table tbody tr:nth-child(even) td {
  background: #f6f8fb;
}

@media (max-width: 767px) {
  .spec-table-card {
    padding: 1.2rem;
    border-radius: 20px;
  }

  .spec-table-header h3 {
    font-size: 1.25rem;
  }
}

.spec-table-card.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1.1s ease, transform 1.1s ease;
}

.spec-table-card.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.detail-gallery {
  position: relative;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
}

.detail-gallery::after {
  content: none;
}

.detail-watermark {
    position: absolute;
    top: 22%;
    left: -45px;
    width: 100%;
    padding-left: 4%;
    font-size: 210px;
    /* font-size: clamp(4rem, 12vw, 10rem); */
    /* font-weight: 700; */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    color: transparent;
    background: linear-gradient(90deg, rgb(15 23 42 / 15%), rgb(15 23 42 / 12%) 70%, rgb(15 23 42 / 43%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 60%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 0%, #000 60%, transparent 100%);
    animation: detailSweepText 0.7s ease-out both;
}

.detail-gallery__main {
  position: relative;
  z-index: 1;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.detail-gallery__main img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  filter: blur(0) drop-shadow(0 20px 35px rgba(15, 23, 42, 0.18));
  transform: none;
  transition: opacity 0.55s ease, transform 0.8s ease, filter 0.6s ease;
  animation: detailSweepImage 0.8s ease-out both;
}

.detail-gallery__main.is-switching img {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(10px) drop-shadow(0 20px 35px rgba(15, 23, 42, 0.18));
}

.detail-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}


.detail-thumb {
  border: none;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  position: relative;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.08);
}

.detail-thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.detail-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.detail-thumb.is-active::after {
  border-color: var(--detail-accent);
  box-shadow: 0 0 0 3px rgba(0, 160, 227, 0.2);
}

.detail-thumb:hover img {
  transform: scale(1.06);
}

.detail-summary {
  position: sticky;
  top: 110px;
  background: #ffffff;
  color: var(--detail-ink);
  border-radius: 28px;
  padding: 2.1rem;
  border: 1px solid #e3e9f2;
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  margin-right: 24px;
}

.detail-summary::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 160, 227, 0.2), transparent 65%);
  opacity: 0.8;
}

.detail-summary__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.detail-summary__header h2 {
  margin-top: 0.35rem;
  font-size: 1.6rem;
  color: var(--detail-ink);
}

.detail-summary__sku {
  font-size: 0.9rem;
  color: var(--detail-muted);
}

.detail-summary__rating {
  text-align: right;
  font-size: 0.85rem;
  color: var(--detail-muted);
}

.detail-summary__rating .stars {
  color: #fbbf24;
}

.detail-summary__text {
  color: var(--detail-muted);
  margin-bottom: 1.3rem;
}

.detail-summary .finish-list h6 {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.detail-summary .swatch {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: var(--detail-ink-soft);
}

.detail-summary .swatch.is-active {
  border-color: var(--detail-accent);
}

.detail-summary .feature-list {
  margin: 1.3rem 0;
}

.detail-summary .feature-list li {
  color: var(--detail-ink-soft);
}

.detail-summary .feature-list i {
  color: var(--detail-accent);
}

.detail-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.detail-summary__actions .btn-outline-light {
  border-color: rgba(15, 23, 42, 0.2);
  color: var(--detail-ink);
}

.detail-summary__actions .btn-outline-light:hover {
  border-color: var(--detail-accent);
  color: var(--detail-accent);
  background: transparent;
}

.detail-summary__footnote {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--detail-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-detail-page .product-specs {
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 100%);
}

.product-detail-page .spec-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #e6edf5;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 0.6rem;
  align-content: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-detail-page .spec-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(0, 160, 227, 0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-detail-page .spec-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.14);
}

.product-detail-page .spec-card:hover::after {
  opacity: 1;
}

.product-detail-page .spec-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 160, 227, 0.12);
  color: var(--detail-accent);
  font-size: 1.2rem;
  box-shadow: 0 10px 18px rgba(0, 160, 227, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.product-detail-page .spec-card:hover .spec-icon {
  transform: translateY(-2px) rotate(-6deg) scale(1.05);
  background: rgba(0, 160, 227, 0.2);
  box-shadow: 0 16px 24px rgba(0, 160, 227, 0.26);
}
.product-detail-page .product-performance {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 160, 227, 0.18), transparent 55%),
    radial-gradient(circle at 88% 18%, rgba(241, 185, 122, 0.18), transparent 50%),
    linear-gradient(180deg, #eef3f9 0%, #ffffff 100%);
  overflow: hidden;
}

.product-detail-page .product-performance::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(12, 23, 44, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.55;
  pointer-events: none;
}

.product-detail-page .performance-card {
  background:
    linear-gradient(140deg, rgba(12, 23, 44, 0.95), rgba(12, 23, 44, 0.6)),
    url("../../images/background/effect4.jpg") center/cover no-repeat;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-detail-page .performance-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 48px rgba(12, 23, 44, 0.32);
}

.product-detail-page .product-faq {
  background: #f4f7fb;
}

.product-detail-page .product-accordion .accordion-item {
  border-radius: 20px;
}

.product-detail-page .product-related {
  background: #ffffff;
}

.product-detail-page .related-card {
  border-radius: 24px;
  /* background: #0c1528; */
  border: 1px solid rgba(148, 163, 184, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-detail-page .related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(12, 23, 44, 0.3);
}

@keyframes detailRise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes detailHalo {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes detailFloatOne {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes detailFloatTwo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes detailFloatThree {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes detailDrift {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes detailGlow {
  0%, 100% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

@keyframes detailSlideIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes detailSweepText {
  from { opacity: 0; transform: translateX(-140px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes detailSweepImage {
  from { opacity: 0; transform: translateX(-120px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes detailRevealOnce {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

@media (max-width: 991px) {
  .detail-hero {
    padding: 120px 0 110px;
  }

  .detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .detail-hero__media {
    order: -1;
    padding: 0 40px;
  }

  .detail-hero__frame img {
    height: 300px;
  }

  .detail-body__grid {
    grid-template-columns: 1fr;
  }

  .detail-summary {
    /* position: static; */
    animation: none;
    clip-path: none;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .detail-hero {
    padding: 105px 0 95px;
  }

  .detail-hero__copy h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 1.12;
  }

  .detail-hero__copy p {
    font-size: 0.95rem;
  }

  .detail-hero__chips {
    gap: 0.5rem;
  }

  .detail-hero__chips span {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }

  .detail-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-hero__media {
    padding: 0;
  }

  .detail-hero__frame {
    max-width: 100%;
  }

  .detail-hero__frame img {
    height: 260px;
  }

  .detail-gallery__main img {
    height: 240px;
    transform: rotate(0deg) !important;
  }

  .detail-watermark {
    display: none;
  }

  .detail-summary {
    border-radius: 22px;
    padding: 1.5rem;
    margin-right: 0;
  }

  .detail-summary__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-body {
    padding-left: 16px;
    padding-right: 16px;
  }

  .related-card {
    border-radius: 18px;
  }

  .related-card img {
    height: 300px;
  }

  .related-info {
    /* padding: 1.1rem; */
  }

  .whatsapp-float {
    right: 14px;
    bottom: 90px;
    width: 46px;
    height: 46px;
  }

  .back-to-top {
    right: 14px;
    bottom: 28px;
    width: 44px;
    height: 44px;
  }

  .product-performance .container-xl {
    padding-left: 16px;
    padding-right: 16px;
  }

  .performance-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-detail-page .performance-card {
    width: 100%;
    min-height: auto;
    padding: 1.2rem;
    border-radius: 18px;
    background-position: center;
  }

  .detail-gallery__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-summary__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .detail-hero::before,
  .detail-hero::after,
  .detail-hero__frame::before,
  .detail-hero__float {
    animation: none;
  }

  .detail-hero__copy > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .detail-summary {
    animation: none;
    clip-path: none;
  }

  .detail-watermark,
  .detail-gallery__main img {
    animation: none;
  }
}
@media (max-width: 767px) {
  .detail-hero__float {
    display: none;
  }
}
