:root {
  --font-heading:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", "SF Mono", Consolas, monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --suntecc-header-offset: 80px;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.font-heading,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: var(--tracking-tight);
  font-weight: 700;
  line-height: var(--leading-tight);
}
.font-mono,
code,
pre {
  font-family: var(--font-mono);
}
a {
  text-decoration-skip-ink: auto;
  text-underline-offset: 0.2em;
}
@media screen and (min-width: 783px) {
  body.admin-bar {
    --suntecc-header-offset: 112px;
  }
}
.suntecc-marquee {
  height: 32px;
  top: 0;
  z-index: var(--suntecc-z-marquee, 90) !important;
}
:root {
  --suntecc-z-nav: 100;
  --suntecc-z-dropdown: 1000;
  --suntecc-z-sticky: 40;
  --suntecc-z-marquee: 90;
  --suntecc-z-mobile-overlay: 110;
}
.suntecc-navbar {
  top: 0;
  z-index: var(--suntecc-z-nav) !important;
}
#mobile-menu {
  z-index: var(--suntecc-z-mobile-overlay, 110) !important;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.suntecc-navbar.has-marquee + #mobile-menu,
.suntecc-navbar.has-marquee ~ #mobile-menu {
  top: 112px;
  max-height: calc(100vh - 112px);
}
#mobile-search-overlay {
  z-index: calc(var(--suntecc-z-mobile-overlay, 110) + 10) !important;
}
.suntecc-navbar.has-marquee {
  top: 32px;
}
@media screen and (max-width: 768px) {
  .suntecc-marquee {
    display: none; /* Hide marquee on mobile to save space */
  }
  .suntecc-navbar,
  .suntecc-navbar.has-marquee {
    top: 0;
  }
  #mobile-menu {
    top: 80px;
    max-height: calc(100vh - 80px);
  }
}
@media screen and (min-width: 783px) {
  body.admin-bar .suntecc-marquee {
    top: 32px;
  }
  body.admin-bar .suntecc-navbar {
    top: 32px;
    z-index: var(--suntecc-z-nav) !important;
  }
  body.admin-bar .suntecc-navbar.has-marquee {
    top: 64px;
  }
}
.suntecc-header-logo {
  max-width: 190px;
}
.suntecc-logo {
  height: 48px;
}
@media (min-width: 640px) {
  .suntecc-header-logo {
    max-width: 220px;
  }
}
@media (min-width: 1024px) {
  .suntecc-header-logo {
    max-width: 280px;
  }
  .suntecc-logo {
    height: 60px;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.animate-marquee {
  animation: marquee 40s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.suntecc-marquee::-webkit-scrollbar {
  display: none;
}
.suntecc-marquee {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-content {
    animation: none !important;
  }
}
@keyframes sunteccFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes sunteccFadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes sunteccFadeInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.suntecc-anim-up {
  animation: sunteccFadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.suntecc-anim-left {
  animation: sunteccFadeInLeft 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}
.suntecc-anim-right {
  animation: sunteccFadeInRight 0.8s cubic-bezier(0.215, 0.61, 0.355, 1)
    forwards;
}
.suntecc-invisible {
  opacity: 0;
}
@keyframes productCardSlideIn {
  from {
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.product-card-animate {
  opacity: 0;
  transform: translateX(-40px) scale(0.95);
  will-change: opacity, transform;
  backface-visibility: hidden;
  visibility: visible;
  position: relative;
  transform-origin: center center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-animate.animate-active {
  animation: productCardSlideIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
}
@media (prefers-reduced-motion: reduce) {
  .product-card-animate,
  .product-card-animate.animate-active {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    will-change: auto !important;
  }
}
.product-card-animate:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
.product-card-animate img {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-animate a.block:hover img,
.product-card-animate a:first-of-type:hover img {
  transform: scale(1.08);
}
.product-card-animate .p-4 a:last-child {
  display: block;
  text-align: center;
  background: #f9fafb;
  color: #1e40af;
  font-weight: 600;
  padding: 0.5rem 0;
  border-radius: 0.375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-animate .p-4 a:last-child:hover {
  transform: scale(1.1);
  background: #1e40af;
  color: #fff;
}
.product-title-link {
  text-decoration: none;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-title-link:hover {
  transform: scale(1.05);
}
.product-title-link:hover h3 {
  color: #1e40af;
}
.product-card-entrance {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-entrance img {
  will-change: transform;
  backface-visibility: hidden;
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card-entrance:hover img {
  transform: scale(1.08);
}
.js-animation-ready .product-card-entrance {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.js-animation-ready .product-card-entrance.animate-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.js-animation-ready .application-scenario-card {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.js-animation-ready .application-scenario-card.animate-active {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .application-scenario-card,
  .carousel-slice,
  .product-card-entrance {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.suntecc-carousel-slide {
  will-change: opacity;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .suntecc-carousel-slide {
    transition: none !important;
  }
}
.manufacturing-strength-image-wrapper {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
@media (min-width: 1024px) {
  .manufacturing-strength-image-wrapper {
    max-width: 580px;
  }
}
@media (min-width: 1280px) {
  .manufacturing-strength-image-wrapper {
    max-width: 650px;
  }
}
@media (max-width: 768px) {
  .manufacturing-strength-image-wrapper {
    max-width: 100%;
    border-radius: 12px;
  }
}
.manufacturing-strength-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.manufacturing-strength-image.animate-active {
  opacity: 1;
  transform: scale(1);
}
.manufacturing-strength-text {
  position: relative;
  overflow: hidden;
}
.js-animation-ready .manufacturing-strength-text .text-slice {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-animation-ready .manufacturing-strength-text .text-slice.animate-active {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .manufacturing-strength-image,
  .manufacturing-strength-text .text-slice {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@keyframes manufacturing-fallback-show {
  to {
    opacity: 1;
    transform: none;
  }
}
.manufacturing-strength-image {
  animation: manufacturing-fallback-show 0.1s ease 3s forwards;
}
.manufacturing-strength-text .text-slice {
  animation: manufacturing-fallback-show 0.1s ease 3.5s forwards;
}
.suntecc-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.suntecc-tag:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.suntecc-tag-blue {
  color: #1e40af;
  background-color: #dbeafe;
}
.suntecc-tag-blue:hover {
  color: #fff;
  background-color: #2563eb;
}
.suntecc-tag-green {
  color: #166534;
  background-color: #dcfce7;
}
.suntecc-tag-green:hover {
  color: #fff;
  background-color: #16a34a;
}
.suntecc-tag-purple {
  color: #581c87;
  background-color: #f3e8ff;
}
.suntecc-tag-purple:hover {
  color: #fff;
  background-color: #9333ea;
}
.suntecc-tag-yellow {
  color: #713f12;
  background-color: #fef3c7;
}
.suntecc-tag-yellow:hover {
  color: #fff;
  background-color: #d97706;
}
.suntecc-tag-pink {
  color: #9d174d;
  background-color: #fce7f3;
}
.suntecc-tag-pink:hover {
  color: #fff;
  background-color: #db2777;
}
.suntecc-tag-indigo {
  color: #3730a3;
  background-color: #e0e7ff;
}
.suntecc-tag-indigo:hover {
  color: #fff;
  background-color: #4f46e5;
}
@media (prefers-reduced-motion: reduce) {
  .suntecc-tag {
    transition: none !important;
  }
  .suntecc-tag:hover {
    transform: none !important;
  }
}
.suncar-fixed-text {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 25;
  padding: 10px 16px;
  background: 0 0;
  border-radius: 6px;
  color: #fff;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.suncar-fixed-text:hover {
  background: 0 0;
  transform: translateY(-2px);
}
.suncar-text-prefix {
  opacity: 0.7;
  font-weight: 300;
}
.suncar-text-content {
  text-transform: uppercase;
}
.suncar-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 25;
  cursor: pointer;
  transition: all 0.3s ease;
}
.suncar-scroll-indicator:hover {
  transform: translateX(-50%) translateY(-3px);
}
.suncar-scroll-text {
  color: #fff;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: suncar-pulse 2s ease-in-out infinite;
}
.suncar-scroll-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  animation: suncar-bounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.suncar-scroll-indicator:hover .suncar-scroll-arrow {
  background: 0 0;
  transform: scale(1.1);
}
@keyframes suncar-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes suncar-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
@media (max-width: 768px) {
  .suncar-fixed-text {
    bottom: 16px;
    left: 16px;
    font-size: 12px;
    padding: 8px 12px;
  }
  .suncar-scroll-indicator {
    bottom: 80px;
  }
  .suncar-scroll-text {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .suncar-scroll-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .suncar-fixed-text {
    bottom: 12px;
    left: 12px;
    font-size: 11px;
    padding: 6px 10px;
    max-width: calc(100% - 24px);
  }
  .suncar-scroll-indicator {
    bottom: 70px;
  }
  .suncar-scroll-text {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .suncar-scroll-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}
.suntecc-hero-section h1,
.suntecc-hero-section p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.suntecc-hero-section #next-slide,
.suntecc-hero-section #prev-slide {
  background: rgba(0, 0, 0, 0.75) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.35) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(6px) !important;
  transition: all 0.3s ease !important;
}
.suntecc-hero-section #next-slide:hover,
.suntecc-hero-section #prev-slide:hover {
  background: rgba(0, 0, 0, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5) !important;
  transform: translateY(-50%) scale(1.1) !important;
}
.suntecc-hero-section .carousel-indicator {
  min-width: 24px;
  min-height: 24px;
}
.suntecc-hero-section .carousel-indicator span {
  background: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
}
.suntecc-hero-section .carousel-indicator.active span,
.suntecc-hero-section .carousel-indicator[data-slide="0"] span {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5) !important;
}
.suntecc-hero-section .carousel-indicator:hover span {
  background: rgba(255, 255, 255, 0.8) !important;
}
@media (prefers-reduced-motion: reduce) {
  .suncar-scroll-arrow,
  .suncar-scroll-text {
    animation: none !important;
  }
  .suncar-fixed-text,
  .suncar-scroll-indicator {
    transition: none !important;
  }
}
footer .border-t.text-gray-500 {
  color: #9ca3af !important;
}
footer .border-t p {
  color: #9ca3af !important;
}
aside h2.bg-\[\#3d8b3d\],
aside h3.bg-\[\#5cb85c\],
aside h3[style*="bg-[#5cb85c]"] {
  background-color: #3d8b3d !important;
}
.bg-\[\#3d8b3d\] {
  background-color: #3d8b3d;
}
.bg-\[\#0f172a\] {
  background-color: #0f172a;
}
.bg-\[\#1a365d\] {
  background-color: #1a365d;
}
.bg-\[\#0d9488\] {
  background-color: #0d9488;
}
.bg-\[\#0f766e\] {
  background-color: #0f766e;
}
.bg-\[\#1e5631\] {
  background-color: #1e5631;
}
.text-\[\#1a365d\] {
  color: #1a365d;
}
.product-card-entrance {
  background: linear-gradient(145deg, #fff 0, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.product-card-entrance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-card-entrance:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #3b82f6;
}
.product-card-entrance:hover::before {
  opacity: 1;
}
.product-card-entrance .image-area {
  background: linear-gradient(135deg, #f0f9ff 0, #e0f2fe 100%);
  position: relative;
  overflow: hidden;
}
.product-card-entrance .image-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    transparent 60%,
    rgba(59, 130, 246, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.product-card-entrance:hover .image-area::after {
  opacity: 1;
}
.product-card-entrance .floating-arrow {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(8px);
  border: 1px solid #e5e7eb;
  color: #374151;
  z-index: 10;
}
.product-card-entrance:hover .floating-arrow {
  opacity: 1;
  transform: translateY(0);
}
.product-card-entrance .floating-arrow:hover {
  background: #1e40af;
  color: #fff;
  border-color: #1e40af;
  box-shadow: 0 6px 16px rgba(30, 64, 175, 0.3);
  transform: scale(1.1);
}
.product-card-entrance .card-content {
  padding: 20px;
  position: relative;
}
.product-card-entrance .card-content .category-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 500;
}
.product-card-entrance .card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-entrance:hover .card-content h3 {
  color: #1e40af;
}
.product-grid-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.product-grid-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
}
.product-grid-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.product-grid-card:hover::after {
  border-color: #3b82f6;
}
.product-grid-card .image-wrapper {
  background: linear-gradient(135deg, #f8fafc 0, #f1f5f9 100%);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}
.product-grid-card .image-wrapper img {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-grid-card:hover .image-wrapper img {
  transform: scale(1.05);
}
.product-grid-card .card-body {
  padding: 16px;
  border-top: 1px solid #f3f4f6;
}
.product-grid-card .card-body h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-grid-card:hover .card-body h4 {
  color: #1e40af;
}
.related-product-card {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}
.related-product-card .image-container {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}
.related-product-card:hover .image-container {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}
.related-product-card .image-container img {
  transition: transform 0.3s ease;
}
.related-product-card:hover .image-container img {
  transform: scale(1.05);
}
.related-product-card h4 {
  transition: color 0.2s ease;
}
.related-product-card:hover h4 {
  color: #1e40af;
}
@media (max-width: 768px) {
  .product-card-entrance {
    border-radius: 12px;
  }
  .product-card-entrance:hover {
    transform: translateY(-2px);
  }
  .product-grid-card {
    border-radius: 8px;
  }
  .product-grid-card .image-wrapper {
    min-height: 160px;
    padding: 12px;
  }
}

/* Fix mobile double tap bug */
@media (hover: none) {
  .product-card-entrance .floating-arrow {
    opacity: 1;
    transform: translateY(0);
  }
  .product-card-entrance .image-area::after {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .product-card-entrance,
  .product-card-entrance .floating-arrow,
  .product-card-entrance .image-area::after,
  .product-card-entrance::before,
  .product-grid-card,
  .related-product-card {
    transition: none !important;
  }
  .product-card-entrance:hover,
  .product-grid-card:hover {
    transform: none !important;
  }
}
.text-\[\#5cb85c\] {
  color: #5cb85c;
}
.text-\[\#6b7280\] {
  color: #6b7280;
}
.border-\[\#1a365d\] {
  border-color: #1a365d;
}
.border-\[\#5cb85c\] {
  border-color: #5cb85c;
}
.bg-\[\#e9ecef\] {
  background-color: #e9ecef;
}
.bg-\[\#f5f5f5\] {
  background-color: #f5f5f5;
}
.blog-filter-dropdown select:focus,
.blog-search-form input:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::marker {
  display: none;
  content: "";
}
.faq-content-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;
  opacity: 0;
}
.faq-content-wrapper > .faq-content-inner {
  overflow: hidden;
}
details[open] > .faq-content-wrapper {
  grid-template-rows: 1fr;
  opacity: 1;
}
.single-product .flex.gap-2.overflow-x-auto {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.single-product .flex.gap-2.overflow-x-auto::-webkit-scrollbar {
  height: 4px;
}
.single-product .flex.gap-2.overflow-x-auto::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 2px;
}
.single-product .flex.gap-2.overflow-x-auto::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 2px;
}
.single-product .flex.gap-2.overflow-x-auto::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}
.single-product .flex.gap-2.overflow-x-auto img[data-full-src],
.single-product .woocommerce-product-gallery__image img {
  width: 80px !important;
  height: 80px !important;
  min-width: 80px;
  object-fit: cover;
}
.single-product div.product div.images,
.woocommerce.single-product div.product div.images {
  float: none !important;
  width: 100% !important;
}
.single-product div.product div.summary,
.woocommerce.single-product div.product div.summary {
  float: none !important;
  width: 100% !important;
}
.single-product #main-product-image {
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  object-fit: contain;
}
.single-product .grid.grid-cols-2 a.group > div.h-64 {
  height: 180px;
}
.single-product .grid.grid-cols-2 a.group > div.h-64 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .single-product .grid.grid-cols-2 a.group > div.h-64 {
    height: 256px;
  }
}
@media (min-width: 640px) {
  .single-product .flex.gap-2.overflow-x-auto img[data-full-src] {
    width: 80px !important;
    height: 80px !important;
  }
}
.suntecc-toast-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 420px;
  width: calc(100% - 40px);
}
@media (max-width: 640px) {
  .suntecc-toast-container {
    top: 80px;
    right: 12px;
    left: 12px;
    max-width: none;
    width: auto;
  }
}
.suntecc-toast {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08);
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  border-left: 4px solid transparent;
}
.suntecc-toast.suntecc-toast-show {
  transform: translateX(0);
  opacity: 1;
}
.suntecc-toast.suntecc-toast-hide {
  transform: translateX(120%);
  opacity: 0;
}
.suntecc-toast-success {
  border-left-color: #10b981;
}
.suntecc-toast-success .suntecc-toast-icon {
  background: #ecfdf5;
  color: #10b981;
}
.suntecc-toast-error {
  border-left-color: #ef4444;
}
.suntecc-toast-error .suntecc-toast-icon {
  background: #fef2f2;
  color: #ef4444;
}
.suntecc-toast-warning {
  border-left-color: #f59e0b;
}
.suntecc-toast-warning .suntecc-toast-icon {
  background: #fffbeb;
  color: #f59e0b;
}
.suntecc-toast-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.suntecc-toast-body {
  flex: 1;
  min-width: 0;
}
.suntecc-toast-title {
  font-weight: 700;
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 2px;
  line-height: 1.4;
}
.suntecc-toast-message {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.5;
  word-break: break-word;
}
.suntecc-toast-close {
  flex-shrink: 0;
  background: 0 0;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.suntecc-toast-close:hover {
  background: #f3f4f6;
  color: #4b5563;
}
.suntecc-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 0 12px;
  animation: sunteccToastProgress linear forwards;
}
.suntecc-toast-success .suntecc-toast-progress {
  background: linear-gradient(90deg, #10b981, #34d399);
}
.suntecc-toast-error .suntecc-toast-progress {
  background: linear-gradient(90deg, #ef4444, #f87171);
}
.suntecc-toast-warning .suntecc-toast-progress {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}
@keyframes sunteccToastProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}
.suntecc-toast:hover .suntecc-toast-progress {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .suntecc-toast {
    transition: opacity 0.15s ease !important;
    transform: none !important;
  }
  .suntecc-toast.suntecc-toast-hide {
    opacity: 0 !important;
  }
  .suntecc-toast-progress {
    animation: none !important;
  }
}
.suntecc-modal,
#lightbox-overlay {
  z-index: 1050 !important;
}
/* Skip-to-content link z-index fix (Tailwind z-[100] not compiled) */
.sr-only:focus {
  z-index: 100 !important;
}
.suntecc-hidden-modal {
  display: none !important;
}
.suntecc-visible-modal {
  display: flex !important;
}
.tech-grid-bg {
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.dot-pattern-bg {
  background-image: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.08) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
}
.circuit-line-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #3b82f6,
    #06b6d4,
    transparent
  );
  opacity: 0.5;
}
.circuit-line-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #3b82f6,
    #06b6d4,
    transparent
  );
  opacity: 0.5;
}
.glow-border {
  position: relative;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}
.glow-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
  filter: blur(8px);
}
.glow-border:hover {
  border-color: transparent;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.glow-border:hover::before {
  opacity: 0.3;
}
.tech-accent {
  position: relative;
}
.tech-accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 2px;
  transition: width 0.3s ease;
}
.tech-accent:hover::after {
  width: 60px;
}
.gradient-border-animated {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}
.gradient-border-animated::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6, #3b82f6);
  background-size: 300% 300%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradientShift 4s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gradient-border-animated:hover::before {
  opacity: 1;
}
@keyframes gradientShift {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.data-stream-bg {
  position: relative;
  overflow: hidden;
}
.data-stream-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(59, 130, 246, 0.02) 20px,
    rgba(59, 130, 246, 0.02) 21px
  );
  animation: dataStream 20s linear infinite;
}
@keyframes dataStream {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}
.pulse-dot {
  position: relative;
  display: inline-block;
}
.pulse-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 6px;
  height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 6px rgba(59, 130, 246, 0);
    opacity: 0.7;
  }
}
.tech-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.tech-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 0 15px rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}
.tech-card:hover::before {
  transform: scaleX(1);
}
.tech-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #e5e7eb,
    #3b82f6,
    #e5e7eb,
    transparent
  );
  margin: 2rem 0;
}
.tech-link {
  position: relative;
  text-decoration: none;
  color: #1f2937;
  transition: color 0.3s ease;
}
.tech-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: width 0.3s ease;
}
.tech-link:hover {
  color: #1e40af;
}
.tech-link:hover::after {
  width: 100%;
}
.status-online {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.status-online::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .data-stream-bg::before,
  .gradient-border-animated::before,
  .pulse-dot::before,
  .status-online::before {
    animation: none !important;
  }
  .glow-border:hover,
  .gradient-border-animated:hover::before,
  .tech-card:hover {
    transform: none !important;
  }
}
.from-\[\#0f172a\] {
  --tw-gradient-from: #0f172a var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(15, 23, 42, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-\[\#1e3a5f\] {
  --tw-gradient-to: #1e3a5f var(--tw-gradient-to-position);
}
.from-primary {
  --tw-gradient-from: #0056b3 var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(0, 86, 179, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue-800 {
  --tw-gradient-to: #1e40af var(--tw-gradient-to-position);
}
.text-blue-50 {
  --tw-text-opacity: 1;
  color: rgb(239 246 255 / var(--tw-text-opacity, 1));
}
.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / var(--tw-text-opacity, 1));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity, 1));
}
.sml-switcher {
  position: relative;
  display: inline-block;
}
.sml-switcher-dropdown {
  position: relative;
}
.sml-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.sml-switcher-toggle:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}
.sml-arrow {
  transition: transform 0.2s;
}
.sml-switcher-dropdown.open .sml-arrow {
  transform: rotate(180deg);
}
.sml-switcher-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  padding: 4px 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  list-style: none;
  min-width: 140px;
  z-index: var(--suntecc-z-dropdown, 1000);
}
.sml-switcher-dropdown.open .sml-switcher-list {
  display: block;
}
.sml-switcher-list a {
  display: block;
  padding: 8px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s;
}
.sml-switcher-list a:hover {
  background: #f3f4f6;
}
.sml-switcher-list a.sml-active {
  color: #0073aa;
  font-weight: 600;
}
.sml-switcher-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sml-switcher-text .sml-lang-link {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.sml-switcher-text .sml-lang-link:hover {
  opacity: 1;
}
.sml-switcher-text .sml-lang-link.sml-active {
  opacity: 1;
  font-weight: 600;
}
.sml-switcher-text .sml-separator {
  opacity: 0.3;
}
.page-numbers {
  display: flex;
  align-items: center;
}
.page-numbers.current span {
  background-color: #2563eb;
  color: #fff;
  border-color: #2563eb;
}
.page-numbers a {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}

/* GPU Acceleration for Scroll Animations (Performance & INP Optimization) */
.suntecc-scroll-item {
  will-change: transform, opacity;
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

/* Fallback Tailwind Utility Classes (Bypass JIT compilation missing classes) */
.bg-gray-50\/50 { background-color: rgba(249, 250, 251, 0.5) !important; }
.hover\:bg-blue-50\/50:hover { background-color: rgba(239, 246, 255, 0.5) !important; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95) !important; }
.bg-blue-100 { background-color: #dbeafe !important; }
.text-blue-800 { color: #1e40af !important; }
.border-blue-200 { border-color: #bfdbfe !important; }
.bg-indigo-100 { background-color: #e0e7ff !important; }
.text-indigo-800 { color: #3730a3 !important; }
.border-indigo-200 { border-color: #c7d2fe !important; }
.bg-green-100 { background-color: #dcfce7 !important; }
.text-green-800 { color: #166534 !important; }
.border-green-200 { border-color: #bbf7d0 !important; }
.bg-opacity-50 { --tw-bg-opacity: 0.5 !important; }

/* Mobile Sidebar z-index correction (Bypass JIT compilation) */
@media (max-width: 767px) {
  #product-sidebar {
    z-index: 110 !important;
  }
  #sidebar-overlay {
    z-index: 105 !important;
  }
}

/* Privacy Modal Transitions */
#uou-privacy-modal.hidden {
  display: none !important;
}

#uou-privacy-modal:not(.hidden) {
  display: flex !important;
}
