/* Suriya Key Centre — storefront visual & responsive enhancements.
   Loaded only on the customer website. Does not alter admin or app logic. */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

:root {
  --sk-navy: #103959;
  --sk-navy-soft: #173f5f;
  --sk-orange: #fb7701;
  --sk-red: #d40000;
  --sk-grad: linear-gradient(90deg, #d40000 0%, #fb7701 100%);
  --sk-bg: #f6f8fb;
  --sk-card: #ffffff;
  --sk-text: #1c2b4a;
  --sk-muted: #5b6b80;
  --sk-line: #e8edf3;
  --sk-radius: 16px;
  --sk-shadow: 0 12px 32px rgba(16, 57, 89, 0.08);
  --sk-shadow-hover: 0 18px 40px rgba(16, 57, 89, 0.14);
}

html {
  scroll-behavior: smooth;
}

body#body {
  background: var(--sk-bg) !important;
  color: var(--sk-text) !important;
  font-family: "Poppins", "Inter", sans-serif !important;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* -------------------------------------------------------------------------
   Layout: remove desktop-only min-widths that break phones/tablets
------------------------------------------------------------------------- */
.main-content,
.home-slider,
.footer-con {
  min-width: 0 !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin-left: auto;
  margin-right: auto;
}

.customContainer {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.customSection {
  padding: 12px 0 28px;
}

/* -------------------------------------------------------------------------
   Header — upgraded navbar
------------------------------------------------------------------------- */
#header.customHeader {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 10px 30px rgba(16, 57, 89, 0.07);
  border-bottom: 1px solid rgba(16, 57, 89, 0.06);
}

#header.customHeader.is-scrolled {
  box-shadow: 0 14px 36px rgba(16, 57, 89, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.mainNavbar.sk-navbar {
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 14px 28px !important;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "brand nav actions";
  position: relative;
}

.mainNavbar .navbar-brand.sk-brand {
  grid-area: brand;
  margin-right: 0;
  padding: 0;
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.brand-logo-link {
  width: 128px !important;
  max-width: 128px !important;
  height: auto !important;
  border-radius: 12px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.sk-brand:hover .brand-logo-link {
  transform: scale(1.04);
}

.mainNavbar .navList a {
  position: relative;
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--sk-navy) !important;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.22s ease;
  white-space: nowrap;
}

.mainNavbar .navList a:hover {
  color: var(--sk-orange) !important;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 14px rgba(16, 57, 89, 0.08);
}

.mainNavbar .navList a.is-active {
  color: #fff !important;
  background: var(--sk-grad) !important;
  box-shadow: 0 8px 20px rgba(212, 0, 0, 0.28);
}

a.themeWhatsup.sk-wa-btn:hover,
button.themeWhatsup.sk-wa-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.4);
}

.sk-wa-label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Floating WhatsApp — always visible */
.sk-wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1060;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff !important;
  font-size: 30px;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: skWaFloat 3s ease-in-out infinite;
}

.sk-wa-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.55);
  color: #fff !important;
}

.sk-wa-float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: #103959;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(16, 57, 89, 0.2);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sk-wa-float:hover .sk-wa-float-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes skWaFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.sk-wa-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: skWaPulse 2.2s ease-out infinite;
  pointer-events: none;
}

.mainNavbar .navList.sk-nav-pill {
  grid-area: nav;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: auto !important;
  max-width: 100%;
  flex: unset;
  justify-self: center;
  padding: 6px;
  background: linear-gradient(180deg, #f4f7fb 0%, #eef3f8 100%);
  border: 1px solid rgba(16, 57, 89, 0.06);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 8px 24px rgba(16, 57, 89, 0.06);
}

.sk-nav-actions {
  grid-area: actions;
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-left: 0;
  justify-self: end;
  flex-shrink: 0;
  z-index: 2;
}

a.themeWhatsup.sk-wa-btn,
button.themeWhatsup.sk-wa-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  padding: 8px 16px 8px 10px;
  line-height: 1;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-width: 44px;
  min-height: 44px;
  visibility: visible !important;
  opacity: 1 !important;
}

.sk-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #25d366;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.sk-wa-icon i {
  line-height: 1;
}

.themeWhatsup.sk-wa-btn img {
  display: none;
}

.navbar-toggler,
.sk-mobile-menu-btn {
  display: none !important;
  border: 0 !important;
  padding: 10px !important;
  border-radius: 12px;
  background: #f3f6fa;
  order: -1;
}

.navbar-toggler:focus,
.sk-mobile-menu-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(251, 119, 1, 0.2);
}

.sk-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.sk-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--sk-navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.sk-mobile-menu-btn.is-open .sk-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sk-mobile-menu-btn.is-open .sk-burger span:nth-child(2) {
  opacity: 0;
}

.sk-mobile-menu-btn.is-open .sk-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sk-mobile-nav {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 4px;
  border-top: 1px solid #eef1f5;
  margin-top: 8px;
  grid-column: 1 / -1;
}

.sk-mobile-nav a {
  display: block;
  padding: 12px 14px;
  color: var(--sk-navy) !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 12px;
}

.sk-mobile-nav a:hover,
.sk-mobile-nav a.is-active {
  background: rgba(251, 119, 1, 0.1);
  color: var(--sk-orange) !important;
}

/* -------------------------------------------------------------------------
   Hero / marquee — upgraded banner
------------------------------------------------------------------------- */
.sk-hero-section.customSection {
  padding-top: 0;
  padding-bottom: 8px;
}

.custom-marquee.sk-announce {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  letter-spacing: 0.3px;
  width: 100%;
  background: var(--sk-grad) !important;
  padding: 12px 0;
  position: relative;
  overflow: hidden;
}

.sk-announce .marquee-content {
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.firstSection .custom-marquee {
  margin: 0;
}

.sk-hero-wrap.customContainer,
.firstSection .customContainer.sk-hero-wrap {
  padding: 18px 20px 8px !important;
  max-width: 1280px;
}

.sk-hero-stage {
  position: relative;
  border-radius: 20px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
  filter: none;
}

@keyframes skHeroBorderGlow {
  from { filter: none; }
  to { filter: none; }
}

.sk-hero-progress {
  display: none;
}

.sk-hero-stage::before {
  display: none;
}

.mianHeroBanner {
  min-height: 220px;
  background: #e8eef4;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 22px 50px rgba(16, 57, 89, 0.16);
}

.mianHeroBanner .swiper-slide a.sk-hero-slide-link {
  display: block;
  line-height: 0;
  position: relative;
}

.mianHeroBanner .swiper-slide a.sk-hero-slide-link::after {
  display: none;
}

.mianHeroBanner .swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.mianHeroBanner .swiper-slide img,
section.firstbanner .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  display: block;
  border-radius: 20px;
  transform: none;
  transition: none;
  animation: none;
}

.mianHeroBanner .swiper-slide-active img {
  transform: none;
}

.sk-hero-fallback {
  min-height: 360px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(251, 119, 1, 0.35), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(212, 0, 0, 0.28), transparent 40%),
    linear-gradient(135deg, #0f2d45, #173f5f 50%, #1c4f74);
  color: #fff;
  text-align: center;
  padding: 40px 24px;
}

.sk-hero-fallback-inner {
  max-width: 560px;
}

.sk-hero-fallback h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0 12px;
  color: #fff;
}

.sk-hero-fallback p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.sk-hero-nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(16, 57, 89, 0.22);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  color: var(--sk-navy);
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sk-hero-nav i {
  line-height: 1;
}

.sk-hero-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 32px rgba(16, 57, 89, 0.28);
  color: var(--sk-orange);
}

.sk-hero-prev {
  left: 18px;
}

.sk-hero-next {
  right: 18px;
}

.sk-hero-prev::before,
.sk-hero-next::before {
  display: none;
}

.hero-pagination {
  position: absolute !important;
  left: 50% !important;
  bottom: 18px !important;
  transform: translateX(-50%);
  z-index: 6;
  display: flex !important;
  justify-content: center;
  gap: 6px;
  width: auto !important;
  margin: 0 !important;
  padding: 8px 12px;
  background: rgba(12, 36, 56, 0.45);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.hero-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  margin: 0 3px !important;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 999px;
  background: var(--sk-grad) !important;
}

a.themeWhatsup,
button.themeWhatsup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  line-height: 0;
  transition: transform 0.2s ease;
}

a.themeWhatsup:hover,
button.themeWhatsup:hover {
  transform: scale(1.08);
}

.themeWhatsup img {
  width: 44px !important;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(37, 211, 102, 0.35));
}

.productCardImg a img,
.product-grid .product-image img,
.productSlider .swiper-slide img {
  height: auto !important;
  max-height: 160px;
  object-fit: contain !important;
}

.swiper-slide img {
  height: auto;
}

.mianHeroBanner .swiper-slide img {
  height: 420px;
}

.productContainer {
  gap: 0;
}

.productContainer .productCard {
  padding: 14px 12px 18px;
  height: 100%;
}

.productCardImg {
  min-height: 140px;
}

.my-account-section .card {
  border-radius: 16px !important;
  box-shadow: var(--sk-shadow);
  border: 1px solid var(--sk-line) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.my-account-section .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sk-shadow-hover);
}

.contact-page-wrap .row.col-mb-50 {
  margin-top: 28px !important;
}

.sectionTitle {
  align-items: center;
}

.product-preview-image-section-md .product-view-grid,
.product-preview-image-section-md .product-view-image {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--sk-line);
}

.product-page-details .btn-group > .active,
.product-page-details .btn.focus,
.product-page-details .btn:focus {
  background: var(--sk-grad) !important;
  border-color: transparent !important;
}

@media (min-width: 993px) {
  button.navbar-toggler.border-0,
  .sk-mobile-menu-btn {
    display: none !important;
  }

  .sk-mobile-nav {
    display: none !important;
  }

  .mainNavbar .navList {
    display: flex !important;
  }
}

/* -------------------------------------------------------------------------
   Section titles / brands
------------------------------------------------------------------------- */
.section-heading,
.customTitle.brand-section-title {
  background-image: none !important;
  height: auto !important;
  padding: 8px 0 18px !important;
  margin-bottom: 8px !important;
  text-align: center;
}

.themeTitle,
.section-heading .themeTitle {
  display: inline-block;
  font-size: 28px !important;
  font-weight: 750 !important;
  color: var(--sk-navy) !important;
  letter-spacing: 0.4px;
  margin-bottom: 6px !important;
  position: relative;
}

.themeTitle::after,
.section-heading .themeTitle::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--sk-grad);
}

.section-sub {
  color: var(--sk-muted);
  font-size: 15px;
  margin: 0;
}

.categoryCntainer {
  gap: 16px;
  justify-content: center;
}

.categoryItem {
  margin-bottom: 0;
}

.categoryItem .categoryItemContent {
  background: var(--sk-card);
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  padding: 16px 12px 18px;
  box-shadow: var(--sk-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  height: 100%;
}

.categoryItem .categoryItemContent:hover {
  transform: translateY(-6px);
  box-shadow: var(--sk-shadow-hover);
  border-color: rgba(251, 119, 1, 0.35);
}

.categoryItem .categoryItemContent img,
.categoryItem.brandItems .categoryItemContent img {
  height: 120px !important;
  object-fit: contain !important;
  background: #fff;
  border: 0 !important;
  border-radius: 12px;
  padding: 8px;
}

.categoryItem .categoryItemContent span {
  font-size: 14px !important;
  font-weight: 600;
  color: var(--sk-navy);
  margin-top: 10px !important;
  text-align: center;
  line-height: 1.3;
}

/* -------------------------------------------------------------------------
   Counters
------------------------------------------------------------------------- */
.our-counter {
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%) !important;
  padding: 48px 0 24px !important;
  margin-top: 8px;
}

.counter-item {
  background: #fff;
  border-radius: var(--sk-radius);
  padding: 22px 16px;
  box-shadow: var(--sk-shadow);
  height: calc(100% - 24px);
  border: 1px solid var(--sk-line);
}

.counter-title {
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.counter-title h2 {
  background: var(--sk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-size: 28px !important;
}

.counter-title h3 {
  color: var(--sk-navy);
  font-size: 16px !important;
  margin-top: 4px;
}

/* -------------------------------------------------------------------------
   Reviews — Google-style testimonial cards
------------------------------------------------------------------------- */
.review-section {
  background: #ffffff !important;
  padding: 72px 0 !important;
}

.review-heading {
  text-align: center;
  margin-bottom: 8px;
}

.review-title {
  font-size: 34px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  display: inline-block;
  position: relative;
  margin: 0 auto;
}

.review-title::after {
  display: none !important;
}

.review-title span {
  position: relative;
  display: inline-block;
}

.review-title span::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 4px;
  border-radius: 999px;
  background: #fb7701;
}

.review-subtitle {
  color: #8a94a6 !important;
  font-size: 15px;
  font-weight: 400 !important;
  margin-top: 10px !important;
  margin-bottom: 40px !important;
}

.review-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px !important;
  text-align: left;
}

.review-card {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  align-self: stretch !important;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: none !important;
  border-radius: 20px !important;
  padding: 28px 24px 22px !important;
  box-shadow: 0 10px 28px rgba(28, 43, 74, 0.08) !important;
  transform: none !important;
  transition: box-shadow 0.22s ease;
}

.review-card:hover {
  transform: none !important;
  box-shadow: 0 16px 36px rgba(28, 43, 74, 0.12) !important;
}

.review-header {
  align-items: flex-start;
  margin-bottom: 16px !important;
}

.review-avatar {
  width: 52px !important;
  height: 52px !important;
  object-fit: cover;
  flex-shrink: 0;
  background: #d7ccc8;
}

.review-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #2c3a4f;
  line-height: 1.25;
}

.review-date {
  display: block;
  font-size: 13px;
  color: #9aa3b2;
  margin-top: 2px;
}

.review-card .stars {
  margin-top: 8px;
  line-height: 1;
}

.review-card .stars i {
  color: #f4c430;
  font-size: 14px;
  margin-right: 2px;
}

.review-text {
  font-size: 15px !important;
  line-height: 1.55;
  color: #6b7280 !important;
  margin-bottom: 18px !important;
  flex: 1;
}

.posted-on {
  margin-top: auto;
  font-size: 13px !important;
  color: #9aa3b2 !important;
}

.posted-on svg {
  width: 18px !important;
  height: 18px !important;
}

/* -------------------------------------------------------------------------
   Product cards / listing
------------------------------------------------------------------------- */
.product-grid,
.productCard {
  background: #fff;
  border: 1px solid var(--sk-line) !important;
  border-radius: var(--sk-radius) !important;
  overflow: hidden;
  box-shadow: var(--sk-shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-grid:hover,
.productCard:hover {
  transform: translateY(-6px);
  box-shadow: var(--sk-shadow-hover);
  z-index: 2;
}

.product-grid .title a,
.productCardHead h3 a {
  color: var(--sk-navy) !important;
}

.product-grid .price,
.productCardPrice {
  color: var(--sk-orange);
  font-weight: 700;
}

.add-to-cart,
a.notify-btn,
.productCardHead a.add-to-cart.add_to_cart,
.button-primary,
.themeBtn,
button#contact-us-submit-btn,
.pageBtnTheme,
.primaryBtnTheme,
.block.btn-5 {
  background: var(--sk-grad) !important;
  border: 0 !important;
  color: #fff !important;
  border-radius: 999px !important;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 18px rgba(251, 119, 1, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.add-to-cart:hover,
a.notify-btn:hover,
.themeBtn:hover,
button#contact-us-submit-btn:hover,
.pageBtnTheme:hover,
.primaryBtnTheme:hover,
.block.btn-5:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: #fff !important;
}

.customCategoryItem {
  width: 16.66%;
  padding: 8px;
}

.customCategoryItem a img {
  width: 100% !important;
  height: 140px !important;
  object-fit: contain !important;
  background: #fff;
  border-radius: 14px !important;
  border: 1px solid var(--sk-line) !important;
  padding: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.customCategoryItem a:hover img {
  transform: translateY(-4px);
  box-shadow: var(--sk-shadow);
}

.customCategoryItem a span {
  color: var(--sk-navy);
  text-align: center;
}

/* -------------------------------------------------------------------------
   Product detail / forms / account
------------------------------------------------------------------------- */
.product-page-content .card,
.settings-tab-content .card,
.orders-section .card,
.filter-section,
.login-form,
.policyCard,
.cart-table-wrapper,
.ship-details-wrapper {
  background: #fff;
  border-radius: var(--sk-radius) !important;
  box-shadow: var(--sk-shadow);
  border: 1px solid var(--sk-line);
}

.login-form {
  padding: 24px !important;
}

.form-control,
.form-input,
.select2-container .select2-selection--single {
  border-radius: 10px !important;
  border: 1px solid #dce3ec !important;
  min-height: 44px;
}

.form-control:focus,
.form-input:focus {
  border-color: var(--sk-orange) !important;
  box-shadow: 0 0 0 3px rgba(251, 119, 1, 0.12) !important;
}

.form-text-style,
.product-page-details .price,
.productDetail .productTitle {
  color: var(--sk-navy);
}

.info-wrapper {
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-radius);
  padding: 22px 18px;
  box-shadow: var(--sk-shadow);
  height: 100%;
  text-align: center;
}

.info-icon a,
.info-icon i {
  color: var(--sk-orange);
  font-size: 22px;
}

.info-content h3 {
  font-size: 18px;
  margin-top: 10px;
  color: var(--sk-navy);
}

.sign-up-image iframe,
.map-container iframe {
  width: 100% !important;
  min-height: 360px;
  border: 0;
  border-radius: 16px;
}

/* -------------------------------------------------------------------------
   About / services
------------------------------------------------------------------------- */
.about-page-wrap > .text-center h1,
.services-page-wrap .display-4,
section.firstSection > .text-center h1 {
  font-weight: 750;
  color: var(--sk-navy);
  margin-bottom: 28px;
}

.aboutSection {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  gap: 32px;
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: var(--sk-shadow);
  border: 1px solid var(--sk-line);
}

.aboutSection-text {
  flex: 1 1 0;
  min-width: 0;
  width: auto !important;
  max-width: none !important;
}

.aboutSection-image {
  flex: 0 1 42%;
  min-width: 0;
  width: auto !important;
  max-width: 42% !important;
}

.aboutSection img {
  border-radius: 16px;
  width: 100%;
  height: auto !important;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.hrDiv,
.hrDiv p,
.hrDiv li {
  color: #3d4d61;
  line-height: 1.7;
}

.services-page-wrap .col-md-4 > div {
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: 20px;
  box-shadow: var(--sk-shadow);
  height: 100%;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.services-page-wrap .col-md-4 > div:hover {
  transform: translateY(-6px);
  box-shadow: var(--sk-shadow-hover);
}

/* -------------------------------------------------------------------------
   Breadcrumbs / FAQ / inner pages
------------------------------------------------------------------------- */
section.breadcrumb-title-bar.colored-breadcrumb {
  display: block !important;
  background: var(--sk-grad) !important;
  padding: 28px 16px !important;
  margin-bottom: 8px;
}

section.breadcrumb-title-bar.colored-breadcrumb .main-content {
  position: relative;
  padding: 0 16px !important;
}

section.breadcrumb-title-bar.colored-breadcrumb h1 {
  color: #fff !important;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
}

section.breadcrumb-title-bar.colored-breadcrumb .breadcrumb {
  position: static !important;
  transform: none !important;
  justify-content: flex-start;
}

section.breadcrumb-title-bar.colored-breadcrumb li,
section.breadcrumb-title-bar.colored-breadcrumb li a {
  color: #fff !important;
}

.home_faq .card {
  border: 1px solid var(--sk-line);
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--sk-shadow);
}

.home_faq .card-header {
  background: #fff;
}

.faq_image {
  width: 100%;
  border-radius: 16px;
}

/* -------------------------------------------------------------------------
   Cart / checkout tables
------------------------------------------------------------------------- */
.table-cart-product {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

table.table.table-responsive.table-cart-product tbody td,
table.table.table-responsive-sm.table-cart-product tbody td {
  text-wrap: wrap;
  white-space: normal;
  vertical-align: middle;
}

/* -------------------------------------------------------------------------
   Footer
------------------------------------------------------------------------- */
.footer-section-footer {
  margin-top: 0;
  color: #d7e2ec;
  overflow: hidden;
}

.footer-section-footer .footer-content-footer {
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 36px 24px 28px !important;
  min-width: 0 !important;
  width: 100% !important;
}

.footer-section-footer .main-content.footer-con {
  max-width: 1280px !important;
  min-width: 0 !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.footer-logo-top {
  margin-bottom: 28px;
}

.footer-logo-top img {
  width: 170px !important;
  max-width: 100%;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
}

.footer-columns {
  display: grid !important;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px 32px;
  align-items: start;
  width: 100%;
}

.footer-col {
  min-width: 0;
}

.footer-widget-heading h3,
.footer-widget-heading2 h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin: 0 0 14px !important;
  letter-spacing: 0.3px;
  color: #fff !important;
}

.footer-widget-heading h3:before,
.footer-widget-heading2 h3:before {
  background: var(--sk-orange) !important;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  bottom: -8px !important;
}

.footer-links-list {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  overflow: hidden;
}

.footer-links-list li,
.footer-widget ul li {
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  display: block !important;
}

.footer-links-list li a,
.footer-widget ul li a {
  color: #c9d7e4 !important;
  display: inline-block;
  padding: 4px 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links-list li a:hover,
.footer-widget ul li a:hover {
  color: var(--sk-orange) !important;
  transform: translateX(3px);
}

.footAddress {
  color: #c9d7e4 !important;
  line-height: 1.7;
  font-size: 14px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 14px !important;
}

.footer-contact-meta p {
  margin: 0 0 8px !important;
  font-size: 14px !important;
  color: #e4ebf2 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social-icon {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  height: auto;
}

.footer-social-icon span {
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
  font-size: 18px;
}

.footer-social-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social-icon a {
  display: inline-flex;
  margin: 0 !important;
  transition: transform 0.2s ease;
}

.footer-social-icon a:hover {
  transform: translateY(-3px);
}

.rounded-icon {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50% !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 16px 0 !important;
  background: rgba(0, 0, 0, 0.18) !important;
  margin-top: 0 !important;
}

.copyright-text p,
.footer-menu li a {
  color: #b7c5d3 !important;
  font-size: 13px;
  margin: 0;
}

.footer-menu ul {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li a:hover {
  color: var(--sk-orange) !important;
}

@media (max-width: 991px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }

  .footer-col-address {
    grid-column: 1 / -1;
  }

  .footer-menu ul {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer-section-footer .footer-content-footer {
    padding: 28px 16px 20px !important;
  }

  .footer-logo-top {
    margin-bottom: 20px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-col-address {
    grid-column: auto;
  }

  .footer-social-icon {
    padding: 16px;
  }
}

/* -------------------------------------------------------------------------
   Side nav / cart drawer / auth modal
------------------------------------------------------------------------- */
.sidenav,
.shopping-cart-sidebar {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.18);
}

.sidenav .nav-link.active {
  box-shadow: 0 2px 0 var(--sk-orange) !important;
  color: var(--sk-navy) !important;
}

.auth-modal {
  border-radius: 16px !important;
  overflow: hidden;
}

.login-method-toggle {
  border-radius: 10px !important;
  overflow: hidden;
}

.login-toggle-btn.active {
  background: var(--sk-grad) !important;
}

/* -------------------------------------------------------------------------
   Loader / misc
------------------------------------------------------------------------- */
.page-loader .spinner {
  border-top-color: var(--sk-orange);
}

.popup-content {
  border-radius: 16px !important;
}

/* -------------------------------------------------------------------------
   Responsive
------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .customCategoryItem {
    width: 20%;
  }

  .mianHeroBanner .swiper-slide img {
    height: auto !important;
    max-height: none;
    object-fit: contain !important;
  }

  .sk-hero-fallback {
    height: auto !important;
    min-height: 280px;
    max-height: none;
  }
}

@media (max-width: 992px) {
  .mainNavbar.sk-navbar {
    padding: 10px 14px !important;
    max-width: 100% !important;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "menu brand actions"
      "mobile mobile mobile";
    gap: 10px 12px;
  }

  .sk-mobile-menu-btn {
    grid-area: menu;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .mainNavbar .navbar-brand.sk-brand {
    grid-area: brand;
    justify-self: start;
  }

  .sk-nav-actions {
    grid-area: actions;
  }

  button.navbar-toggler.border-0,
  .sk-mobile-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .mainNavbar .navList,
  .mainNavbar .navList.sk-nav-pill {
    display: none !important;
  }

  .sk-mobile-nav.is-open {
    display: flex !important;
  }

  .sk-wa-label {
    display: none;
  }

  a.themeWhatsup.sk-wa-btn {
    padding: 6px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
  }

  .sk-wa-icon {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }

  .sk-hero-nav {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .sk-hero-prev {
    left: 10px;
  }

  .sk-hero-next {
    right: 10px;
  }

  .sk-wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .sk-wa-float-tip {
    display: none;
  }

  .brand-logo-link {
    width: 96px !important;
    max-width: 96px !important;
  }

  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .review-card {
    width: 100% !important;
  }

  .customCategoryItem {
    width: 25%;
  }

  .counter-title {
    border-right: 0 !important;
  }

  .aboutSection {
    flex-direction: column !important;
    gap: 20px;
    padding: 22px 16px;
  }

  .aboutSection-text,
  .aboutSection-image {
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto;
  }

  section.breadcrumb-title-bar.colored-breadcrumb .breadcrumb {
    right: auto !important;
  }
}

@media (max-width: 767px) {
  .customSection {
    padding: 8px 0 18px;
  }

  .customContainer {
    max-width: 100% !important;
    padding: 12px 12px !important;
    margin: 8px auto !important;
  }

  .themeTitle,
  .section-heading .themeTitle,
  .review-title {
    font-size: 22px !important;
  }

  .mianHeroBanner {
    border-radius: 14px;
    min-height: 200px;
  }

  .sk-hero-stage {
    border-radius: 16px;
    padding: 2px;
  }

  .sk-hero-stage::before {
    inset: 6px;
    border-radius: 12px;
  }

  .mianHeroBanner .swiper-slide,
  .mianHeroBanner .swiper-slide img {
    border-radius: 14px;
  }

  .mianHeroBanner .swiper-slide img,
  section.firstbanner .swiper-slide img {
    max-height: none !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .sk-hero-fallback {
    max-height: none !important;
    height: auto !important;
    min-height: 180px !important;
  }

  .sk-hero-fallback h2 {
    font-size: 26px;
  }

  .sk-hero-wrap.customContainer,
  .firstSection .customContainer.sk-hero-wrap {
    padding: 12px 12px 4px !important;
  }

  .hero-pagination {
    bottom: 12px !important;
    padding: 6px 10px;
  }

  .sk-hero-nav {
    display: none;
  }

  .categoryItem .categoryItemContent img,
  .categoryItem.brandItems .categoryItemContent img {
    height: 86px !important;
  }

  .categoryItem .categoryItemContent span {
    font-size: 12px !important;
  }

  .review-cards {
    grid-template-columns: 1fr !important;
  }

  .review-card {
    width: 100% !important;
  }

  .our-counter,
  .review-section {
    padding: 32px 0 !important;
  }

  .counter-title h2 {
    font-size: 28px !important;
  }

  .footer-content-footer {
    padding-top: 28px !important;
  }

  .footAddress {
    width: 100% !important;
  }

  .sidenav,
  .shopping-cart-sidebar {
    width: 86% !important;
    max-width: 360px;
  }

  table.table.table-responsive.table-cart-product,
  .table-cart-product {
    display: block;
    width: 100%;
    overflow-x: auto;
  }

  .product-preview-image-section-md .product-view-image,
  .product-preview-image-section-md .product-view-image-container {
    height: auto;
    line-height: normal;
  }

  .login-form {
    margin-top: 18px;
  }

  .services-page-wrap .display-4 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .mainNavbar {
    padding: 6px 10px !important;
  }

  .brand-logo-link {
    width: 84px !important;
    max-width: 84px !important;
  }

  .themeWhatsup img {
    width: 38px !important;
    height: 38px;
  }

  .col-6 .counter-item {
    padding: 14px 8px;
  }

  .counter-title h3 {
    font-size: 13px !important;
  }
}

@media (min-width: 1500px) {
  .customContainer {
    max-width: 1320px !important;
  }

  .main-content,
  .home-slider {
    max-width: 1320px !important;
  }
}

/* -------------------------------------------------------------------------
   Premium look & feel overlay
------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

body#body {
  font-family: "Poppins", sans-serif !important;
  background:
    radial-gradient(1200px 420px at 100% -10%, rgba(251, 119, 1, 0.08), transparent 55%),
    radial-gradient(900px 380px at -10% 20%, rgba(16, 57, 89, 0.06), transparent 50%),
    #f4f6fa !important;
}

.sk-utility-bar {
  width: 100% !important;
  max-width: 100% !important;
  background: #0c2438 !important;
  color: #d7e2ec;
  font-size: 13px;
  letter-spacing: 0.2px;
  flex: 0 0 auto;
}

.sk-utility-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.sk-utility-inner span {
  color: #f3d2b0;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
}

.sk-utility-contacts {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-left: auto;
}

.sk-utility-inner a {
  color: #e8eef4 !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.sk-utility-inner a:hover {
  color: var(--sk-orange) !important;
}

#header.customHeader::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  background: var(--sk-grad);
  opacity: 0.85;
}

.mainNavbar .navList.sk-nav-pill {
  backdrop-filter: blur(8px);
}

.mainNavbar .navList a.is-active {
  color: #fff !important;
  background: var(--sk-grad) !important;
  box-shadow: 0 8px 20px rgba(212, 0, 0, 0.28);
}

.sk-page-hero {
  background:
    linear-gradient(120deg, rgba(12, 36, 56, 0.92) 0%, rgba(16, 57, 89, 0.78) 55%, rgba(212, 0, 0, 0.55) 100%),
    url("../../assets/images/aboutImg.png") center/cover no-repeat;
  color: #fff;
  padding: 56px 20px 52px;
  text-align: center;
  margin-bottom: 8px;
}

.sk-page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.sk-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ffd7b0;
}

.sk-page-hero h1 {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.sk-page-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.themeTitle {
  font-family: "Poppins", sans-serif !important;
}

.firstSection .customContainer.sk-hero-wrap {
  padding: 18px 20px 8px !important;
}

.mianHeroBanner {
  box-shadow: none;
}

.categoryItem .categoryItemContent {
  background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
}

.our-counter {
  background:
    linear-gradient(180deg, rgba(16, 57, 89, 0.04) 0%, rgba(255, 255, 255, 0.9) 100%) !important;
}

.counter-item {
  border-top: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff), var(--sk-grad);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.review-section {
  background: #ffffff !important;
}

.services-page-wrap .container > section > .text-center.mb-5 {
  display: none;
}

.services-page-wrap .col-md-4 > div {
  padding: 28px 18px 24px !important;
  margin: 12px 0 !important;
}

.services-page-wrap .circle {
  box-shadow: 0 12px 24px rgba(251, 119, 1, 0.28);
}

.contact-page-wrap .login-form {
  border-radius: 20px;
}

.contact-page-wrap .form-text-style {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}

.main-content.py-5.my-4.bg-white {
  border-radius: 20px;
  padding: 36px 28px !important;
  box-shadow: var(--sk-shadow);
  border: 1px solid var(--sk-line);
}

.footer-section-footer {
  background:
    radial-gradient(800px 280px at 100% 0%, rgba(251, 119, 1, 0.18), transparent 60%),
    linear-gradient(180deg, #0c2438 0%, #081826 100%) !important;
}

/* Download app section alignment */
.downloadSection {
  background: #fff;
  padding: 48px 0 !important;
}

.downloadContainer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.download-row {
  align-items: center !important;
}

.downloadHead {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  width: 100%;
  max-width: 480px;
}

.downloadHead > img {
  width: 160px !important;
  height: auto !important;
  margin-bottom: 8px;
}

.downloadHead h2 {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: var(--sk-navy) !important;
  margin: 8px 0 10px !important;
  text-align: left !important;
}

.downloadHead p {
  text-align: left !important;
  color: var(--sk-muted) !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  margin-bottom: 18px !important;
}

.download-store-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.download-store-badges a {
  display: inline-flex;
  line-height: 0;
}

.download-store-badges img,
.downloadHead a img {
  width: 148px !important;
  height: 44px !important;
  object-fit: contain !important;
  margin-top: 0 !important;
}

.download-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.downloadMobile {
  width: auto !important;
  max-width: 46% !important;
  height: auto !important;
  max-height: 420px;
  object-fit: contain;
  margin: 0 !important;
}

.sidenav {
  background: #fffaf6;
}

.sk-utility-bar {
  display: none !important;
}

@media (max-width: 991px) {
  .sk-page-hero {
    padding: 36px 16px 32px;
  }

  .sk-page-hero h1 {
    font-size: 28px;
  }

  .footer-menu ul {
    justify-content: center;
  }

  .downloadHead {
    max-width: 100%;
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .footer-links-list {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social-icon {
    margin-top: 4px;
  }

  .downloadHead {
    align-items: center !important;
    text-align: center !important;
  }

  .downloadHead h2,
  .downloadHead p {
    text-align: center !important;
  }

  .download-store-badges {
    justify-content: center;
  }

  .download-phones {
    gap: 10px;
  }

  .downloadMobile {
    max-width: 48% !important;
    max-height: 300px;
  }

  .downloadSection {
    padding: 32px 0 !important;
  }
}

/* -------------------------------------------------------------------------
   GSAP / CSS3 motion & 3D polish
------------------------------------------------------------------------- */
.customSection,
.our-counter,
.aboutSection,
.footer-columns {
  perspective: 1200px;
}

.categoryItem.brandItems {
  transform-style: preserve-3d;
}

.categoryItem.brandItems .categoryItemContent {
  transform-style: preserve-3d;
  backface-visibility: hidden;
  will-change: transform;
}

.categoryItem.brandItems .categoryItemContent:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg) scale(1.02);
  box-shadow: 0 22px 44px rgba(16, 57, 89, 0.16);
}

.counter-item {
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.counter-item:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: var(--sk-shadow-hover);
}

.review-card {
  transform-style: flat;
  transition: box-shadow 0.35s ease;
}

.review-card:hover {
  transform: none;
}

.themeTitle {
  position: relative;
  display: inline-block;
}

.brand-section-title .themeTitle::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin: 10px auto 0;
  border-radius: 999px;
  background: var(--sk-grad);
  animation: skTitleLine 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

@keyframes skTitleLine {
  to {
    width: 56px;
  }
}

.custom-marquee {
  position: relative;
  overflow: hidden;
}

.custom-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  animation: skMarqueeShine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes skMarqueeShine {
  0%,
  70%,
  100% {
    transform: translateX(-120%);
  }
  85% {
    transform: translateX(120%);
  }
}

a.themeWhatsup.sk-wa-btn::after,
button.themeWhatsup.sk-wa-btn::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: skWaPulse 2.2s ease-out infinite;
  pointer-events: none;
}

a.themeWhatsup.sk-wa-btn,
button.themeWhatsup.sk-wa-btn {
  position: relative;
  z-index: 1;
}

@keyframes skWaPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.mianHeroBanner {
  transform-origin: center center;
}

.mianHeroBanner .swiper-slide {
  transition: transform 0.6s ease;
}

.sk-page-hero {
  overflow: hidden;
  position: relative;
}

.sk-page-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 40%, rgba(251, 119, 1, 0.25), transparent 55%);
  animation: skHeroGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes skHeroGlow {
  from {
    transform: translate(-4%, -2%) scale(1);
    opacity: 0.6;
  }
  to {
    transform: translate(4%, 2%) scale(1.08);
    opacity: 1;
  }
}

.sk-page-hero-inner {
  position: relative;
  z-index: 1;
}

.productCard {
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease;
}

.productCard:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--sk-shadow-hover);
}

.mainNavbar .navList a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.22s ease;
}

#header.customHeader {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

#header.customHeader.is-scrolled {
  box-shadow: 0 12px 32px rgba(16, 57, 89, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

@media (prefers-reduced-motion: reduce) {
  .sk-wa-float {
    animation: none;
  }
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* -------------------------------------------------------------------------
   WOW polish layer — premium catchy storefront (CSS only overlay)
------------------------------------------------------------------------- */
body#body {
  background:
    radial-gradient(900px 420px at 8% -5%, rgba(251, 119, 1, 0.12), transparent 55%),
    radial-gradient(800px 380px at 95% 12%, rgba(212, 0, 0, 0.08), transparent 50%),
    radial-gradient(700px 500px at 50% 100%, rgba(16, 57, 89, 0.06), transparent 55%),
    #f4f7fb !important;
}

.sk-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.sk-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--sk-orange);
  background: rgba(251, 119, 1, 0.1);
  border: 1px solid rgba(251, 119, 1, 0.22);
}

.sk-section-head .themeTitle,
.sk-section-head .review-title {
  font-size: 26px !important;
  font-weight: 700 !important;
  letter-spacing: 0;
  color: var(--sk-navy) !important;
  margin-bottom: 8px !important;
}

.sk-section-head .review-title span {
  background: var(--sk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sk-section-head .section-sub,
.sk-section-head .review-subtitle {
  max-width: 520px;
  margin: 0 auto;
  color: var(--sk-muted);
  font-size: 15px;
  line-height: 1.55;
}

.brand-section-title .themeTitle::after,
.review-title::after {
  margin-top: 14px !important;
  height: 4px !important;
  width: 0;
  background: var(--sk-grad);
  box-shadow: 0 4px 12px rgba(251, 119, 1, 0.35);
}

/* Highlight strip under hero */
.sk-highlights {
  padding: 4px 0 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.sk-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sk-highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 57, 89, 0.07);
  box-shadow: 0 14px 34px rgba(16, 57, 89, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.sk-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 44px rgba(16, 57, 89, 0.14);
  border-color: rgba(251, 119, 1, 0.35);
}

.sk-highlight-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  background: var(--sk-grad);
  box-shadow: 0 10px 22px rgba(212, 0, 0, 0.28);
}

.sk-highlight-card h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sk-navy);
}

.sk-highlight-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--sk-muted);
}

/* Brands — glass cards + shine */
.sk-brands-section {
  position: relative;
  padding: 8px 0 28px;
  margin-top: 0;
}

.sk-brands-section::before {
  content: "";
  position: absolute;
  inset: 10% 8% auto;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(251, 119, 1, 0.08), transparent 70%);
  pointer-events: none;
}

.categoryItem.brandItems .categoryItemContent {
  position: relative;
  overflow: hidden;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%) !important;
}

.categoryItem.brandItems .categoryItemContent::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: rotate(20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.categoryItem.brandItems .categoryItemContent:hover::after {
  left: 120%;
}

.categoryItem.brandItems .categoryItemContent span {
  background: var(--sk-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-weight: 700 !important;
}

/* Counters — dark premium band */
.sk-counter-band.our-counter {
  position: relative;
  margin: 24px 0 8px !important;
  padding: 56px 0 40px !important;
  overflow: hidden;
  background:
    radial-gradient(600px 280px at 15% 20%, rgba(251, 119, 1, 0.22), transparent 60%),
    radial-gradient(500px 260px at 90% 80%, rgba(212, 0, 0, 0.18), transparent 55%),
    linear-gradient(135deg, #0c2438 0%, #103959 48%, #152f4a 100%) !important;
  border-radius: 0;
}

.sk-counter-band .sk-section-badge {
  color: #ffd7b0;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.sk-counter-band .themeTitle,
.sk-counter-band .section-sub {
  color: #fff !important;
}

.sk-counter-band .section-sub {
  color: rgba(255, 255, 255, 0.72) !important;
}

.sk-counter-band .brand-section-title .themeTitle::after {
  background: linear-gradient(90deg, #fb7701, #ffd7b0);
}

.sk-counter-band .counter-item {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18) !important;
  text-align: center;
  padding: 28px 16px !important;
  border-radius: 20px !important;
  background-image: none !important;
}

.sk-counter-band .counter-item:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(251, 119, 1, 0.45) !important;
}

.sk-counter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: var(--sk-grad);
  color: #fff;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(251, 119, 1, 0.35);
}

.sk-counter-band .counter-title h2 {
  background: linear-gradient(90deg, #fff 0%, #ffd7b0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  font-size: 32px !important;
  font-weight: 700 !important;
}

.sk-counter-band .counter-title h3 {
  color: rgba(255, 255, 255, 0.88) !important;
}

/* Reviews */
.sk-reviews-band.review-section {
  position: relative;
  padding: 48px 0 56px !important;
  background:
    linear-gradient(180deg, #fff 0%, #f7f9fc 100%) !important;
}

.sk-reviews-band .review-card {
  border: 1px solid rgba(16, 57, 89, 0.08) !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 40px rgba(16, 57, 89, 0.08) !important;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(212, 0, 0, 0.35), rgba(251, 119, 1, 0.55), rgba(16, 57, 89, 0.15)) border-box !important;
  border: 1.5px solid transparent !important;
  position: relative;
  overflow: hidden;
}

.sk-reviews-band .review-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 72px;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(251, 119, 1, 0.12);
  pointer-events: none;
}

.sk-reviews-band .stars.small i {
  color: #f5a623 !important;
  filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.35));
}

/* Hero stage stronger presence */
.sk-hero-stage {
  box-shadow:
    0 30px 70px rgba(16, 57, 89, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.35) inset !important;
}

.sk-announce {
  font-weight: 600 !important;
  letter-spacing: 0.4px;
}

/* Map polish */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  margin: 24px auto 40px;
  max-width: 1280px;
  box-shadow: 0 22px 50px rgba(16, 57, 89, 0.14);
  border: 3px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--sk-grad) border-box;
}

.map-container iframe {
  display: block;
  border: 0 !important;
}

/* Download section lift */
.downloadSection {
  position: relative;
  overflow: hidden;
}

.downloadSection::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 119, 1, 0.18), transparent 70%);
  pointer-events: none;
}

@media (max-width: 992px) {
  .sk-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .sk-highlights-grid {
    grid-template-columns: 1fr;
  }

  .sk-counter-band.our-counter {
    padding: 40px 0 28px !important;
  }

  .sk-counter-band .counter-title h2 {
    font-size: 30px !important;
  }
}
